:root {
  --green: #003f2d;
  --dark-green: #002f22;
  --yellow: #ffc928;
  --cream: #fff6e8;
  --text-dark: #12372a;
  --white: #fffdf7;
  --shadow: 0 10px 24px rgba(18, 55, 42, 0.14);
  --radius: 16px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text-dark);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
}

body.modal-open {
  overflow: hidden;
}

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

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

.container {
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: linear-gradient(90deg, rgba(0, 47, 34, 0.96), rgba(0, 57, 36, 0.9));
  transition: box-shadow 0.2s ease, backdrop-filter 0.2s ease;
}

.site-header.scrolled {
  background: linear-gradient(90deg, var(--dark-green), #003924);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 88px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  flex: 0 0 236px;
  height: 86px;
}

.logo img {
  object-fit: contain;
}

.nav-menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 38px;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 900;
}

.nav-menu a:not(.order-btn) {
  position: relative;
  padding: 34px 0 28px;
}

.nav-menu a:not(.order-btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 17px;
  width: 0;
  height: 2px;
  background: var(--yellow);
}

.nav-menu a.active {
  color: var(--yellow);
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  width: 100%;
}

.order-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 43px;
  padding: 0 23px;
  border-radius: 999px;
  color: var(--dark-green);
  background: var(--yellow);
  box-shadow: 0 8px 16px rgba(255, 201, 40, 0.2);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--yellow);
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  background: var(--dark-green);
  transition: 0.2s ease;
}

.hero {
  position: relative;
  height: 570px;
  overflow: hidden;
  padding-top: 86px;
  background-image: url("images/hero/homebanner.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 88px));
  height: 100%;
  margin: 0 auto;
  display: block;
}

.hero-copy {
  padding-top: 39px;
  color: var(--white);
}

.hero-kicker {
  margin: 0 0 4px;
  font-size: 25px;
  line-height: 1;
  font-weight: 950;
}

.hero h1 {
  margin: 0;
  line-height: 0.82;
}

.hero h1 span {
  position: relative;
  display: block;
  color: var(--yellow);
  font-size: 112px;
  font-weight: 950;
  letter-spacing: -4px;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.08), 0 12px 26px rgba(0, 0, 0, 0.18);
}

.hero h1 span::after {
  content: "NEW";
  position: absolute;
  inset: 0;
  color: transparent;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(0, 63, 45, 0.58) 1px, transparent 1.6px),
    radial-gradient(circle, rgba(0, 47, 34, 0.32) 1px, transparent 1.4px),
    linear-gradient(115deg, transparent 0 34%, rgba(0, 47, 34, 0.22) 35% 36%, transparent 37% 100%);
  background-size: 9px 9px, 13px 13px, 26px 26px;
  background-position: 0 1px, 4px 5px, 0 0;
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.42;
  mix-blend-mode: multiply;
}

.hero h1 em {
  display: block;
  margin: -7px 0 0 -8px;
  color: var(--white);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 108px;
  font-weight: 500;
  line-height: 0.78;
}

.hero-sub {
  margin: 33px 0 20px;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: flex-start;
  gap: 26px;
}

.hero .hero-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  color: var(--white);
}

.hero .hero-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 164px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 12.5px;
  line-height: 1;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.hero .hero-cta-primary .hero-cta-main {
  color: var(--dark-green);
  background: var(--yellow);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.hero .hero-cta-primary:hover .hero-cta-main {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25), 0 0 18px rgba(255, 201, 40, 0.32);
}

.hero .hero-cta-primary:active .hero-cta-main {
  transform: translateY(1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero .hero-cta-secondary .hero-cta-main {
  color: var(--white);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
}

.hero .hero-cta-secondary:hover .hero-cta-main {
  color: var(--dark-green);
  background: var(--white);
  transform: translateY(-3px);
}

.hero .hero-cta-secondary:active .hero-cta-main {
  transform: translateY(1px);
}

.hero .hero-cta-icon {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  object-fit: contain;
}

.hero .hero-cta-icon.location::before,
.hero .hero-cta-icon.location::after {
  content: "";
  position: absolute;
  display: block;
}

.hero .hero-cta-icon.fork {
  color: var(--dark-green);
}

.hero .hero-cta-icon.location::before {
  left: 3px;
  top: 1px;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.hero .hero-cta-icon.location::after {
  left: 8px;
  top: 6px;
  width: 3px;
  height: 3px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.hero .hero-cta-arrow {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.hero .hero-cta small {
  display: block;
  padding-left: 17px;
  color: rgba(255, 246, 232, 0.92);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.24);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  min-width: 174px;
  min-height: 52px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mini-btn:hover,
.order-btn:hover,
.directions:hover {
  transform: translateY(-1px) scale(1.03);
}

.btn-primary {
  color: var(--dark-green);
  background: var(--yellow);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25), 0 0 18px rgba(255, 201, 40, 0.22);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  color: var(--white);
  border: 1.5px solid var(--white);
  background: transparent;
}

.btn-secondary:hover {
  color: var(--dark-green);
  background: var(--white);
  transform: translateY(-3px);
}

.btn-secondary:active {
  transform: translateY(1px);
}

.icon-left {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  background-color: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.icon-left.fork {
  mask-image: url("icons/fork.svg");
  -webkit-mask-image: url("icons/fork.svg");
}

.icon-left.location {
  mask-image: url("icons/location.svg");
  -webkit-mask-image: url("icons/location.svg");
}

.icon-right {
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.promotions,
.must-try {
  position: relative;
  background: var(--cream);
}

.promotions {
  padding: 18px 0 13px;
}

.promotions::before,
.must-try::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: radial-gradient(circle, var(--text-dark) 1px, transparent 1.2px);
  background-size: 28px 28px;
}

.section-title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.section-title h2 {
  position: relative;
  margin: 0;
  color: var(--text-dark);
  font-size: 29px;
  line-height: 0.92;
  font-weight: 950;
}

.promotions .section-title h2 {
  display: inline-block;
  text-shadow: 0 0 16px rgba(255, 201, 40, 0.34), 0 2px 0 rgba(255, 255, 255, 0.42);
  transform-origin: center;
  animation: promo-title-breathe 5.6s ease-in-out infinite;
}

.section-title p {
  margin: 4px 0 0;
  color: #8b4d24;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 23px;
  line-height: 0.8;
}

.promotions .section-title p {
  animation: promo-subtitle-breathe 5.8s ease-in-out infinite;
}

.section-title.small h2 {
  font-size: 26px;
}

.section-title.small p {
  font-size: 20px;
}

.ornament {
  color: var(--yellow);
  font-size: 29px;
  font-weight: 900;
}

.promotions .ornament {
  filter: drop-shadow(0 0 8px rgba(255, 201, 40, 0.4));
  transform-origin: center;
  animation: promo-ornament-pulse 4.8s ease-in-out infinite;
}

.promotions .ornament.flip {
  animation-delay: 0.7s;
}

.flip {
  transform: scaleX(-1);
}

.promo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 19px;
}

.promo-card {
  position: relative;
  height: 292px;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 246, 232, 0.24);
  box-shadow: 0 16px 34px rgba(18, 55, 42, 0.14);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 3;
  border-radius: 21px;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 0 0 1px rgba(255, 201, 40, 0.08);
}

.promo-card:hover {
  transform: translateY(-7px);
  border-color: rgba(255, 201, 40, 0.38);
  box-shadow: 0 24px 48px rgba(18, 55, 42, 0.26), 0 0 26px rgba(255, 201, 40, 0.12);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(18, 55, 42, 0.22);
}

.promo-combo {
  display: grid;
  grid-template-columns: 154px minmax(220px, 1fr);
  color: var(--white);
  background: linear-gradient(110deg, var(--dark-green), var(--green));
}

.promo-combo::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 68%;
  background: linear-gradient(90deg, rgba(0, 47, 34, 0.98) 0%, rgba(0, 63, 45, 0.96) 68%, rgba(0, 63, 45, 0) 100%);
  pointer-events: none;
}

.discount-badge {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: 112px;
  height: 112px;
  margin: 30px 0 0 24px;
  padding-top: 27px;
  border-radius: 50%;
  color: var(--dark-green);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.54), transparent 24%),
    var(--yellow);
  transform: rotate(-5deg);
  text-align: center;
  font-size: 34px;
  line-height: 0.9;
  font-weight: 950;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24), 0 0 0 6px rgba(255, 201, 40, 0.16);
}

.discount-badge::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed rgba(0, 63, 45, 0.38);
  border-radius: inherit;
  pointer-events: none;
}

.discount-badge::after,
.promo-stamp::after,
.mini-btn::after {
  content: "";
  position: absolute;
  top: -42%;
  bottom: -42%;
  width: 46%;
  transform: translateX(-190%) rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
  pointer-events: none;
  animation: promo-shine 6.5s ease-in-out infinite;
}

.discount-badge::after {
  left: 0;
  z-index: 1;
}

.discount-badge span {
  font-size: 26px;
}

.promo-text {
  position: relative;
  z-index: 2;
  padding: 35px 28px 0 0;
}

.promo-combo .promo-text {
  padding-left: 8px;
}

.promo-tag {
  display: inline-flex;
  align-items: center;
  height: 22px;
  margin: 0 0 11px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--dark-green);
  background: rgba(255, 201, 40, 0.92);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  font-size: 9.5px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.promo-stamp .promo-tag {
  color: var(--yellow);
  background: var(--green);
}

.promo-combo h3,
.promo-stamp h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1;
  font-weight: 950;
}

.promo-combo p,
.promo-stamp p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
}

.promo-combo small {
  display: block;
  margin: 24px 0 17px;
  font-size: 11px;
}

.mini-btn {
  position: relative;
  overflow: hidden;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 34px;
  border-radius: 8px;
  font-size: 10.5px;
  font-weight: 950;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, background 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
  animation: promo-button-pulse 3.9s ease-in-out infinite;
}

.mini-btn:hover {
  transform: translateY(-3px) scale(1.03);
  filter: brightness(1.06);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.22), 0 0 18px rgba(255, 201, 40, 0.28);
}

.mini-btn:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.18);
}

.mini-btn::after {
  left: 0;
  animation-duration: 5.6s;
}

.mini-btn.yellow {
  color: var(--dark-green);
  background: var(--yellow);
}

.mini-btn.green {
  color: var(--white);
  background: var(--green);
}

.promo-combo img {
  position: absolute;
  right: -60px;
  bottom: -24px;
  z-index: 0;
  width: 420px;
  height: 310px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.28));
  transition: transform 0.32s ease, opacity 0.18s ease;
}

.promo-card:hover img {
  transform: scale(1.045) translateY(-2px);
}

.promo-stamp {
  overflow: hidden;
  color: var(--text-dark);
  background: radial-gradient(circle at 82% 42%, #ffd95d, var(--yellow) 54%, #eeb417);
}

.promo-stamp::after {
  left: 0;
  z-index: 1;
  opacity: 0.5;
  animation-delay: 1.2s;
}

.promo-stamp .promo-text {
  padding-top: 35px;
  padding-left: 34px;
  padding-right: 262px;
  max-width: 100%;
}

.promo-stamp h3 {
  color: var(--green);
}

.reward-icon {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  margin-right: 8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  color: var(--yellow);
  background: var(--white);
  font-size: 15px;
  vertical-align: middle;
}

.stamp-row {
  display: grid;
  grid-template-columns: repeat(5, 27px);
  gap: 10px 12px;
  margin: 14px 0 16px 7px;
}

.stamp-row span:nth-child(5) {
  grid-column: 1;
}

.stamp-row span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  font-size: 12px;
  font-weight: 950;
}

.stamp-row span:last-child {
  color: var(--yellow);
  border: 2px solid var(--green);
  background: var(--green);
  box-shadow: 0 8px 14px rgba(0, 63, 45, 0.2);
}

.stamp-row span:nth-child(8) {
  color: #f15a24;
  border: 2px solid #f15a24;
}

.stamp-row .stamp-gift {
  position: relative;
  font-size: 0;
}

.stamp-row .stamp-gift::before {
  content: "";
  width: 13px;
  height: 12px;
  border: 2px solid var(--yellow);
  border-radius: 3px;
  background:
    linear-gradient(90deg, transparent 43%, var(--yellow) 43% 57%, transparent 57%),
    linear-gradient(180deg, transparent 43%, var(--yellow) 43% 57%, transparent 57%);
}

.stamp-row .stamp-gift::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  width: 17px;
  height: 5px;
  border: 2px solid var(--yellow);
  border-radius: 5px 5px 2px 2px;
  transform: translateX(-50%);
}

.promo-stamp img {
  position: absolute;
  right: -68px;
  bottom: -18px;
  width: 460px;
  height: 318px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 16px 22px rgba(0, 0, 0, 0.16));
  transition: transform 0.32s ease;
}

.must-try {
  padding: 0 0 13px;
}

.menu-box {
  position: relative;
  z-index: 1;
  padding: 8px 16px 15px;
  border-radius: 15px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: inset 0 0 0 1px rgba(18, 55, 42, 0.09), 0 8px 20px rgba(18, 55, 42, 0.08);
}

.menu-head {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 11px;
}

.menu-head .section-title {
  grid-column: 2;
}

.view-all {
  grid-column: 3;
  justify-self: end;
  margin-right: 4px;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 950;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid rgba(18, 55, 42, 0.15);
  background: #fffaf0;
  text-align: center;
  box-shadow: 0 6px 15px rgba(18, 55, 42, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.product-image {
  position: relative;
  height: 151px;
  overflow: hidden;
}

.product-image img {
  transition: transform 0.22s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-image span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 10px;
  border-radius: 0 0 6px 0;
  color: var(--dark-green);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 950;
}

.product-image span.new {
  color: var(--white);
  background: var(--green);
}

.product-body {
  min-height: 116px;
  padding: 9px 10px 10px;
}

.product-body h3 {
  margin: 0 0 7px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.1;
  font-weight: 950;
}

.product-body p {
  margin: 0;
  color: #0c2219;
  font-size: 12px;
  line-height: 1.35;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.promo-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.promo-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 28, 20, 0.78);
  backdrop-filter: blur(5px);
}

.promo-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: calc(100vh - 56px);
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 246, 232, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.2s ease;
}

.promo-modal.open .promo-modal-dialog {
  transform: translateY(0) scale(1);
}

.promo-modal-dialog img {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 108px);
  object-fit: contain;
  border-radius: 14px;
  background: var(--cream);
}

.promo-modal-close {
  position: absolute;
  top: -15px;
  right: -15px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  color: var(--dark-green);
  background: var(--yellow);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

@keyframes promo-title-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2px) scale(1.025);
  }
}

@keyframes promo-ornament-pulse {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.9;
  }
  45% {
    transform: translateY(-1px) rotate(-5deg) scale(1.08);
    opacity: 1;
  }
  68% {
    transform: translateY(1px) rotate(4deg) scale(1.04);
  }
}

@keyframes promo-subtitle-breathe {
  0%,
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px);
  }
}

@keyframes promo-shine {
  0%,
  52% {
    transform: translateX(-190%) rotate(18deg);
  }
  78%,
  100% {
    transform: translateX(280%) rotate(18deg);
  }
}

@keyframes promo-button-pulse {
  0%,
  100% {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.14);
  }
  50% {
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18), 0 0 18px rgba(255, 201, 40, 0.24);
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 22%, rgba(20, 91, 63, 0.5), transparent 34%),
    radial-gradient(circle at 18% 76%, rgba(255, 201, 40, 0.075), transparent 31%),
    linear-gradient(112deg, #002417 0%, #003223 48%, #003f2d 100%);
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: screen;
}

.site-footer::before {
  left: 50px;
  bottom: 246px;
  width: 348px;
  height: 232px;
  background: url("images/about/building-sketch.png") center / contain no-repeat;
  display: none;
}

.site-footer::after {
  right: 42px;
  bottom: 74px;
  width: 252px;
  height: 160px;
  background: url("images/footer/cup-sketch.png") center / contain no-repeat;
  opacity: 0.13;
}

.footer-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 1536px);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.24fr 0.74fr 0.72fr 0.77fr 1.3fr;
  gap: clamp(20px, 1.7vw, 26px);
  min-height: 418px;
  padding: 42px 60px 30px;
  align-items: start;
}

.footer-invite {
  position: relative;
  min-height: 390px;
  padding-top: 0;
}

.footer-invite::after {
  content: none;
}

.footer-invite h2 {
  position: relative;
  z-index: 2;
  margin: -2px 0 0 -8px;
  color: #f7eee3;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  width: max-content;
  font-size: clamp(64px, 5.2vw, 84px);
  line-height: 0.82;
  font-weight: 400;
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(255, 246, 232, 0.05),
    0 8px 18px rgba(0, 0, 0, 0.3);
  transform: rotate(-5deg);
  transform-origin: left top;
}

.footer-invite .footer-hola-line {
  display: inline-block;
  margin-left: 28px;
  color: #f7eee3;
  white-space: nowrap;
  transform: translateY(-2px);
}

.footer-invite .footer-hola-line span {
  display: inline-block;
  color: var(--yellow);
  font-size: 1.16em;
  font-weight: 400;
  transform: translate(0, 2px) rotate(4deg);
  text-shadow: 0 7px 16px rgba(255, 201, 40, 0.13), 0 8px 18px rgba(0, 0, 0, 0.3);
}

.footer-invite i {
  position: relative;
  z-index: 2;
  display: block;
  width: 66px;
  height: 3px;
  margin: 30px 0 14px 28px;
  border-radius: 999px;
  background: var(--yellow);
}

.footer-invite p {
  position: relative;
  z-index: 2;
  margin: 0;
  max-width: 330px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.62;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.footer-logo-mark {
  position: absolute;
  left: -24px;
  bottom: -18px;
  z-index: 1;
  width: 470px;
  height: 316px;
  display: grid;
  place-items: center;
  background: url("images/footer/logo-building.png") center / contain no-repeat;
  mix-blend-mode: screen;
  opacity: 0.56;
}

.footer-logo-mark::before {
  content: none;
}

.footer-logo-mark img {
  display: none;
}

.footer-panel {
  min-height: 260px;
  padding: 6px 0 0 28px;
  border-left: 1px dotted rgba(255, 246, 232, 0.3);
}

.footer-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 201, 40, 0.55);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 22px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.footer-icon img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

.footer-panel h3,
.footer-follow h3,
.footer-loop h3 {
  margin: 0;
  color: #fff6e9;
  font-size: 15.5px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.015em;
  white-space: nowrap;
}

.footer-panel h3::after {
  content: "";
  display: block;
  width: 45px;
  height: 2px;
  margin: 14px 0 20px;
  background: var(--yellow);
  border-radius: 999px;
}

.footer-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.55;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 46px;
  margin-top: 22px;
  padding: 0 18px;
  border: 1px solid var(--yellow);
  border-radius: 999px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.footer-hours strong {
  display: block;
  margin-top: 8px;
  color: var(--yellow);
  font-size: 16.5px;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 20px;
  color: var(--white);
  transition: transform 0.18s ease;
}

.contact-row span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 18px;
}

.contact-row span img {
  width: 21px;
  height: 21px;
  object-fit: contain;
}

.contact-row:first-of-type span {
  color: var(--white);
  background: #27b45a;
  border-color: rgba(255, 255, 255, 0.78);
}

.contact-row b {
  display: grid;
  gap: 4px;
  color: var(--white);
  font-size: 14.5px;
  line-height: 1.1;
}

.contact-row small {
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.footer-shop {
  align-self: stretch;
  min-height: 344px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.34));
}

.footer-shop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.footer-middle {
  display: grid;
  grid-template-columns: 300px minmax(330px, 1fr) minmax(348px, 404px);
  gap: 46px;
  align-items: center;
  min-height: 126px;
  padding: 24px 60px;
  border-top: 1px solid rgba(255, 246, 232, 0.34);
  border-bottom: 1px solid rgba(255, 246, 232, 0.34);
}

.footer-follow {
  padding-left: 18px;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  color: var(--white);
  font-size: 18px;
  font-weight: 950;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.footer-socials a[aria-label="Xiaohongshu"] {
  font-size: 11px;
  letter-spacing: 0.03em;
}

.footer-loop {
  display: flex;
  gap: 18px;
  min-height: 76px;
  padding-left: 46px;
  border-left: 1px solid rgba(255, 246, 232, 0.28);
}

.footer-loop > span {
  color: var(--yellow);
  font-size: 29px;
  line-height: 1;
}

.footer-loop p {
  margin: 11px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.58;
}

.footer-subscribe {
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 5px 0 24px;
  border: 1px solid rgba(255, 246, 232, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.18);
}

.footer-subscribe input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 14px;
}

.footer-subscribe input::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.footer-subscribe button {
  flex: 0 0 auto;
  height: 46px;
  padding: 0 25px;
  border: 0;
  border-radius: 999px;
  color: #092c20;
  background: var(--yellow);
  font-size: 13px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto 46px;
  gap: 36px;
  align-items: center;
  min-height: 78px;
  padding: 14px 60px 18px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13.5px;
}

.footer-bottom nav {
  display: flex;
  gap: 0;
  align-items: center;
}

.footer-bottom nav a {
  position: relative;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

.footer-bottom nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: var(--yellow);
}

.back-to-top {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--yellow);
  border-radius: 50%;
  color: var(--yellow);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.footer-pill:hover,
.contact-row:hover,
.footer-socials a:hover,
.footer-subscribe button:hover,
.back-to-top:hover {
  transform: translateY(-2px);
}

.footer-pill:hover,
.footer-socials a:hover,
.back-to-top:hover {
  color: var(--dark-green);
  background: var(--yellow);
}

.whatsapp-float {
  position: fixed;
  z-index: 80;
  right: 22px;
  bottom: 88px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #20b358;
  border: 3px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float::before {
  content: "";
  width: 30px;
  height: 30px;
  background: url("images/footer/icons/whatsapp-white.png") center / contain no-repeat;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
}

.menu-page {
  background: var(--cream);
}

.menu-hero {
  position: relative;
  height: 560px;
  padding-top: 86px;
  overflow: hidden;
  color: var(--white);
  background-image: url("images/hero/menu-hero.png");
  background-size: cover;
  background-position: 58% top;
  background-repeat: no-repeat;
}

.menu-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 47, 34, 0.98) 0%, rgba(0, 47, 34, 0.86) 34%, rgba(0, 47, 34, 0.34) 58%, rgba(0, 47, 34, 0.02) 100%);
}

.menu-hero-wrap {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 88px));
  height: 100%;
  margin: 0 auto;
  display: block;
}

.menu-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding-left: 80px;
  padding-top: 92px;
}

.menu-hero-copy p {
  margin: 0 0 6px;
  color: var(--yellow);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 42px;
  line-height: 0.9;
}

.menu-hero-copy h1 {
  margin: 0;
  color: var(--white);
  font-size: 104px;
  line-height: 0.86;
  font-weight: 950;
  letter-spacing: -2px;
}

.menu-hero-copy > span {
  display: block;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.36;
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 950;
}

.scroll-cue i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-style: normal;
  color: var(--white);
}

.category-section,
.signature-section,
.menu-cta-section {
  position: relative;
  background: var(--cream);
}

.category-section {
  padding: 18px 0 8px;
}

.category-section::before,
.signature-section::before,
.menu-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: radial-gradient(circle, var(--text-dark) 1px, transparent 1.2px);
  background-size: 28px 28px;
}

.menu-section-title {
  position: relative;
  z-index: 1;
  text-align: center;
}

.menu-section-title p {
  margin: 0 0 4px;
  color: #8b4d24;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 25px;
  line-height: 0.9;
}

.menu-section-title h2 {
  margin: 0;
  color: var(--text-dark);
  font-size: 30px;
  line-height: 1;
  font-weight: 950;
}

.menu-section-title h2 span {
  color: var(--yellow);
  font-size: 26px;
  vertical-align: 0.08em;
}

.menu-section-title > span {
  display: block;
  margin-top: 8px;
  color: #171d18;
  font-size: 14px;
}

.category-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  margin-top: 16px;
}

.category-numbers {
  padding-top: 24px;
  text-align: center;
  color: rgba(18, 55, 42, 0.26);
}

.category-numbers button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  color: rgba(18, 55, 42, 0.26);
  background: transparent;
  font-size: 18px;
  line-height: 1;
  font-weight: 950;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.category-numbers button.active,
.category-numbers button:hover,
.category-numbers button:focus-visible {
  color: var(--yellow);
  transform: translateX(2px);
  outline: 0;
}

.category-numbers span {
  display: block;
  margin: 10px 0;
  color: rgba(18, 55, 42, 0.2);
  font-size: 10px;
}

.category-stack {
  display: grid;
  gap: 2px;
}

.feature-category {
  min-height: 328px;
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  border-radius: 13px;
  background: var(--green);
  box-shadow: var(--shadow);
  transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.feature-category.is-changing {
  opacity: 0.68;
  transform: translateY(3px);
}

.feature-image {
  min-height: 328px;
  overflow: hidden;
}

.feature-image img {
  transition: transform 0.28s ease, opacity 0.18s ease;
}

.feature-category:hover .feature-image img {
  transform: scale(1.035);
}

.feature-copy {
  position: relative;
  padding: 38px 34px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 63, 45, 0.82), rgba(0, 47, 34, 0.98)),
    radial-gradient(circle at 92% 65%, rgba(255, 255, 255, 0.08), transparent 30%);
}

.feature-copy::after {
  content: "☕";
  position: absolute;
  right: 30px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 100px;
}

.feature-copy small {
  display: block;
  color: var(--yellow);
  font-size: 22px;
  font-weight: 950;
}

.feature-copy h3 {
  margin: 9px 0 0;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 61px;
  line-height: 0.88;
  font-weight: 500;
}

.feature-copy em {
  display: block;
  margin-top: 13px;
  color: var(--yellow);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 25px;
  line-height: 1;
}

.feature-copy p {
  max-width: 270px;
  margin: 14px 0 20px;
  font-size: 14px;
  line-height: 1.45;
}

.feature-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 178px;
  height: 39px;
  border-radius: 999px;
  color: var(--dark-green);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 950;
}

.category-row {
  position: relative;
  min-height: 74px;
  padding-top: 16px;
  padding-bottom: 16px;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
  background: #fbecd7;
  box-shadow: inset 0 -1px rgba(18, 55, 42, 0.18);
  cursor: pointer;
  transition: max-height 0.24s ease, opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.category-row:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow);
}

.category-row:focus-visible {
  outline: 3px solid rgba(255, 201, 40, 0.76);
  outline-offset: 2px;
}

.category-row.active {
  background: #fff4df;
  border-radius: 10px 10px 0 0;
  box-shadow: inset 5px 0 var(--yellow), 0 10px 24px rgba(18, 55, 42, 0.14);
}

.category-row.active img {
  transform: scale(1.04);
}

.category-row img {
  position: absolute;
  inset: 0 0 0 auto;
  width: 60%;
  object-position: right center;
  transition: transform 0.28s ease, opacity 0.18s ease;
}

.category-row::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff1dc 0 43%, rgba(255, 241, 220, 0.78) 50%, rgba(255, 241, 220, 0) 62%);
}

.category-row div {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 10px;
  row-gap: 2px;
  align-items: center;
  height: auto;
  min-height: 42px;
  padding-left: 28px;
}

.category-row strong {
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  color: var(--green);
  font-size: 30px;
  font-weight: 800;
  transition: color 0.18s ease;
}

.category-row.active strong {
  color: var(--yellow);
}

.feature-category.category-item,
.category-item {
  cursor: pointer;
}

.feature-category.active {
  box-shadow: 0 18px 36px rgba(18, 55, 42, 0.22), 0 0 0 2px rgba(255, 201, 40, 0.55);
}

.menu-poster-panel {
  scroll-margin-top: 104px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height 0.38s ease, opacity 0.24s ease, transform 0.28s ease, margin 0.28s ease;
}

.menu-poster-panel.open {
  max-height: 2400px;
  opacity: 1;
  margin: 0 0 16px;
  transform: translateY(0);
}

.menu-poster-card {
  padding: 12px;
  border-radius: 0 0 16px 16px;
  background:
    linear-gradient(180deg, rgba(0, 63, 45, 0.98), rgba(0, 47, 34, 0.98)),
    var(--green);
  box-shadow: 0 18px 34px rgba(18, 55, 42, 0.18);
  border: 1px solid rgba(255, 201, 40, 0.22);
  border-top: 0;
}

.menu-poster-image-wrap {
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 246, 232, 0.08);
}

.menu-poster-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 14px;
}

.category-row h3 {
  margin: 0 0 2px;
  color: #003f2d;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.category-row p {
  grid-column: 2;
  margin: 0;
  color: rgba(0, 0, 0, 0.72);
  font-family: "Poppins", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.2px;
  transform: translateY(-2px);
}

.signature-section {
  padding: 8px 0 18px;
}

.signature-head {
  position: relative;
  margin-bottom: 14px;
}

.signature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 0;
}

.signature-card {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(18, 55, 42, 0.12);
  background: #fffaf0;
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.signature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.signature-image {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.signature-image img {
  transition: transform 0.22s ease;
}

.signature-card:hover .signature-image img {
  transform: scale(1.07);
}

.signature-image span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 11px;
  border-radius: 0 0 6px 0;
  color: var(--dark-green);
  background: var(--yellow);
  font-size: 11px;
  font-weight: 950;
}

.signature-image span.new {
  color: var(--white);
  background: var(--green);
}

.signature-body {
  position: relative;
  min-height: 118px;
  padding: 17px 18px 20px;
}

.signature-body h3 {
  margin: 0 0 9px;
  color: var(--text-dark);
  font-size: 18.5px;
  line-height: 1.15;
  font-weight: 950;
}

.signature-body p {
  margin: 0;
  color: #1b2a23;
  font-size: 13px;
  line-height: 1.45;
}

.menu-cta-section {
  padding: 0 0 22px;
}

.menu-cta {
  position: relative;
  z-index: 1;
  min-height: 82px;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 13px 48px;
  border-radius: 11px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 201, 40, 0.08), transparent 34%),
    linear-gradient(90deg, var(--dark-green), var(--green));
  box-shadow: var(--shadow);
}

.book-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 9px;
  color: var(--yellow);
  font-size: 30px;
}

.menu-cta strong {
  display: block;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

.menu-cta h2 {
  margin: 2px 0 0;
  color: var(--yellow);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 39px;
  line-height: 0.9;
  font-weight: 500;
}

.menu-cta p {
  margin: 4px 0 0;
  font-size: 12px;
}

.menu-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 166px;
  height: 43px;
  border-radius: 999px;
  color: var(--dark-green);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 950;
}

.about-page {
  background: var(--cream);
}

.about-hero {
  position: relative;
  height: 500px;
  padding-top: 86px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 26% 60%, rgba(0, 75, 50, 0.52), transparent 34%),
    var(--dark-green);
}

.about-hero > img {
  position: absolute;
  inset: 86px 0 0 auto;
  width: 73%;
  height: calc(100% - 86px);
  object-fit: cover;
  object-position: right center;
}

.about-hero-overlay {
  position: absolute;
  inset: 86px 0 0;
  background:
    linear-gradient(90deg, rgba(0, 47, 34, 1) 0%, rgba(0, 47, 34, 0.98) 28%, rgba(0, 47, 34, 0.72) 43%, rgba(0, 47, 34, 0.18) 66%, rgba(0, 47, 34, 0.03) 100%),
    radial-gradient(circle at 17% 52%, rgba(0, 63, 45, 0.78), transparent 36%);
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 88px));
  margin: 0 auto;
  padding-top: 46px;
}

.about-hero h1 {
  margin: 0;
  line-height: 0.74;
}

.about-hero h1 span,
.about-hero h1 em {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 500;
}

.about-hero h1 span {
  color: var(--yellow);
  font-size: 93px;
}

.about-hero h1 em {
  margin-left: 4px;
  color: var(--white);
  font-size: 86px;
}

.about-hero h2 {
  position: relative;
  margin: 35px 0 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.26;
  font-weight: 950;
}

.about-hero h2::after,
.why-copy h2::after,
.story-copy h2::after {
  content: "";
  display: block;
  width: 43px;
  height: 2px;
  margin-top: 17px;
  background: var(--yellow);
}

.about-hero p {
  margin: 15px 0 0;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 650;
}

.about-hero p strong {
  color: var(--yellow);
}

.about-paper {
  position: relative;
  margin-top: -1px;
  padding: 30px 0 24px;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.24), transparent 22%, transparent 78%, rgba(255, 253, 247, 0.2)),
    radial-gradient(circle at 64% 16%, rgba(140, 92, 43, 0.12), transparent 20%),
    radial-gradient(circle at 35% 58%, rgba(140, 92, 43, 0.07), transparent 21%),
    var(--cream);
}

.about-paper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.045;
  background-image: radial-gradient(circle, var(--text-dark) 1px, transparent 1.2px);
  background-size: 28px 28px;
}

.about-paper::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: -25px;
  height: 48px;
  pointer-events: none;
  background: var(--cream);
  clip-path: polygon(
    0 42%,
    5% 50%,
    10% 43%,
    16% 55%,
    22% 47%,
    28% 53%,
    34% 42%,
    41% 51%,
    48% 45%,
    55% 56%,
    63% 47%,
    71% 54%,
    79% 43%,
    88% 52%,
    96% 45%,
    100% 50%,
    100% 100%,
    0 100%
  );
  filter: drop-shadow(0 -2px 0 rgba(255, 246, 232, 0.35));
}

.why-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 39% 61%;
  align-items: center;
  min-height: 238px;
}

.why-copy {
  padding-left: 37px;
}

.why-copy h2,
.story-copy h2,
.difference-section h2 {
  margin: 0;
  color: var(--green);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-weight: 500;
}

.why-copy h2 {
  font-size: 45px;
  line-height: 0.98;
}

.why-copy p {
  margin: 20px 0 0;
  color: #111b16;
  font-size: 16px;
  line-height: 1.55;
}

.why-copy strong {
  color: var(--green);
  font-weight: 950;
}

.why-art {
  position: relative;
  min-height: 228px;
}

.hola-illustration {
  position: absolute;
  right: 32px;
  top: 9px;
  width: 520px;
  height: 218px;
  object-fit: contain;
}

.coffee-cup {
  position: absolute;
  right: 42px;
  top: 30px;
  width: 175px;
  height: 134px;
  object-fit: contain;
  opacity: 0;
}

.story-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 45% 36% 19%;
  min-height: 298px;
  align-items: center;
  margin-top: -12px;
  padding-top: 14px;
}

.story-grid::before {
  content: none;
}

.story-photo {
  position: relative;
  width: 382px;
  height: 266px;
  margin: 0 0 0 16px;
  overflow: visible;
  filter: drop-shadow(0 14px 18px rgba(18, 55, 42, 0.22));
  transform: rotate(-4deg);
}

.story-photo::before {
  content: "";
  position: absolute;
  left: 150px;
  top: -19px;
  width: 76px;
  height: 26px;
  background: rgba(78, 111, 51, 0.75);
  transform: rotate(6deg);
  z-index: 2;
}

.story-photo img {
  border: 12px solid #fffdf7;
  box-shadow: 0 0 0 1px rgba(18, 55, 42, 0.08);
}

.story-copy {
  padding-left: 22px;
  padding-top: 4px;
}

.story-copy h2 {
  font-size: 43px;
  line-height: 1;
}

.story-copy h2::after {
  margin-top: 10px;
}

.story-copy p {
  margin: 16px 0 0;
  color: #111b16;
  font-size: 14px;
  line-height: 1.45;
}

.building-sketch {
  align-self: end;
  width: 218px;
  height: 220px;
  object-fit: contain;
  opacity: 0.66;
}

.difference-section {
  padding: 18px 0 24px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -20%, rgba(0, 100, 68, 0.6), transparent 38%),
    linear-gradient(90deg, var(--dark-green), var(--green));
}

.difference-section h2 {
  color: var(--white);
  text-align: center;
  font-size: 39px;
  line-height: 1;
}

.difference-section h2 span {
  color: var(--yellow);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 25px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 19px;
}

.difference-grid article {
  min-height: 133px;
  padding: 0 36px;
  text-align: center;
  border-right: 1px dashed rgba(255, 201, 40, 0.36);
}

.difference-grid article:last-child {
  border-right: 0;
}

.difference-grid img {
  width: 66px;
  height: 52px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.difference-grid h3 {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  line-height: 1.24;
  font-weight: 950;
}

.difference-grid p {
  margin: 16px 0 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 650;
}

.meal-banner {
  height: 250px;
  overflow: hidden;
  background: var(--dark-green);
}

.meal-banner img {
  object-fit: cover;
  object-position: center;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 42px 34px 30px;
  }

  .footer-invite {
    min-height: 340px;
  }

  .footer-invite h2 {
    font-size: 62px;
  }

  .footer-logo-mark {
    left: -18px;
    bottom: 10px;
    width: 360px;
    height: 240px;
  }

  .footer-panel {
    min-height: 246px;
  }

  .footer-shop {
    grid-column: 1 / -1;
    min-height: 280px;
    max-height: 340px;
  }

  .footer-middle {
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    padding: 30px 34px;
  }

  .footer-subscribe {
    grid-column: 1 / -1;
    max-width: 560px;
  }

  .footer-bottom {
    grid-template-columns: 1fr 46px;
    gap: 24px;
    padding: 20px 34px 26px;
  }

  .footer-bottom nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
  }

  .back-to-top {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 980px) {
  .container,
  .nav-wrap,
  .hero-wrap {
    width: calc(100% - 40px);
  }

  .nav-wrap {
    height: 76px;
  }

  .logo {
    flex-basis: 180px;
    height: 70px;
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 70;
  }

  .menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, 72vw);
    height: 100vh;
    padding: 92px 24px 28px;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 17px;
    color: var(--text-dark);
    background: var(--cream);
    box-shadow: -18px 0 38px rgba(0, 0, 0, 0.22);
    transform: translateX(105%);
    transition: transform 0.24s ease;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a:not(.order-btn) {
    padding: 0 0 8px;
  }

  .nav-menu a:not(.order-btn)::after {
    bottom: 0;
  }

  .order-btn {
    margin-top: 10px;
  }

  .hero {
    height: auto;
    min-height: 520px;
    padding-top: 76px;
    background-position: left top;
  }

  .hero-wrap {
    height: auto;
  }

  .hero-copy {
    padding-top: 28px;
  }

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

  .promo-card {
    height: 280px;
  }

  .promo-combo {
    grid-template-columns: 110px 1fr;
  }

  .promo-combo img,
  .promo-stamp img {
    width: 340px;
    height: 250px;
    opacity: 0.58;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 42px 34px 30px;
  }

  .footer-invite {
    min-height: 292px;
  }

  .footer-invite h2 {
    font-size: 50px;
  }

  .footer-logo-mark {
    left: -22px;
    bottom: 0;
    width: 300px;
    height: 216px;
  }

  .footer-panel {
    min-height: 246px;
  }

  .footer-shop {
    grid-column: 1 / -1;
    min-height: 280px;
    max-height: 340px;
  }

  .footer-middle {
    grid-template-columns: 1fr 1.2fr;
    gap: 28px;
    padding: 30px 34px;
  }

  .footer-subscribe {
    grid-column: 1 / -1;
    max-width: 560px;
  }

  .footer-bottom {
    grid-template-columns: 1fr 46px;
    gap: 24px;
    padding: 20px 34px 26px;
  }

  .footer-bottom nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-wrap: wrap;
  }

  .back-to-top {
    grid-column: 2;
    grid-row: 1;
  }

  .menu-hero {
    height: auto;
    min-height: 650px;
    padding-top: 76px;
    background-position: 60% top;
  }

  .menu-hero-wrap {
    width: calc(100% - 40px);
    min-height: 574px;
  }

  .menu-hero-copy {
    padding-left: 32px;
    padding-right: 20px;
    padding-top: 56px;
  }

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

  .category-numbers {
    display: none;
  }

  .feature-category {
    grid-template-columns: 1fr;
  }

  .feature-image {
    min-height: 250px;
  }

  .feature-copy {
    padding: 30px;
  }

  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-cta {
    grid-template-columns: 60px 1fr;
    padding: 22px 28px;
  }

  .menu-cta a {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .about-hero {
    height: 540px;
    padding-top: 76px;
  }

  .about-hero > img {
    inset: 76px 0 0 auto;
    width: 100%;
    height: calc(100% - 76px);
    object-position: 62% center;
  }

  .about-hero-overlay {
    inset: 76px 0 0;
    background: linear-gradient(90deg, rgba(0, 47, 34, 0.98), rgba(0, 47, 34, 0.78) 58%, rgba(0, 47, 34, 0.24));
  }

  .about-hero-copy {
    width: calc(100% - 40px);
  }

  .why-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .why-copy {
    padding-left: 0;
  }

  .why-art {
    min-height: 250px;
  }

  .hola-illustration {
    left: 50%;
    right: auto;
    width: min(560px, 100%);
    transform: translateX(-50%);
  }

  .story-photo {
    margin: 24px auto 34px;
  }

  .story-copy {
    padding-left: 0;
    max-width: 620px;
    margin: 0 auto;
  }

  .building-sketch {
    position: absolute;
    right: 0;
    bottom: -12px;
    opacity: 0.24;
  }

  .difference-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 0;
  }

  .difference-grid article:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 640px) {
  .container,
  .nav-wrap,
  .hero-wrap {
    width: calc(100% - 28px);
  }

  .logo {
    flex-basis: 160px;
  }

  .hero {
    background-position: 43% top;
  }

  .hero-copy {
    max-width: 340px;
    padding-left: 24px;
  }

  .hero h1 span {
    font-size: 72px;
  }

  .hero h1 em {
    font-size: 70px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .hero .hero-cta-main {
    min-width: 168px;
    min-height: 42px;
    padding: 0 22px;
  }

  .hero .hero-cta small {
    font-size: 14px;
  }

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

  .section-title {
    gap: 9px;
  }

  .section-title h2 {
    font-size: 25px;
  }

  .section-title p {
    font-size: 20px;
  }

  .promotions .section-title {
    gap: 6px;
  }

  .promotions .section-title h2 {
    font-size: 22px;
  }

  .promotions .ornament {
    font-size: 20px;
  }

  .promo-card {
    min-height: 410px;
    height: auto;
    padding: 24px;
    border-radius: 22px;
  }

  .promo-combo {
    display: block;
  }

  .discount-badge {
    width: 112px;
    height: 112px;
    margin: 0 0 18px;
    padding-top: 27px;
    font-size: 34px;
  }

  .discount-badge span {
    font-size: 26px;
  }

  .promo-text {
    padding: 0;
  }

  .promo-combo .promo-text {
    position: relative;
    z-index: 3;
    max-width: 68%;
    padding: 0;
  }

  .promo-tag {
    height: 24px;
    margin-bottom: 13px;
    padding: 0 12px;
    font-size: 10px;
  }

  .promo-combo h3,
  .promo-stamp h3 {
    margin-bottom: 14px;
    font-size: 27px;
  }

  .promo-combo p,
  .promo-stamp p {
    font-size: 18px;
    line-height: 1.25;
  }

  .promo-combo small {
    margin: 18px 0 16px;
    font-size: 12px;
  }

  .mini-btn {
    min-width: 180px;
    height: 44px;
    margin-top: 2px;
    border-radius: 10px;
    font-size: 12px;
  }

  .promo-combo img,
  .promo-stamp img {
    z-index: 1;
    width: 330px;
    max-width: 88vw;
    height: auto;
    opacity: 0.85;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
  }

  .promo-combo img {
    right: -45px;
    bottom: -20px;
  }

  .promo-stamp img {
    right: -55px;
    bottom: -25px;
  }

  .promo-stamp .promo-text {
    position: relative;
    z-index: 3;
    max-width: 68%;
    padding: 0;
  }

  .reward-icon {
    width: 34px;
    height: 34px;
    margin-right: 8px;
  }

  .stamp-row {
    grid-template-columns: repeat(5, 36px);
    gap: 10px 9px;
    margin: 18px 0 17px;
  }

  .stamp-row span {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .menu-head {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-head .section-title,
  .view-all {
    grid-column: auto;
    justify-self: center;
  }


  .site-footer::before {
    left: -76px;
    bottom: 430px;
    width: 260px;
  }

  .site-footer::after {
    right: -68px;
    bottom: 185px;
    width: 220px;
    opacity: 0.2;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    padding: 44px 18px 34px;
  }

  .footer-invite {
    width: 100%;
    max-width: 380px;
    min-height: auto;
    padding-bottom: 178px;
    text-align: center;
  }

  .footer-invite h2 {
    width: max-content;
    margin: 0 auto;
    font-size: 52px;
  }

  .footer-invite::after {
    left: calc(50% + 72px);
    top: 58px;
    transform: scale(0.72) rotate(-18deg);
    transform-origin: left top;
  }

  .footer-invite p {
    max-width: 100%;
    font-size: 15px;
  }

  .footer-invite i {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-logo-mark {
    left: 50%;
    bottom: 4px;
    width: 278px;
    height: 190px;
    transform: translateX(-50%);
  }

  .footer-panel {
    width: 100%;
    max-width: 390px;
    min-height: 0;
    margin: 0 auto;
    padding: 28px 22px;
    text-align: center;
    border-left: 0;
    border-top: 1px solid rgba(255, 201, 40, 0.25);
  }

  .footer-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 18px;
  }

  .footer-panel h3,
  .footer-follow h3,
  .footer-loop h3 {
    font-size: 16px;
  }

  .footer-panel h3::after {
    margin: 15px auto 20px;
  }

  .footer-panel p,
  .footer-loop p {
    font-size: 14px;
  }

  .footer-pill {
    width: 230px;
    height: 48px;
    margin: 22px auto 0;
  }

  .contact-row {
    justify-content: center;
    margin-top: 18px;
  }

  .footer-shop {
    width: 100%;
    max-width: 380px;
    min-height: 300px;
    max-height: 360px;
    margin: 20px auto 0;
    border-radius: 18px;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 28px;
    padding: 34px 20px;
    text-align: center;
  }

  .footer-follow {
    padding-left: 0;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-socials a {
    width: 48px;
    height: 48px;
  }

  .footer-loop {
    justify-content: center;
    min-height: 0;
    padding-left: 0;
    border-left: 0;
  }

  .footer-subscribe {
    width: 100%;
    max-width: 360px;
    height: auto;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding: 10px;
    border-radius: 24px;
  }

  .footer-subscribe input {
    height: 46px;
    padding: 0 14px;
  }

  .footer-subscribe button {
    width: 100%;
    height: 48px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
    text-align: center;
    padding: 24px 20px 84px;
  }

  .footer-bottom p {
    font-size: 13px;
  }

  .footer-bottom nav {
    display: grid;
    gap: 12px;
    justify-items: center;
  }

  .footer-bottom nav a {
    padding: 0;
    font-size: 12px;
  }

  .footer-bottom nav a + a::before {
    display: none;
  }

  .back-to-top {
    grid-column: auto;
    grid-row: auto;
    width: 44px;
    height: 44px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 76px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .menu-hero {
    min-height: 640px;
    background-position: 64% top;
  }

  .menu-hero-wrap {
    width: calc(100% - 28px);
    min-height: 564px;
  }

  .menu-hero-copy {
    padding-left: 24px;
    padding-right: 24px;
    padding-top: 38px;
  }

  .menu-hero-copy p {
    font-size: 36px;
  }

  .menu-hero-copy h1 {
    font-size: 82px;
  }

  .menu-hero-copy > span {
    font-size: 16px;
  }

  .menu-section-title p {
    font-size: 23px;
  }

  .menu-section-title h2 {
    font-size: 27px;
  }

  .category-section {
    padding-top: 22px;
  }

  .feature-category {
    min-height: auto;
    border-radius: 12px;
  }

  .feature-image {
    min-height: 210px;
  }

  .feature-copy h3 {
    font-size: 50px;
  }

  .category-row {
    min-height: 96px;
    padding-top: 14px;
    padding-bottom: 14px;
    border-radius: 10px;
  }

  .category-row img {
    width: 100%;
    opacity: 0.36;
  }

  .category-row::before {
    background: linear-gradient(90deg, rgba(255, 241, 220, 0.96), rgba(255, 241, 220, 0.72));
  }

  .category-row div {
    height: auto;
    min-height: 68px;
    grid-template-columns: 48px 1fr;
    row-gap: 2px;
    padding-left: 20px;
  }

  .category-row h3 {
    font-size: 26px;
  }

  .category-row p {
    margin-top: 0;
    font-size: 15px;
    line-height: 1.25;
    transform: translateY(-2px);
  }

  .category-row strong {
    font-size: 28px;
  }

  .menu-poster-card {
    padding: 8px;
  }

  .menu-poster-image-wrap img {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .signature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signature-image {
    height: 150px;
  }

  .menu-cta {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 24px;
  }

  .menu-cta a {
    width: 100%;
  }

  .about-hero {
    height: 560px;
  }

  .about-hero-copy {
    width: calc(100% - 28px);
    padding-top: 42px;
  }

  .about-hero h1 span {
    font-size: 78px;
  }

  .about-hero h1 em {
    font-size: 74px;
  }

  .about-hero h2 {
    margin-top: 30px;
    font-size: 19px;
  }

  .about-hero p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-paper {
    padding-top: 30px;
  }

  .why-copy h2,
  .story-copy h2 {
    font-size: 38px;
  }

  .why-copy p,
  .story-copy p {
    font-size: 14px;
  }

  .why-art {
    min-height: 190px;
  }

  .hola-illustration {
    height: 175px;
  }

  .story-photo {
    width: min(360px, 92vw);
    height: 250px;
  }

  .building-sketch {
    width: 150px;
  }

  .difference-section h2 {
    font-size: 32px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .difference-grid article,
  .difference-grid article:nth-child(2) {
    min-height: auto;
    padding: 0 24px 22px;
    border-right: 0;
    border-bottom: 1px dashed rgba(255, 201, 40, 0.36);
  }

  .difference-grid article:last-child {
    border-bottom: 0;
  }

  .meal-banner {
    height: 190px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
