@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto Condensed", sans-serif;
}
:root{
  --lead: #212121;
  --gold-finger: #F2BD12;
  --red-pepper: #E32227;
  --eye-ball: #FFFDF7;
  --hint-yellow: #FCF1CC;
  --pure-white: #FFF;
}

body{
  background: var(--eye-ball);
}

body.cart-is-open{
  overflow: hidden;
}

body::before{
  content: "";
  
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  color: rgba(227, 34, 39, .2);
  font-size: clamp(4rem, 18vw, 13rem);
  font-weight: 900;
  letter-spacing: .08em;
  pointer-events: none;
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(227, 34, 39, .34);
  transform: rotate(-18deg);
}

/*BASIC STYLING*/
a{
  color: inherit;
  text-decoration: none;
}

button{
  border: 0;
  font: inherit;
}

.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  background-color: #25d366;
  border-radius: 50px;
  box-shadow: 2px 2px 3px #999;
  transition: all .3s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible{
  background-color: #128c7e;
  outline: none;
  transform: scale(1.1);
}

.whatsapp-icon{
  width: 35px;
  height: 35px;
  line-height: 35px;
}

.instagram-float{
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  color: #fff;
  font-size: 30px;
  text-align: center;
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
  border-radius: 50px;
  box-shadow: 2px 2px 3px #999;
  transition: all .3s ease;
}

.instagram-float:hover,
.instagram-float:focus-visible{
  outline: none;
  transform: scale(1.1);
  filter: saturate(1.15);
}

.instagram-icon{
  width: 35px;
  height: 35px;
  line-height: 35px;
}

/* HEADER STYLING */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background:
    linear-gradient(90deg, rgba(255, 253, 247, .96), rgba(255, 241, 204, .9));
  border-bottom: 1px solid rgba(33, 33, 33, .08);
  box-shadow: 0 16px 40px rgba(33, 33, 33, .08);
  backdrop-filter: blur(16px);
}

.navbar{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, 100%);
  min-height: 4.25rem;
  margin: 0 auto;
  gap: 1.25rem;
}

.logo{
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  flex: 0 0 auto;
  color: var(--gold-finger);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}




.nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .35rem;
  list-style: none;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(33, 33, 33, .08);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95);
}

.nav-links a{
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.65rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  color: rgba(33, 33, 33, .76);
  font-size: 1rem;
  font-weight: 800;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible{
  color: var(--red-pepper);
  background: var(--hint-yellow);
  outline: none;
  transform: translateY(-1px);
}

.desktop-actions{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .7rem;
  flex: 0 0 auto;
}

.cart-icon,
.btn,
.hamburger{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.85rem;
  height: 2.85rem;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.cart-icon{
  color: var(--lead);
  background: var(--pure-white);
  border: 1px solid rgba(33, 33, 33, .08);
  box-shadow: 0 12px 26px rgba(33, 33, 33, .09);
}

.cart-count{
  position: absolute;
  top: -.2rem;
  right: -.2rem;
  display: grid;
  min-width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  padding: 0 .25rem;
  color: var(--pure-white);
  font-size: .7rem;
  font-weight: 900;
  background: var(--red-pepper);
  border: 2px solid var(--eye-ball);
  border-radius: 999px;
}

.cart-overlay{
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(33, 33, 33, .45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.cart-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 190;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto auto;
  width: min(100%, 28rem);
  height: 100dvh;
  padding: 1.15rem;
  background: var(--eye-ball);
  box-shadow: -24px 0 60px rgba(33, 33, 33, .18);
  transform: translateX(100%);
  transition: transform .28s ease;
}

.cart-drawer.is-open{
  transform: translateX(0);
}

.cart-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(33, 33, 33, .08);
}

.cart-header span{
  color: #9a7100;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-header h2{
  color: var(--lead);
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.cart-close{
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--lead);
  background: var(--pure-white);
  border: 1px solid rgba(33, 33, 33, .08);
  border-radius: 50%;
  cursor: pointer;
}

.cart-items{
  display: grid;
  align-content: start;
  gap: .85rem;
  overflow-y: auto;
  padding: 1rem .1rem;
}

.cart-item{
  display: grid;
  grid-template-columns: 4.8rem 1fr;
  gap: .8rem;
  padding: .75rem;
  background: var(--pure-white);
  border: 1px solid rgba(33, 33, 33, .08);
  border-radius: .55rem;
  box-shadow: 0 12px 26px rgba(33, 33, 33, .07);
}

.cart-item img{
  width: 4.8rem;
  height: 4.8rem;
  object-fit: contain;
  background: var(--hint-yellow);
  border-radius: .45rem;
}

.cart-item h3{
  color: var(--lead);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1.1;
}

.cart-item-price{
  display: block;
  margin-top: .25rem;
  color: var(--red-pepper);
  font-size: .92rem;
  font-weight: 900;
}

.cart-item-actions{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-top: .65rem;
}

.qty-control{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .25rem;
  background: #fff8df;
  border-radius: 999px;
}

.qty-control button,
.cart-remove{
  display: grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.qty-control button{
  width: 1.9rem;
  height: 1.9rem;
  color: var(--lead);
  background: var(--gold-finger);
  border-radius: 50%;
}

.qty-control span{
  min-width: 1.4rem;
  color: var(--lead);
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  text-align: center;
}

.cart-remove{
  width: 2rem;
  height: 2rem;
  color: var(--red-pepper);
  background: rgba(227, 34, 39, .08);
  border-radius: 50%;
}

.cart-empty{
  display: none;
  place-items: center;
  align-content: center;
  gap: .7rem;
  padding: 2rem 1rem;
  color: rgba(33, 33, 33, .62);
  text-align: center;
}

.cart-empty i{
  color: var(--gold-finger);
  font-size: 2rem;
}

.cart-drawer.is-empty .cart-empty{
  display: grid;
}

.cart-drawer.is-empty .cart-summary{
  opacity: .55;
}

.cart-summary{
  display: grid;
  gap: .65rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(33, 33, 33, .08);
}

.cart-summary div{
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(33, 33, 33, .72);
  font-family: "Work Sans", sans-serif;
  font-size: .94rem;
}

.cart-summary strong{
  color: var(--lead);
  font-weight: 900;
}

.cart-total-row{
  padding-top: .55rem;
  border-top: 1px dashed rgba(33, 33, 33, .14);
}

.cart-total-row strong{
  color: var(--red-pepper);
  font-size: 1.25rem;
}

.checkout-btn{
  width: 100%;
  min-height: 3rem;
  margin-top: .45rem;
}

.cart-clear{
  color: rgba(33, 33, 33, .62);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.cart-toast{
  position: fixed;
  left: 50%;
  bottom: 1.25rem;
  z-index: 220;
  padding: .85rem 1.1rem;
  color: var(--lead);
  font-weight: 900;
  background: var(--gold-finger);
  border-radius: 999px;
  box-shadow: 0 18px 36px rgba(33, 33, 33, .16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 1rem);
  transition: opacity .22s ease, transform .22s ease;
}

.cart-toast.is-visible{
  opacity: 1;
  transform: translate(-50%, 0);
}

.btn{
  gap: .5rem;
  min-width: auto;
  padding: 0 1rem;
  color: var(--lead);
  font-weight: 900;
  background: var(--gold-finger);
  box-shadow: 0 14px 28px rgba(242, 189, 18, .28);
}

.hamburger{
  display: none;
  color: var(--pure-white);
  background: var(--lead);
}

.cart-icon:hover,
.btn:hover,
.hamburger:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(33, 33, 33, .14);
}

.cart-icon:focus-visible,
.btn:focus-visible,
.hamburger:focus-visible{
  outline: 3px solid rgba(227, 34, 39, .25);
  outline-offset: 3px;
}

/* SECTION STYLING */
.hero-wrap{
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 189, 18, .26), transparent 28rem),
    radial-gradient(circle at 86% 22%, rgba(227, 34, 39, .13), transparent 24rem),
    linear-gradient(135deg, #fffdf7 0%, #fff7dd 54%, #fffdf7 100%);
}

.hero-section{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, .9fr);
  align-items: center;
  width: min(1180px, 100%);
  min-height: calc(100vh - 6.25rem);
  margin: 0 auto;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1rem, 4vw, 2rem);
  gap: clamp(2rem, 6vw, 5rem);
}

.hero-section::before{
  content: "";
  position: absolute;
  right: clamp(1rem, 8vw, 4rem);
  bottom: clamp(1rem, 6vw, 3rem);
  width: clamp(12rem, 28vw, 24rem);
  aspect-ratio: 1;
  background: repeating-linear-gradient(45deg, rgba(227, 34, 39, .08) 0 8px, transparent 8px 18px);
  border-radius: 50%;
  pointer-events: none;
}

.content{
  position: relative;
  z-index: 1;
  max-width: 38rem;
}

.hero-kicker{
  display: inline-flex;
  align-items: center;
  min-height: 2.1rem;
  margin-bottom: 1.1rem;
  padding: 0 .9rem;
  color: var(--red-pepper);
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(227, 34, 39, .14);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(33, 33, 33, .07);
}

.content h1{
  max-width: 10ch;
  color: var(--lead);
  font-size: clamp(3rem, 7vw, 6.6rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: 0;
}

.content h1 span{
  display: block;
  color: var(--gold-finger);
  text-shadow: 0 12px 30px rgba(66, 70, 48, 0.14);
}

.content > p:not(.hero-kicker){
  max-width: 34rem;
  margin-top: 1.25rem;
  color: rgba(33, 33, 33, .72);
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 500;
  line-height: 1.7;
}

.cta-buttons{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}

.hero-section .btn{
  min-height: 3.25rem;
  padding: 0 1.3rem;
  border: 1px solid transparent;
}

.hero-primary{
  position: relative;
  color: var(--pure-white);
  background: linear-gradient(135deg, var(--red-pepper), #ff6b2c);
  box-shadow: 0 16px 34px rgba(227, 34, 39, .28);
  animation: cardapio-heartbeat 1.8s ease-in-out infinite;
}

.hero-secondary{
  color: var(--lead);
  background: rgba(255, 255, 255, .86);
  border-color: rgba(33, 33, 33, .1);
  box-shadow: 0 14px 30px rgba(33, 33, 33, .08);
}

.social-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  color: var(--lead);
  background: var(--pure-white);
  border: 1px solid rgba(33, 33, 33, .08);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(33, 33, 33, .08);
  transition: color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.hero-section .btn:hover,
.hero-section .btn:focus-visible,
.social-icon:hover,
.social-icon:focus-visible{
  transform: translateY(-4px);
  outline: none;
}

.hero-primary:hover,
.hero-primary:focus-visible{
  animation: none;
  box-shadow: 0 24px 48px rgba(227, 34, 39, .42);
}

.hero-secondary:hover,
.hero-secondary:focus-visible,
.social-icon:hover,
.social-icon:focus-visible{
  color: var(--red-pepper);
  background: var(--hint-yellow);
  box-shadow: 0 18px 36px rgba(33, 33, 33, .12);
}

.image-container{
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: clamp(19rem, 42vw, 34rem);
}

@keyframes cardapio-heartbeat{
  0%,
  42%,
  70%,
  100%{
    transform: scale(1);
    box-shadow: 0 16px 34px rgba(227, 34, 39, .28);
  }

  16%{
    transform: scale(1.07);
    box-shadow: 0 22px 44px rgba(227, 34, 39, .4);
  }

  28%{
    transform: scale(.98);
    box-shadow: 0 14px 28px rgba(227, 34, 39, .24);
  }

  54%{
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(242, 189, 18, .28), 0 18px 38px rgba(227, 34, 39, .32);
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-primary{
    animation: none;
  }
}

.image-container::before{
  content: "";
  position: absolute;
  width: min(92%, 29rem);
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--gold-finger), #ff8a3d);
  border-radius: 50%;
  box-shadow: 0 28px 70px rgba(242, 189, 18, .28);
  transition: transform .3s ease, box-shadow .3s ease;
}

.image-container::after{
  content: "30 min";
  position: absolute;
  right: 4%;
  top: 12%;
  display: grid;
  width: clamp(4.7rem, 10vw, 6rem);
  height: clamp(4.7rem, 10vw, 6rem);
  place-items: center;
  color: var(--pure-white);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 900;
  background: var(--red-pepper);
  border: .35rem solid var(--pure-white);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(227, 34, 39, .26);
  transform: rotate(8deg);
}

.image-container img{
  position: relative;
  width: min(100%, 30rem);
  max-height: 34rem;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(33, 33, 33, .22));
  transition: transform .35s ease, filter .35s ease;
}

.image-container:hover::before{
  transform: scale(1.04) rotate(6deg);
  box-shadow: 0 34px 80px rgba(242, 189, 18, .34);
}

.image-container:hover img{
  transform: translateY(-.65rem) scale(1.03);
  filter: drop-shadow(0 36px 42px rgba(33, 33, 33, .26));
}

.services-section{
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
  background:
    linear-gradient(180deg, var(--eye-ball) 0%, #fff8df 48%, var(--eye-ball) 100%);
}

.services-section::before{
  content: "";
  position: absolute;
  left: -8rem;
  top: 5rem;
  width: clamp(14rem, 28vw, 25rem);
  aspect-ratio: 1;
  background: rgba(242, 189, 18, .16);
  border-radius: 50%;
  pointer-events: none;
}

.services-section::after{
  content: "";
  position: absolute;
  right: -7rem;
  bottom: 3rem;
  width: clamp(12rem, 24vw, 22rem);
  aspect-ratio: 1;
  background: repeating-linear-gradient(45deg, rgba(255, 138, 61, .12) 0 8px, transparent 8px 18px);
  border-radius: 50%;
  pointer-events: none;
}

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

.text-center{
  max-width: 42rem;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.text-center h3{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  margin-bottom: .85rem;
  padding: 0 .95rem;
  color: #9a7100;
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(242, 189, 18, .2);
  border: 1px solid rgba(242, 189, 18, .36);
  border-radius: 999px;
}

.text-center h2{
  color: var(--lead);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.service-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.service-card{
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  min-height: 23rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(33, 33, 33, .08);
  border-radius: .5rem;
  box-shadow: 0 20px 46px rgba(33, 33, 33, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.service-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(242, 189, 18, .2), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(255, 138, 61, .16), transparent 8rem);
  opacity: .8;
  pointer-events: none;
  transition: opacity .28s ease;
}

.service-card::after{
  content: "";
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 0;
  height: .3rem;
  background: linear-gradient(90deg, var(--gold-finger), #ff8a3d);
  border-radius: 999px 999px 0 0;
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .28s ease;
}

.service-icon,
.service-card h4,
.service-card p{
  position: relative;
  z-index: 1;
}

.service-icon{
  display: grid;
  width: clamp(7.4rem, 15vw, 9rem);
  height: clamp(7.4rem, 15vw, 9rem);
  place-items: center;
  margin-bottom: 1.35rem;
  background: linear-gradient(135deg, rgba(242, 189, 18, .3), rgba(255, 255, 255, .9));
  border: 1px solid rgba(242, 189, 18, .4);
  border-radius: 1.4rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 16px 32px rgba(242, 189, 18, .18);
  transition: transform .28s ease, box-shadow .28s ease;
}

.service-icon img{
  width: 78%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(33, 33, 33, .12));
  transition: transform .28s ease;
}

.service-card h4{
  color: var(--lead);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
}

.service-card p{
  margin-top: .65rem;
  color: rgba(33, 33, 33, .68);
  font-family: "Work Sans", sans-serif;
  font-size: .92rem;
  font-weight: 500;
  line-height: 1.5;
}

.service-card:hover,
.service-card:focus-within{
  transform: translateY(-.55rem);
  background: var(--pure-white);
  border-color: rgba(242, 189, 18, .42);
  box-shadow: 0 28px 58px rgba(33, 33, 33, .12);
}

.service-card:hover::before,
.service-card:focus-within::before{
  opacity: 1;
}

.service-card:hover::after,
.service-card:focus-within::after{
  transform: scaleX(1);
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon{
  transform: translateY(-.35rem) rotate(-3deg);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .95), 0 22px 40px rgba(242, 189, 18, .24);
}

.service-card:hover .service-icon img,
.service-card:focus-within .service-icon img{
  transform: scale(1.08);
}

.menu-section{
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 10% 12%, rgba(242, 189, 18, .2), transparent 22rem),
    radial-gradient(circle at 92% 30%, rgba(255, 138, 61, .14), transparent 24rem),
    linear-gradient(180deg, #fff8df 0%, var(--eye-ball) 42%, #fff7dd 100%);
}

.menu-section::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(52rem, 90vw);
  height: .35rem;
  background: linear-gradient(90deg, transparent, var(--gold-finger), #ff8a3d, transparent);
  transform: translateX(-50%);
}

.menu-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.5rem);
}

.menu-preview .menu-card:nth-of-type(n+9){
  display: none;
}

.menu-card{
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 15rem 1fr;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(33, 33, 33, .08);
  border-radius: .55rem;
  box-shadow: 0 20px 48px rgba(33, 33, 33, .08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.menu-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(242, 189, 18, .18), transparent 46%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

.menu-image{
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.15rem;
  background:
    radial-gradient(circle, rgba(242, 189, 18, .34) 0 38%, transparent 39%),
    linear-gradient(135deg, rgba(252, 241, 204, .82), rgba(255, 255, 255, .72));
}

.menu-image::after{
  content: "";
  position: absolute;
  inset: auto 1.25rem 1rem;
  height: .7rem;
  background: rgba(33, 33, 33, .14);
  border-radius: 50%;
  filter: blur(8px);
  transform: scaleX(.72);
  transition: transform .28s ease, opacity .28s ease;
}

.menu-image img{
  position: relative;
  z-index: 1;
  width: min(92%, 13.5rem);
  max-height: 13rem;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(33, 33, 33, .18));
  transition: transform .32s ease, filter .32s ease;
}

.menu-content{
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  padding: 1.25rem;
}

.menu-tag{
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  margin-bottom: .8rem;
  padding: 0 .75rem;
  color: #8f6500;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(242, 189, 18, .22);
  border: 1px solid rgba(242, 189, 18, .38);
  border-radius: 999px;
}

.menu-content h4{
  color: var(--lead);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.menu-content p{
  margin-top: .65rem;
  color: rgba(33, 33, 33, .66);
  font-family: "Work Sans", sans-serif;
  font-size: .94rem;
  font-weight: 500;
  line-height: 1.55;
}

.menu-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .85rem;
  margin-top: 1.1rem;
}

.price{
  color: var(--red-pepper);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.order-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: var(--lead);
  background: var(--gold-finger);
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(242, 189, 18, .28);
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease;
}

.menu-card:hover,
.menu-card:focus-within{
  transform: translateY(-.6rem);
  border-color: rgba(242, 189, 18, .5);
  box-shadow: 0 30px 62px rgba(33, 33, 33, .13);
}

.menu-card:hover::before,
.menu-card:focus-within::before{
  opacity: 1;
}

.menu-card:hover .menu-image img,
.menu-card:focus-within .menu-image img{
  transform: translateY(-.45rem) scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 24px 28px rgba(33, 33, 33, .22));
}

.menu-card:hover .menu-image::after,
.menu-card:focus-within .menu-image::after{
  opacity: .8;
  transform: scaleX(.92);
}

.order-btn:hover,
.order-btn:focus-visible{
  color: var(--pure-white);
  background: linear-gradient(135deg, var(--red-pepper), #ff6b2c);
  box-shadow: 0 18px 34px rgba(227, 34, 39, .25);
  outline: none;
  transform: translateY(-2px) rotate(90deg);
}

.menu-more{
  display: grid;
  justify-items: center;
  gap: 1rem;
  max-width: 36rem;
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  padding: clamp(1.25rem, 3vw, 1.7rem);
  text-align: center;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(242, 189, 18, .35);
  border-radius: .55rem;
  box-shadow: 0 18px 42px rgba(33, 33, 33, .08);
}

.menu-more p{
  color: rgba(33, 33, 33, .72);
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.menu-more-btn{
  min-height: 3rem;
  padding-inline: 1.3rem;
}

.menu-page{
  min-height: calc(100vh - 6rem);
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

main > section:not([class]){
  display: none;
}

.reviews-section{
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
  background: #f8fafd;
}

.reviews-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(66, 133, 244, .09), transparent 20rem),
    radial-gradient(circle at 88% 18%, rgba(251, 188, 5, .14), transparent 22rem),
    radial-gradient(circle at 78% 82%, rgba(52, 168, 83, .09), transparent 18rem);
  pointer-events: none;
}

.reviews-wrapper{
  position: relative;
}

.reviews-header{
  display: grid;
  grid-template-columns: minmax(17rem, .72fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.google-summary{
  padding: 1.35rem;
  background: var(--pure-white);
  border: 1px solid #dadce0;
  border-radius: .5rem;
  box-shadow: 0 12px 30px rgba(60, 64, 67, .1);
}

.google-brand{
  display: flex;
  align-items: center;
  gap: .65rem;
  color: #3c4043;
  font-family: "Work Sans", sans-serif;
  font-size: .98rem;
  font-weight: 700;
}

.google-brand i,
.review-google{
  color: #4285f4;
}

.rating-row{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: .9rem;
}

.rating-row strong{
  color: #202124;
  font-family: "Work Sans", sans-serif;
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1;
}

.stars{
  display: inline-flex;
  align-items: center;
  gap: .12rem;
  color: #fbbc04;
  font-size: .95rem;
}

.rating-row > span{
  width: 100%;
  color: #5f6368;
  font-family: "Work Sans", sans-serif;
  font-size: .9rem;
}

.reviews-title{
  text-align: left;
}

.reviews-title h3{
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  margin-bottom: .8rem;
  padding: 0 .95rem;
  color: #1967d2;
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(66, 133, 244, .1);
  border: 1px solid rgba(66, 133, 244, .18);
  border-radius: 999px;
}

.reviews-title h2{
  max-width: 11ch;
  color: #202124;
  font-size: clamp(2.5rem, 5.5vw, 4.9rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.reviews-carousel{
  position: relative;
}

.reviews-track{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.4vw, 1.4rem);
}

.review-card{
  min-height: 16.5rem;
  padding: 1.25rem;
  background: var(--pure-white);
  border: 1px solid #dadce0;
  border-radius: .5rem;
  box-shadow: 0 10px 28px rgba(60, 64, 67, .09);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}

.review-top{
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: .8rem;
}

.review-top img{
  width: 3rem;
  height: 3rem;
  object-fit: cover;
  border-radius: 50%;
}

.review-top h4{
  color: #202124;
  font-family: "Work Sans", sans-serif;
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.2;
}

.review-top span{
  display: block;
  margin-top: .18rem;
  color: #70757a;
  font-family: "Work Sans", sans-serif;
  font-size: .8rem;
  font-weight: 500;
}

.review-google{
  font-size: 1.1rem;
}

.review-card .stars{
  margin-top: 1rem;
}

.review-card p{
  margin-top: .8rem;
  color: #3c4043;
  font-family: "Work Sans", sans-serif;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.58;
}

.review-card:hover,
.review-card:focus-within{
  transform: translateY(-.35rem);
  border-color: #c7d7fe;
  box-shadow: 0 18px 42px rgba(60, 64, 67, .14);
}

.review-control{
  display: none;
}

.review-dots{
  display: none;
}

@keyframes review-marquee{
  0%, 24%{
    transform: translateX(0);
  }
  33%, 57%{
    transform: translateX(-100%);
  }
  66%, 90%{
    transform: translateX(-200%);
  }
  100%{
    transform: translateX(0);
  }
}

.about-section{
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 12% 20%, rgba(242, 189, 18, .18), transparent 22rem),
    linear-gradient(180deg, var(--eye-ball), #fff8df);
}

.about-wrapper{
  display: grid;
  grid-template-columns: minmax(17rem, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.about-media{
  position: relative;
  overflow: hidden;
  min-height: clamp(18rem, 38vw, 30rem);
  border-radius: .65rem;
  box-shadow: 0 26px 60px rgba(33, 33, 33, .16);
}

.about-media::after{
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: .45rem;
  pointer-events: none;
}

.about-media img{
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform .35s ease;
}

.about-media:hover img{
  transform: scale(1.05);
}

.about-content h3,
.contact-content h3{
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  margin-bottom: .9rem;
  padding: 0 .95rem;
  color: #9a7100;
  font-size: .88rem;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(242, 189, 18, .22);
  border: 1px solid rgba(242, 189, 18, .36);
  border-radius: 999px;
}

.about-content h2,
.contact-content h2{
  color: var(--lead);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: 0;
}

.about-content p,
.contact-content p{
  max-width: 36rem;
  margin-top: 1rem;
  color: rgba(33, 33, 33, .7);
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
}

.about-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1.7rem;
}

.about-stats div{
  padding: 1rem;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(242, 189, 18, .32);
  border-radius: .5rem;
  box-shadow: 0 14px 30px rgba(33, 33, 33, .07);
}

.about-stats strong{
  display: block;
  color: var(--red-pepper);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  line-height: 1;
}

.about-stats span{
  display: block;
  margin-top: .35rem;
  color: rgba(33, 33, 33, .68);
  font-family: "Work Sans", sans-serif;
  font-size: .82rem;
  font-weight: 700;
}

.contact-section{
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 88% 18%, rgba(227, 34, 39, .1), transparent 21rem),
    linear-gradient(180deg, #fff8df, var(--eye-ball));
}

.contact-wrapper{
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(18rem, .72fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 4rem);
}

.contact-list{
  display: grid;
  gap: .8rem;
  margin-top: 1.5rem;
}

.contact-list a{
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .95rem;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(33, 33, 33, .08);
  border-radius: .5rem;
  color: var(--lead);
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(33, 33, 33, .07);
  transition: transform .2s ease, border-color .2s ease;
}

.contact-list i{
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  color: var(--lead);
  background: var(--gold-finger);
  border-radius: 50%;
}

.contact-list a:hover,
.contact-list a:focus-visible{
  outline: none;
  border-color: rgba(242, 189, 18, .5);
  transform: translateY(-2px);
}

.contact-form{
  display: grid;
  gap: .95rem;
  padding: clamp(1.15rem, 3vw, 1.6rem);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(33, 33, 33, .08);
  border-radius: .55rem;
  box-shadow: 0 24px 56px rgba(33, 33, 33, .1);
}

.contact-form label{
  display: grid;
  gap: .4rem;
  color: var(--lead);
  font-family: "Work Sans", sans-serif;
  font-size: .86rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  padding: .9rem 1rem;
  color: var(--lead);
  background: #fffaf0;
  border: 1px solid rgba(33, 33, 33, .1);
  border-radius: .45rem;
  font: inherit;
  resize: vertical;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color: rgba(242, 189, 18, .8);
  box-shadow: 0 0 0 3px rgba(242, 189, 18, .18);
}

.contact-submit{
  min-height: 3.1rem;
  justify-self: start;
  padding-inline: 1.35rem;
}

.site-footer{
  color: var(--pure-white);
  background: #181818;
}

.footer-wrapper{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 4vw, 2rem);
}

.footer-logo{
  display: inline-flex;
  color: var(--gold-finger);
  font-size: 2rem;
  font-weight: 900;
}

.site-footer p{
  max-width: 22rem;
  margin-top: .55rem;
  color: rgba(255, 255, 255, .68);
  font-family: "Work Sans", sans-serif;
  line-height: 1.6;
}

.footer-links,
.footer-social{
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
}

.footer-links a{
  color: rgba(255, 255, 255, .72);
  font-weight: 800;
  transition: color .2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible{
  color: var(--gold-finger);
  outline: none;
}

.footer-social a{
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: var(--lead);
  background: var(--gold-finger);
  border-radius: 50%;
  transition: transform .2s ease, background .2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible{
  color: var(--pure-white);
  background: var(--red-pepper);
  outline: none;
  transform: translateY(-2px);
}

.footer-bottom{
  padding: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, .58);
  font-family: "Work Sans", sans-serif;
  font-size: .88rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
/* FOOTER STYLING */






/* MEDIA QUERIES */
@media (max-width: 980px){
  .about-wrapper,
  .contact-wrapper{
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-content{
    text-align: center;
  }

  .about-content p,
  .contact-content p{
    margin-inline: auto;
  }

  .about-media{
    width: min(100%, 38rem);
    margin-inline: auto;
  }

  .contact-form{
    width: min(100%, 36rem);
    margin-inline: auto;
  }

  .footer-wrapper{
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p{
    margin-inline: auto;
  }

  .reviews-header{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .reviews-title{
    text-align: center;
  }

  .reviews-title h2{
    margin-inline: auto;
  }

  .google-summary{
    width: min(100%, 32rem);
    margin: 0 auto;
  }

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

  .menu-card{
    grid-template-rows: 14rem 1fr;
  }

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

  .service-card{
    min-height: 20rem;
  }

  .hero-section{
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: clamp(2.5rem, 8vw, 4rem);
    text-align: center;
  }

  .content{
    justify-self: center;
  }

  .content h1,
  .content > p:not(.hero-kicker){
    margin-inline: auto;
  }

  .cta-buttons{
    justify-content: center;
  }

  .image-container{
    order: -1;
    min-height: clamp(17rem, 58vw, 28rem);
  }

  .image-container img{
    width: min(82vw, 25rem);
  }

  .image-container::after{
    right: 12%;
    top: 6%;
  }
}

@media (max-width: 860px){
  .about-section,
  .contact-section{
    padding-block: clamp(3.25rem, 9vw, 5rem);
  }

  .reviews-section{
    padding-block: clamp(3.25rem, 9vw, 5rem);
  }

  .reviews-carousel{
    width: min(100%, 34rem);
    margin-inline: auto;
    padding-inline: 3.2rem;
    overflow: hidden;
  }

  .reviews-track{
    display: flex;
    gap: 0;
    animation: review-marquee 15s linear infinite;
    will-change: transform;
  }

  .reviews-carousel:hover .reviews-track{
    animation-play-state: paused;
  }

  .review-card{
    flex: 0 0 100%;
    min-height: 17rem;
  }

  .review-control{
    display: none;
  }

  .review-dots{
    display: none;
  }

  .menu-section{
    padding-block: clamp(3.25rem, 9vw, 5rem);
  }

  .menu-image img{
    width: min(88%, 12.5rem);
  }

  .services-section{
    padding-block: clamp(3.25rem, 9vw, 5rem);
  }

  .text-center{
    margin-bottom: 1.75rem;
  }

  .service-card{
    min-height: auto;
  }

  .site-header{
    padding: .8rem 1rem;
  }

  .navbar{
    min-height: 3.75rem;
  }

  .hamburger{
    display: inline-flex;
    isolation: isolate;
    overflow: hidden;
    color: var(--lead);
    background:
      linear-gradient(var(--pure-white), var(--pure-white)) padding-box,
      linear-gradient(135deg, var(--gold-finger), var(--red-pepper)) border-box;
    border: 2px solid transparent;
    box-shadow: 0 12px 26px rgba(227, 34, 39, .16);
  }

  .hamburger::before{
    content: "";
    position: absolute;
    inset: .32rem;
    z-index: -1;
    background: var(--hint-yellow);
    border-radius: inherit;
    opacity: .75;
    transition: opacity .2s ease, transform .2s ease;
  }

  .hamburger i{
    font-size: 1.1rem;
    transition: transform .2s ease, color .2s ease;
  }

  .hamburger[aria-expanded="true"]{
    color: var(--pure-white);
    background:
      linear-gradient(135deg, var(--red-pepper), #ff6b2c) padding-box,
      linear-gradient(135deg, var(--red-pepper), var(--gold-finger)) border-box;
    box-shadow: 0 16px 32px rgba(227, 34, 39, .24);
  }

  .hamburger[aria-expanded="true"]::before{
    opacity: 0;
    transform: scale(.6);
  }

  .hamburger[aria-expanded="true"] i{
    transform: rotate(90deg);
  }

  .nav-links{
    position: absolute;
    top: calc(100% + .8rem);
    left: 0;
    right: 0;
    display: grid;
    gap: .4rem;
    padding: .45rem;
    background: rgba(255, 255, 255, .98);
    border-radius: 1.25rem;
    box-shadow: 0 20px 45px rgba(33, 33, 33, .14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-.75rem) scale(.98);
    transform-origin: top center;
    transition: opacity .2s ease, transform .2s ease;
  }

  .nav-links.is-open{
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .nav-links a{
    justify-content: space-between;
    width: 100%;
    min-height: 3.3rem;
    padding: 0 1rem;
    color: var(--lead);
    font-size: 1.08rem;
    font-weight: 900;
    background: rgba(252, 241, 204, .42);
    border: 1px solid rgba(33, 33, 33, .06);
  }

  .nav-links a::after{
    content: "\f054";
    color: var(--red-pepper);
    font-family: "Font Awesome 7 Free";
    font-size: .75rem;
    font-weight: 900;
    opacity: .8;
  }
}

@media (max-width: 520px){
  .cart-drawer{
    width: 100%;
    padding: .9rem;
  }

  .cart-item{
    grid-template-columns: 4.2rem 1fr;
    padding: .65rem;
  }

  .cart-item img{
    width: 4.2rem;
    height: 4.2rem;
  }

  .cart-header h2{
    font-size: 1.7rem;
  }

  .cart-toast{
    width: calc(100% - 1.5rem);
    text-align: center;
  }

  .about-section,
  .contact-section{
    padding: 3rem .85rem;
  }

  .about-media{
    min-height: 16rem;
  }

  .about-content h3,
  .contact-content h3{
    min-height: 1.85rem;
    font-size: .76rem;
  }

  .about-content h2,
  .contact-content h2{
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .about-content p,
  .contact-content p{
    font-size: .94rem;
    line-height: 1.6;
  }

  .about-stats{
    grid-template-columns: 1fr;
  }

  .contact-list a{
    align-items: flex-start;
    font-size: .9rem;
  }

  .contact-submit{
    width: 100%;
  }

  .footer-wrapper{
    padding: 2.5rem .85rem;
  }

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

  .reviews-section{
    padding: 3rem .85rem;
  }

  .reviews-title h3{
    min-height: 1.85rem;
    font-size: .76rem;
  }

  .reviews-title h2{
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .google-summary{
    padding: 1rem;
  }

  .rating-row strong{
    font-size: 2rem;
  }

  .reviews-carousel{
    padding-inline: 2.75rem;
  }

  .review-card{
    min-height: 18rem;
    padding: 1rem;
  }

  .review-card p{
    font-size: .9rem;
    line-height: 1.52;
  }

  .menu-preview .menu-card:nth-of-type(n+4){
    display: none;
  }

  .menu-section{
    padding: 3rem .85rem;
  }

  .menu-grid{
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .menu-card{
    grid-template-columns: 7.5rem 1fr;
    grid-template-rows: auto;
    min-height: 9.5rem;
  }

  .menu-image{
    min-height: 100%;
    padding: .7rem;
  }

  .menu-image::after{
    inset: auto .75rem 1.1rem;
    height: .45rem;
  }

  .menu-image img{
    width: min(100%, 6.5rem);
    max-height: 7rem;
  }

  .menu-content{
    padding: .9rem .9rem .9rem .75rem;
  }

  .menu-tag{
    min-height: 1.45rem;
    margin-bottom: .45rem;
    padding-inline: .55rem;
    font-size: .66rem;
  }

  .menu-content h4{
    font-size: 1.15rem;
  }

  .menu-content p{
    margin-top: .35rem;
    font-size: .78rem;
    line-height: 1.42;
  }

  .menu-footer{
    margin-top: .65rem;
  }

  .price{
    font-size: 1.08rem;
  }

  .order-btn{
    width: 2.35rem;
    height: 2.35rem;
  }

  .menu-more{
    padding: 1rem;
  }

  .services-section{
    padding: 3rem .85rem;
  }

  .services-section::before{
    left: -10rem;
    top: 1rem;
  }

  .services-section::after{
    right: -10rem;
    bottom: 1rem;
  }

  .text-center h3{
    min-height: 1.85rem;
    font-size: .78rem;
  }

  .text-center h2{
    font-size: clamp(2.15rem, 11vw, 3.2rem);
  }

  .service-grid{
    grid-template-columns: 1fr;
    gap: .9rem;
  }

  .service-card{
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 1rem;
    padding: 1rem;
  }

  .service-icon{
    width: 5.8rem;
    height: 5.8rem;
    margin-bottom: 0;
    grid-row: span 2;
    border-radius: 1rem;
  }

  .service-card h4{
    font-size: 1.25rem;
  }

  .service-card p{
    margin-top: .25rem;
    font-size: .82rem;
    line-height: 1.42;
  }

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

  .navbar{
    gap: .75rem;
  }

  .logo{
    gap: .5rem;
    font-size: 1.4rem;
  }

  .logo-mark{
    width: 2.35rem;
    height: 2.35rem;
    border-radius: .7rem;
  }

  .desktop-actions{
    gap: .45rem;
  }

  .cart-icon,
  .btn,
  .hamburger{
    min-width: 2.6rem;
    height: 2.6rem;
  }

  .hamburger{
    border-width: 1.5px;
    box-shadow: 0 10px 22px rgba(227, 34, 39, .18);
  }

  .hamburger::before{
    inset: .28rem;
  }

  .btn{
    padding: 0;
  }

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

  .hero-section{
    padding: 2rem .9rem 3rem;
    gap: 1.25rem;
  }

  .hero-section::before{
    width: 14rem;
    right: -5rem;
    bottom: 8rem;
  }

  .hero-kicker{
    min-height: 1.9rem;
    margin-bottom: .85rem;
    font-size: .78rem;
  }

  .content h1{
    max-width: 9ch;
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .content > p:not(.hero-kicker){
    margin-top: 1rem;
    font-size: .98rem;
    line-height: 1.6;
  }

  .cta-buttons{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .65rem;
    width: 100%;
    margin-top: 1.45rem;
  }

  .hero-section .btn{
    width: 100%;
    min-height: 3rem;
    padding: 0 .85rem;
    font-size: .95rem;
  }

  .social-icon{
    width: 100%;
    height: 2.85rem;
  }

  .image-container{
    min-height: 16.5rem;
  }

  .image-container::before{
    width: min(88%, 16.5rem);
  }

  .image-container::after{
    right: 5%;
    top: 2%;
    border-width: .28rem;
  }

  .image-container img{
    width: min(82vw, 18rem);
    max-height: 18rem;
  }
}

@media screen and (max-width: 767px){
  .whatsapp-float{
    right: 15px;
    bottom: 15px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon{
    width: 28px;
    height: 28px;
    line-height: 28px;
  }

  .instagram-float{
    right: 15px;
    bottom: 78px;
    width: 50px;
    height: 50px;
  }

  .instagram-icon{
    width: 28px;
    height: 28px;
    line-height: 28px;
  }
}
