:root {
  --yellow: #fed046;
  --wine: #240101;
  --wine-2: #3b0704;
  --orange: #f47b22;
  --cream: #fff8e8;
  --paper: #f7f2e8;
  --ink: #240101;
  --muted: #654b42;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(36, 1, 1, 0.2);
  --radius: 8px;
}

@font-face {
  font-family: "HWT Artz";
  src: url("../fonts/HWTArtz.woff2") format("woff2"),
    url("../fonts/HWTArtz.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "adineue PRO";
  src: url("../fonts/adineue PRO.woff2") format("woff2"),
    url("../fonts/adineue PRO.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "adineue PRO";
  src: url("../fonts/adineue PRO Bold.woff2") format("woff2"),
    url("../fonts/adineue PRO Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  min-height: 604px;
  color: var(--white);
  background:
    url("../images/bg_hero.jpg"),
    linear-gradient(135deg, var(--wine), var(--wine-2));
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  position: relative;
}

.site-header::after,
.section-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(254, 208, 70, 0.12) 2px, transparent 2px),
    radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 54px 54px, 26px 26px;
}

.site-header::after {
  display: none;
}

.topbar,
.hero,
.section > .container,
.footer-grid {
  position: relative;
  z-index: 1;
}

.topbar {
  min-height: 98px;
  padding-top: 14px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: clamp(22px, 3.6vw, 54px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 170px;
}

.brand img {
  width: 132px;
  max-height: 76px;
  object-fit: contain;
}

.brand-fallback {
  color: var(--yellow);
  font-family: "HWT Artz", Georgia, serif;
  font-size: 1.35rem;
  line-height: 0.9;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.22);
}

.nav-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: clamp(12px, 1.65vw, 24px);
  padding-left: clamp(22px, 4vw, 70px);
  font-family: "HWT Artz", Georgia, serif;
  font-weight: 700;
  font-size: 1.26rem;
  line-height: 1;
  text-transform: uppercase;
}

.nav-panel .nav-cta {
  margin-left: clamp(10px, 1.5vw, 20px);
  justify-self: end;
}

.nav-panel a:not(.btn) {
  color: rgba(255, 255, 255, 0.9);
}

.nav-panel a:not(.btn):hover {
  color: var(--yellow);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(254, 208, 70, 0.45);
  border-radius: var(--radius);
  background: rgba(36, 1, 1, 0.42);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--yellow);
}

.btn {
  --btn-bg: var(--yellow);
  --btn-fg: var(--wine);
  --btn-hover-bg: var(--btn-fg);
  --btn-hover-fg: var(--btn-bg);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 24px 12px;
  border: 0;
  border-radius: 16px;
  color: var(--btn-fg);
  background-color: var(--btn-bg);
  box-shadow: 0 10px 0 rgba(0, 0, 0, 0.18);
  font-weight: 900;
  font-family: "HWT Artz", Georgia, serif;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.btn:hover {
  color: var(--btn-hover-fg);
  background-color: var(--btn-hover-bg);
  transform: translateY(-2px);
  box-shadow: 0 13px 0 rgba(0, 0, 0, 0.18);
}

.btn-small {
  min-height: 34px;
  padding: 5px 16px 9px;
  align-items: center;
  box-shadow: none;
  font-size: clamp(1.15rem, 1.5vw, 1.5rem);
  line-height: 1;
}

.nav-cta {
  --btn-hover-bg: var(--white);
  --btn-hover-fg: var(--wine);

  min-width: 142px;
  min-height: 42px;
  padding: 4px 16px 10px;
  border-radius: 16px;
  line-height: 1;
}

.btn-dark {
  --btn-bg: var(--wine);
  --btn-fg: var(--yellow);
}

.center {
  display: flex;
  width: fit-content;
  margin: 32px auto 0;
}

.hero {
  min-height: calc(604px - 98px);
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(360px, 0.95fr);
  align-items: end;
  gap: clamp(24px, 4vw, 58px);
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-family: "HWT Artz", Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.9;
}

.eyebrow.dark {
  color: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "HWT Artz", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin: 0 auto 14px;
  font-family: "HWT Artz", Georgia, serif;
  font-size: clamp(2.05rem, 3.55vw, 3.7rem);
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.34);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6vw, 5.9rem);
  line-height: 0.86;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
  line-height: 1.1;
}

.hero-visual {
  position: relative;
  min-height: calc(604px - 98px);
  align-self: end;
  height: calc(604px - 98px);
  overflow: visible;
}

.phone-card,
.cook-figure,
.delivery-box,
.snack-open,
.image-fallback,
.product-fallback,
.store-image-fallback {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.phone-card {
  position: absolute;
  top: 92px;
  left: 12px;
  width: 190px;
  padding: 22px 18px;
  color: var(--ink);
  background: var(--white);
  transform: rotate(-8deg);
  z-index: 4;
}

.hero-phone {
  --hero-phone-x: 0;
  position: absolute;
  left: clamp(-18px, 1vw, 24px);
  bottom: -1px;
  width: min(100%, 590px);
  z-index: 3;
  animation: hero-phone-rise 850ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

@keyframes hero-phone-rise {
  from {
    opacity: 0;
    transform: translateX(var(--hero-phone-x)) translateY(90px);
  }

  to {
    opacity: 1;
    transform: translateX(var(--hero-phone-x)) translateY(0);
  }
}

.hero-copy {
  align-self: center;
  padding-bottom: 48px;
  text-align: center;
  opacity: 0;
  animation: hero-copy-slide 760ms cubic-bezier(0.2, 0.9, 0.2, 1) 620ms both;
}

@keyframes hero-copy-slide {
  from {
    opacity: 0;
    transform: translateX(86px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-copy .eyebrow {
  width: fit-content;
  min-height: 74px;
  margin: 0 auto 10px;
  padding: 4px 16px 16px;
  display: inline-flex;
  align-items: center;
  color: var(--wine);
  background: var(--yellow);
  font-size: clamp(2.18rem, 4vw, 4.18rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.hero-copy .btn {
  --btn-bg: var(--wine);
  --btn-fg: var(--white);

  min-height: 42px;
  padding: 4px 16px 10px;
  display: inline-flex;
  align-items: center;
  box-shadow: none;
  line-height: 1;
  margin-inline: auto;
}

.hero-copy .btn:hover,
.nav-cta:hover,
.about-cta:hover {
  transform: none;
  box-shadow: none;
}

.phone-card p {
  margin: 4px 0 0;
  color: #168c42;
  font-size: 0.9rem;
  font-weight: 700;
}

.chat-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 7px;
  border-radius: 50%;
  background: #29c35a;
}

.cook-figure {
  position: absolute;
  right: 105px;
  bottom: 18px;
  width: 290px;
  height: 460px;
  background:
    radial-gradient(circle at 50% 17%, #f7c69e 0 46px, transparent 47px),
    linear-gradient(#fff 0 0) 50% 31% / 142px 72px no-repeat,
    radial-gradient(circle at 50% 48%, #fff 0 118px, transparent 119px),
    linear-gradient(135deg, #b51222 0 50%, #f9f0e5 50% 100%);
}

.delivery-box {
  position: absolute;
  right: 0;
  bottom: 48px;
  width: 250px;
  height: 180px;
  display: grid;
  place-items: center;
  color: var(--wine);
  background: linear-gradient(145deg, var(--yellow), #f5a832);
  font-family: "HWT Artz", Georgia, serif;
  font-size: 3.2rem;
  transform: rotate(5deg);
  z-index: 5;
}

.snack-open {
  position: absolute;
  right: 260px;
  bottom: 0;
  width: 190px;
  height: 128px;
  background:
    radial-gradient(ellipse at 50% 52%, #a85118 0 20%, #e99d35 22% 52%, #6b250c 53% 58%, transparent 59%),
    radial-gradient(ellipse at 50% 70%, #f6bc49 0 60%, transparent 61%);
  transform: rotate(-10deg);
  z-index: 6;
}

.ticker {
  position: relative;
  z-index: 4;
  min-height: 60px;
  overflow: hidden;
  color: var(--wine);
  background: var(--yellow);
  font-family: "HWT Artz", Georgia, serif;
  font-size: clamp(1.05rem, 1.55vw, 1.45rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.floating-esfirra {
  position: absolute;
  z-index: 6;
  top: calc(604px + 6px);
  right: clamp(90px, 16vw, 260px);
  width: clamp(150px, 16vw, 230px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

body.is-loaded .floating-esfirra {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.has-scrolled .floating-esfirra {
  opacity: 0;
  transform: translateY(-18px) scale(0.96);
}

.floating-coxinha {
  position: absolute;
  z-index: 6;
  left: clamp(34px, 13vw, 185px);
  top: calc(604px + 60px + 700px);
  width: clamp(92px, 10vw, 150px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

body.show-coxinha:not(.has-passed-about) .floating-coxinha {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.has-passed-about .floating-coxinha {
  opacity: 0;
  transform: translateY(-18px) scale(0.96);
}

.floating-caixa {
  position: absolute;
  z-index: 6;
  right: clamp(40px, 12vw, 180px);
  top: calc(604px + 60px + 700px + 700px);
  width: clamp(180px, 23vw, 330px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(32px) rotate(-8deg) scale(0.96);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

body.show-caixa:not(.has-passed-cardapio) .floating-caixa {
  opacity: 1;
  transform: translateY(0) rotate(-8deg) scale(1);
}

body.has-passed-cardapio .floating-caixa {
  opacity: 0;
  transform: translateY(-18px) rotate(-8deg) scale(0.96);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: fit-content;
  min-width: max-content;
  min-height: 60px;
  animation: ticker 34s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  min-width: max-content;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 4px 16px 12px;
  white-space: nowrap;
}

.ticker b {
  display: inline-flex;
  align-items: center;
  min-height: 60px;
  padding: 4px 2px 12px;
  font-family: "HWT Artz", Georgia, serif;
  font-weight: 900;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.section-light {
  background:
    radial-gradient(circle at 8% 12%, rgba(254, 208, 70, 0.24), transparent 22rem),
    linear-gradient(180deg, #fffdf6, var(--paper));
  background-size: auto, auto;
}

.about.section-light {
  background: #ffffff url("../images/pattern.png") center top repeat;
}

.about.section-light::before {
  display: none;
}

.guests.section-light {
  background: #ffffff url("../images/pattern.png") center top repeat;
  padding-block: 88px 0;
}

.guests.section-light::before {
  display: none;
}

.section-light::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(45deg, rgba(36, 1, 1, 0.08) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(36, 1, 1, 0.08) 25%, transparent 25%);
  background-size: 38px 38px;
  pointer-events: none;
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(rgba(36, 1, 1, 0.92), rgba(36, 1, 1, 0.94)),
    url("../images/bg_produtos.png"),
    var(--wine);
  background-size: cover;
  background-position: center;
}

.menu-section {
  background:
    url("../images/bg_produtos.png"),
    var(--wine);
  background-size: cover;
  background-position: center;
  padding-block: 118px 112px;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(58px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.menu-section::after {
  display: none;
}

.menu-section .section-heading h2 span {
  color: var(--yellow);
}

.menu-section .section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.menu-section .section-heading .eyebrow {
  display: none;
}

.menu-section .section-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.55vw, 2.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.corporate {
  background:
    url("../images/bg_corporativo.png"),
    var(--wine);
  background-size: cover;
  background-position: center;
  padding-block: 84px 76px;
}

.corporate::after {
  display: none;
}

.corporate .section-heading {
  max-width: 1040px;
  margin-bottom: 46px;
}

.corporate .section-heading .eyebrow {
  display: none;
}

.corporate .section-heading h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 3.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.corporate .section-heading h2 span {
  color: var(--yellow);
}

.stores {
  background:
    url("../images/bg_nossaslojas.png"),
    var(--wine);
  background-size: cover;
  background-position: center;
}

.stores::after {
  display: none;
}

.stores .section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 3.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.stores .section-heading h2 span {
  color: var(--yellow);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.about .split {
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 5.4vw, 70px);
  align-items: center;
}

.split-reverse {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.guests .split-reverse {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: end;
}

.section-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.1rem;
}

.about .section-copy {
  max-width: 560px;
}

.about .section-copy p {
  color: #4b241f;
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 400;
  line-height: 1.24;
  text-align: justify;
}

.section-dark .section-copy p:not(.eyebrow),
.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.82);
}

.framed-photo {
  position: relative;
  min-height: 0;
  aspect-ratio: 508 / 605;
  padding: 0;
  background: #ffffff;
  border-radius: 0;
  transform: none;
  box-shadow: none;
  opacity: 0;
  animation: about-image-slide 820ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
}

.framed-photo::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  background: var(--yellow);
  z-index: -1;
}

.framed-photo img,
.person-photo img,
.box-photo img,
.delivery-visual img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.framed-photo img {
  position: absolute;
  inset: 0;
  object-fit: contain;
}

.about-cta {
  min-height: 42px;
  padding: 4px 16px 10px;
  line-height: 1;
  box-shadow: none;
}

.about .section-copy {
  opacity: 0;
  animation: about-text-slide 760ms cubic-bezier(0.2, 0.9, 0.2, 1) 420ms both;
}

@keyframes about-image-slide {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes about-text-slide {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-fallback {
  min-height: 374px;
  display: grid;
  place-items: center;
  color: var(--wine);
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.75), transparent 8rem),
    linear-gradient(135deg, #fed046, #f47b22);
  font-family: "HWT Artz", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 0.86;
  text-align: center;
}

.section-heading {
  max-width: 880px;
  margin: 0 auto 40px;
  text-align: center;
}

.product-shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.product-viewport {
  overflow: hidden;
  width: 100%;
}

.product-track {
  --product-columns: 4;
  --product-gap: 22px;
  --product-gaps-total: 66px;
  --product-loop-distance: 0px;
  --product-loop-duration: 28s;

  display: flex;
  gap: var(--product-gap);
  will-change: transform;
}

.product-track.is-looping {
  animation: product-loop var(--product-loop-duration) linear infinite;
}

.product-track.is-reversing {
  animation-direction: reverse;
}

.product-shell:hover .product-track.is-looping,
.product-shell:focus-within .product-track.is-looping {
  animation-play-state: paused;
}

@keyframes product-loop {
  to {
    transform: translateX(calc(var(--product-loop-distance) * -1));
  }
}

.product-card {
  flex: 0 0 calc((100% - var(--product-gaps-total)) / var(--product-columns));
  position: relative;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 0.84 / 1;
  padding: 0;
  color: var(--wine);
  background: linear-gradient(180deg, #fed046, #f48b24);
  border-radius: var(--radius);
  box-shadow: none;
  text-align: center;
}

.product-card img,
.product-fallback {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: contain;
  margin-bottom: 0;
}

.product-card h3 {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 16px;
  margin-bottom: 0;
  font-family: "HWT Artz", Georgia, serif;
  font-size: clamp(1.25rem, 1.85vw, 1.82rem);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 208, 70, 0.35);
}

.menu-section .center.btn {
  --btn-hover-bg: var(--white);
  --btn-hover-fg: var(--wine);

  min-height: 42px;
  margin-top: 28px;
  padding: 4px 26px 10px;
  line-height: 1;
  box-shadow: none;
}

.menu-section .center.btn:hover {
  transform: none;
  box-shadow: none;
}

.menu-section .reveal-item {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.menu-section.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.menu-section.is-visible .product-card:nth-child(1) {
  transition-delay: 140ms;
}

.menu-section.is-visible .product-card:nth-child(2) {
  transition-delay: 220ms;
}

.menu-section.is-visible .product-card:nth-child(3) {
  transition-delay: 300ms;
}

.menu-section.is-visible .product-card:nth-child(4) {
  transition-delay: 380ms;
}

.menu-section.is-visible .product-card:nth-child(n + 5) {
  transition-delay: 460ms;
}

.menu-section.is-visible .center.btn {
  transition-delay: 480ms;
}

.product-fallback {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 48%, #8f3c16 0 18%, transparent 19%),
    radial-gradient(ellipse at 50% 54%, #f8bd45 0 54%, #9d4118 55% 62%, transparent 63%);
  color: rgba(36, 1, 1, 0.62);
  font-weight: 900;
}

.arrow,
.review-actions button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--wine);
  background: var(--yellow);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.arrow-prev {
  left: -18px;
}

.arrow-next {
  right: -18px;
}

.corner-box {
  display: none;
}

.person-photo,
.box-photo,
.delivery-visual {
  position: relative;
  min-height: 420px;
}

.delivery .delivery-visual {
  min-height: 470px;
  overflow: visible;
}

.delivery .delivery-visual img {
  position: absolute;
  right: 4%;
  top: auto;
  bottom: -132px;
  width: min(92%, 500px);
  height: auto;
  max-width: none;
  transform: none;
  object-fit: contain;
}

.delivery .section-copy.reveal-item,
.delivery .delivery-visual.reveal-item {
  opacity: 0;
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.delivery .section-copy.reveal-item {
  transform: translateX(-90px);
}

.delivery .delivery-visual.reveal-item {
  transform: translateX(90px);
}

.delivery.is-visible .section-copy.reveal-item,
.delivery.is-visible .delivery-visual.reveal-item {
  opacity: 1;
  transform: translateX(0);
}

.delivery.is-visible .delivery-visual.reveal-item {
  transition-delay: 300ms;
}

.delivery .section-copy h2 {
  margin-bottom: 48px;
  font-size: clamp(2.05rem, 3.55vw, 3.7rem);
  line-height: 1.08;
}

.delivery .section-copy h2 span {
  color: inherit;
}

.guests .person-photo {
  min-height: 560px;
  align-self: end;
}

.guests .person-photo img {
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  object-position: left bottom;
}

.guests .section-copy {
  max-width: 560px;
  align-self: center;
  padding-bottom: 82px;
}

.guests .section-copy h2 {
  margin-bottom: 38px;
  color: var(--wine);
  font-size: clamp(2rem, 3.2vw, 3.45rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.guests .section-copy h2 span {
  display: inline-block;
  padding: 5px 8px 9px;
  color: var(--wine);
  background: var(--yellow);
}

.guests .section-copy h2 .guests-break {
  padding: 0;
  background: none;
  color: inherit;
}

.guests .section-copy p:not(.eyebrow) {
  color: #4b241f;
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.28vw, 1.24rem);
  font-weight: 400;
  line-height: 1.18;
}

.guests .section-copy .btn {
  min-height: 42px;
  margin-top: 6px;
  padding: 4px 16px 10px;
  box-shadow: none;
}

.guests .section-copy .btn:hover {
  transform: none;
  box-shadow: none;
}

.guests .person-photo.reveal-item {
  opacity: 0;
  transform: translateX(-90px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.guests .section-copy.reveal-item {
  opacity: 0;
  transform: translateX(90px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.guests.is-visible .person-photo.reveal-item,
.guests.is-visible .section-copy.reveal-item {
  opacity: 1;
  transform: translateX(0);
}

.guests.is-visible .section-copy.reveal-item {
  transition-delay: 320ms;
}

.tray-fallback {
  min-height: 420px;
}

.corporate-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 84px);
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.box-fallback {
  min-height: 360px;
}

.corporate .box-photo {
  min-height: 0;
}

.corporate .box-photo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.occasion-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 28px 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.occasion-list li {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 0 0 52px;
  color: var(--white);
  background: transparent;
  border-radius: 0;
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 700;
}

.occasion-list li::before {
  content: "✓";
  position: absolute;
  display: none;
  left: 18px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--wine);
  color: var(--yellow);
  font-size: 0.82rem;
}

.occasion-list img {
  position: absolute;
  left: 0;
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.corporate-cta {
  --btn-hover-bg: var(--white);
  --btn-hover-fg: var(--wine);

  min-height: 42px;
  margin-top: 30px;
  padding: 4px 18px 10px;
  box-shadow: none;
}

.corporate-cta:hover {
  transform: none;
  box-shadow: none;
}

.corporate .section-heading.reveal-item,
.corporate .box-photo.reveal-item,
.corporate .occasion-list.reveal-item,
.corporate .corporate-cta.reveal-item {
  opacity: 0;
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.corporate .section-heading.reveal-item {
  transform: translateY(42px);
}

.corporate .box-photo.reveal-item {
  transform: translateX(-90px);
}

.corporate .occasion-list.reveal-item,
.corporate .corporate-cta.reveal-item {
  transform: translateX(90px);
}

.corporate.is-visible .section-heading.reveal-item,
.corporate.is-visible .box-photo.reveal-item,
.corporate.is-visible .occasion-list.reveal-item,
.corporate.is-visible .corporate-cta.reveal-item {
  opacity: 1;
  transform: translate(0);
}

.corporate.is-visible .box-photo.reveal-item {
  transition-delay: 180ms;
}

.corporate.is-visible .occasion-list.reveal-item {
  transition-delay: 320ms;
}

.corporate.is-visible .corporate-cta.reveal-item {
  transition-delay: 460ms;
}

.delivery {
  color: var(--wine);
  background:
    url("../images/bg_delivery.png"),
    linear-gradient(135deg, var(--yellow), #f47b22);
  background-size: cover;
  background-position: center;
  overflow: visible;
  padding-block: 92px 84px;
  z-index: 2;
}

.delivery::after {
  display: none;
}

.hours {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 34px;
}

.hours p {
  margin: 0;
  color: var(--wine);
  line-height: 1;
  text-transform: uppercase;
}

.hours span:not(.clock-icon) {
  display: block;
  color: var(--wine);
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: clamp(0.95rem, 1.35vw, 1.2rem);
  font-weight: 400;
}

.hours strong {
  display: block;
  margin-top: 0;
  color: var(--wine);
  font-family: "HWT Artz", Georgia, serif;
  font-size: clamp(1.35rem, 2.05vw, 2rem);
  line-height: 0.92;
}

.clock-icon {
  position: relative;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border: 6px solid var(--yellow);
  border-radius: 50%;
}

.clock-icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  width: 5px;
  height: 16px;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateX(-50%);
}

.clock-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 5px;
  border-radius: 999px;
  background: var(--yellow);
  transform-origin: left center;
  transform: rotate(35deg);
}

.delivery .btn {
  min-height: 42px;
  padding: 4px 16px 10px;
  box-shadow: none;
}

.delivery .btn:hover {
  transform: none;
  box-shadow: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 54px;
}

.testimonials.section-light {
  background: #ffffff url("../images/pattern.png") center top repeat;
}

.testimonials.section-light::before {
  display: none;
}

.testimonials .section-copy h2 {
  max-width: 430px;
  margin-bottom: 34px;
  font-size: clamp(1.9rem, 3vw, 3.35rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.review-cta {
  min-height: 42px;
  padding: 4px 16px 10px;
  box-shadow: none;
}

.review-cta:hover {
  transform: none;
  box-shadow: none;
}

.review-card {
  position: relative;
  min-height: 390px;
  padding: 38px 46px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid #f0f0f0;
  box-shadow: 0 18px 45px rgba(36, 1, 1, 0.12);
}

.review-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.review-card h3 {
  margin-bottom: 2px;
  color: #172033;
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.review-meta {
  margin: 0;
  color: #7a8190;
  font-size: 1rem;
  line-height: 1.1;
}

.google-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #4285f4;
  background: transparent;
  font-weight: 900;
  font-size: 1.8rem;
}

.stars {
  margin-bottom: 32px;
  color: #ff9f1a;
  font-size: 2.25rem;
  letter-spacing: 0;
}

.review-card > p:not(.stars):not(.review-meta) {
  max-width: 420px;
  margin: 0;
  color: #111111;
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.05;
}

.review-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.review-actions button {
  pointer-events: auto;
}

.review-actions button:first-child {
  transform: translateX(-62px);
}

.review-actions button:last-child {
  transform: translateX(62px);
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.store-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  color: var(--white);
  background: var(--wine);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.store-card img,
.store-image-fallback {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
}

.store-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 1, 1, 0) 36%, rgba(36, 1, 1, 0.72) 66%, rgba(36, 1, 1, 0.98) 100%);
}

.store-card-content {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 28px;
  z-index: 1;
  text-align: center;
}

.store-card h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-family: "HWT Artz", Georgia, serif;
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.store-card p {
  margin-bottom: 16px;
  color: var(--white);
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: clamp(0.9rem, 1.1vw, 1rem);
  font-weight: 400;
  line-height: 1.22;
  text-transform: uppercase;
}

.store-card p strong {
  font-weight: 700;
}

.store-card .btn {
  min-height: 42px;
  padding: 4px 18px 10px;
  box-shadow: none;
}

.store-card .btn:hover {
  transform: none;
  box-shadow: none;
}

.stores .section-heading.reveal-item,
.stores .store-card.reveal-item {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.stores.is-visible .section-heading.reveal-item,
.stores.is-visible .store-card.reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.stores.is-visible .store-card:nth-child(1) {
  transition-delay: 140ms;
}

.stores.is-visible .store-card:nth-child(2) {
  transition-delay: 260ms;
}

.stores.is-visible .store-card:nth-child(3) {
  transition-delay: 380ms;
}

.store-image-fallback {
  display: grid;
  place-items: center;
  color: var(--wine);
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  font-family: "HWT Artz", Georgia, serif;
  font-size: 3rem;
}

/* ── About heading (SEO h2 com visual de parágrafo) ─────────────── */
.about-heading {
  margin-bottom: 18px;
  color: var(--wine);
  font-family: "HWT Artz", Georgia, serif;
  font-size: clamp(1.25rem, 1.85vw, 1.65rem);
  line-height: 1.15;
  text-transform: uppercase;
}

/* ── Stores heading subtitle ─────────────────────────────────────── */
.stores .section-heading p {
  color: rgba(255, 255, 255, 0.72);
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 400;
  margin-top: 10px;
}


/* ── Delivery extra copy ─────────────────────────────────────────── */
.delivery .section-copy > p {
  margin-bottom: 28px;
  color: var(--wine);
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.45;
}

.footer {
  position: relative;
  padding: 38px 0 28px;
  background: #ffffff url("../images/pattern.png") center top repeat;
}

.footer-grid {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
}

.footer .brand-fallback {
  color: var(--wine);
  text-shadow: none;
}

.footer-locations {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 22px;
}

.footer-locations a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  color: var(--wine);
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.footer-locations strong {
  display: block;
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 900;
}

.footer-whatsapp {
  width: 30px;
  height: 30px;
  fill: var(--yellow);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--wine);
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--wine);
  background: transparent;
}

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

.footer-bottom {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 28px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--wine);
  font-family: "adineue PRO", Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-bottom a {
  display: inline-flex;
}

.footer-bottom img {
  width: 76px;
  height: auto;
}

.back-to-top {
  appearance: none;
  -webkit-appearance: none;
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 16px;
  color: var(--wine);
  background: var(--yellow);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.back-to-top svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    min-height: auto;
  }

  .menu-toggle {
    display: block;
  }

  /* Topbar must win the stacking order over .hero (same z-index: 1,
     but hero comes later in DOM so it paints on top by default) */
  .topbar {
    z-index: 10;
  }

  .nav-panel {
    position: absolute;
    top: 82px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(36, 1, 1, 0.96);
    border: 1px solid rgba(254, 208, 70, 0.3);
    border-radius: var(--radius);
    z-index: 20;
  }

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

  .nav-panel a {
    padding: 14px;
  }

  .nav-panel .btn {
    margin-top: 8px;
  }

  .hero,
  .split,
  .split-reverse,
  .corporate-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .corporate-grid {
    max-width: 620px;
  }

  .corporate .box-photo {
    max-width: 520px;
    margin-inline: auto;
  }

  .corporate .occasion-list {
    max-width: 460px;
    margin-inline: auto;
  }

  .hero {
    min-height: auto;
    padding: 28px 0 0;
  }

  .hero-visual {
    min-height: 390px;
    height: 390px;
  }

  .hero-phone {
    --hero-phone-x: -50%;
    left: 50%;
    width: min(92vw, 540px);
  }

  .hero-copy {
    padding-bottom: 0;
    text-align: center;
  }

  .hero-copy .eyebrow {
    margin-inline: auto;
  }

  .cook-figure {
    right: 18%;
    width: 230px;
    height: 360px;
  }

  .delivery-box {
    width: 205px;
    height: 138px;
    font-size: 2.55rem;
  }

  .snack-open {
    right: 210px;
    width: 150px;
  }

  .product-track {
    --product-columns: 2;
    --product-gaps-total: 22px;
  }

  .store-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  /* Collapse splits that have hard minmax minimums */
  .about .split,
  .guests .split-reverse {
    grid-template-columns: 1fr;
  }

  .about .split {
    gap: clamp(24px, 4vw, 40px);
  }

  .guests .split-reverse {
    gap: 0;
  }

  /* Hero: show copy text before the visual image on mobile */
  .hero-copy {
    order: -1;
    padding: 24px 0 16px;
  }

  .hero-visual {
    order: 1;
  }

  .guests .person-photo {
    align-self: auto;
    min-height: 380px;
    order: 2;
  }

  .guests .section-copy {
    padding: 40px 0 48px;
    order: 1;
  }

  .corner-box {
    display: none;
  }

  .footer-grid {
    text-align: center;
    justify-items: center;
  }

  .footer-locations {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-locations a {
    justify-content: center;
    text-align: left;
  }

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

  .floating-esfirra {
    right: 28px;
    width: 150px;
  }

  .floating-caixa {
    right: 24px;
    width: 190px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .floating-esfirra {
    display: none;
  }

  .floating-coxinha,
  .floating-caixa {
    display: none;
  }

  .topbar {
    display: flex;
    justify-content: space-between;
    min-height: 82px;
  }

  .brand {
    min-width: 0;
  }

  .brand-fallback {
    font-size: 1.08rem;
  }

  .hero-copy {
    text-align: center;
  }

  .section-copy .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 280px;
    height: 280px;
  }

  .hero-phone {
    width: min(92vw, 380px);
    bottom: -1px;
  }

  .phone-card {
    top: 22px;
    width: 150px;
    padding: 16px 14px;
  }

  .cook-figure {
    right: 22%;
    bottom: 4px;
    width: 170px;
    height: 275px;
  }

  .delivery-box {
    right: 2px;
    bottom: 24px;
    width: 154px;
    height: 104px;
    font-size: 2rem;
  }

  .snack-open {
    right: 140px;
    width: 120px;
    height: 86px;
  }

  .section {
    padding: 68px 0;
  }

  .framed-photo,
  .person-photo,
  .box-photo,
  .delivery-visual,
  .image-fallback,
  .tray-fallback,
  .box-fallback {
    min-height: 290px;
  }

  .delivery .delivery-visual {
    min-height: 410px;
  }

  .delivery .delivery-visual img {
    right: 50%;
    width: min(86vw, 360px);
    bottom: -96px;
    transform: translateX(50%);
  }

  .about .framed-photo {
    min-height: 0;
    aspect-ratio: 508 / 605;
  }

  .store-grid,
  .occasion-list {
    grid-template-columns: 1fr;
  }

  .corporate .occasion-list {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 20px;
  }

  .product-card {
    min-height: 0;
  }

  .arrow {
    display: none;
  }

  .section-copy,
  .section-heading {
    text-align: center;
  }

  .occasion-list li {
    min-height: 58px;
  }

  /* ── Typography mobile ─────────────────────────────────── */
  h1 {
    max-width: 100%;
    font-size: clamp(1.7rem, 7.5vw, 2.35rem);
    line-height: 1.1;
  }

  .hero-copy .eyebrow {
    font-size: clamp(1.55rem, 5.5vw, 2.18rem);
    min-height: 54px;
  }

  .testimonials .section-copy h2 {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    line-height: 1;
    max-width: 100%;
  }

  .guests-break {
    display: block;
  }

  .delivery-break {
    display: block;
  }

  .hours {
    justify-content: center;
  }

  .delivery .delivery-visual {
    display: none;
  }

  /* ── About ─────────────────────────────────────────────── */
  .about .section-copy p {
    text-align: left;
    font-size: 1rem;
  }

  .product-track {
    --product-columns: 2;
    --product-gap: 14px;
    --product-gaps-total: 14px;
    gap: var(--product-gap);
  }

  /* ── Guests ────────────────────────────────────────────── */
  .guests.section-light {
    padding-block: 56px 0;
  }

  .guests .person-photo {
    min-height: 260px;
  }

  .guests .section-copy {
    padding: 24px 0 40px;
  }

  /* ── Delivery – prevent smartphone from bleeding into next section ─ */
  .delivery {
    overflow: hidden;
    padding-block: 64px;
  }

  .delivery .delivery-visual {
    min-height: 320px;
    overflow: hidden;
  }

  .delivery .delivery-visual img {
    bottom: -30px;
    width: min(80vw, 300px);
    max-width: 100%;
  }

  /* ── Review card ───────────────────────────────────────── */
  .review-card {
    padding: 24px 20px;
    min-height: 0;
  }

  .review-actions button:first-child {
    transform: translateX(-18px);
  }

  .review-actions button:last-child {
    transform: translateX(18px);
  }

}

/* ── Very small screens (≤ 400px / iPhone SE, Galaxy A) ─────── */
@media (max-width: 400px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .hero-visual {
    min-height: 240px;
    height: 240px;
  }

  .hero-phone {
    width: min(94vw, 320px);
  }

  /* Eyebrow badge stays readable but not oversized */
  .hero-copy .eyebrow {
    font-size: clamp(1.35rem, 5vw, 1.7rem);
    min-height: 46px;
  }

  h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .product-track {
    --product-gap: 10px;
    --product-gaps-total: 10px;
    gap: var(--product-gap);
  }

  /* Occasion list: stays 2 cols but narrower icons */
  .corporate .occasion-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
  }

  .occasion-list li {
    font-size: 0.9rem;
    padding-left: 42px;
  }

  /* Nav panel: ensure full width on smallest screens */
  .nav-panel {
    left: 0;
    right: 0;
  }

  /* Store cards a bit shorter so they don't fill the whole viewport */
  .store-card {
    min-height: 340px;
  }

  .section {
    padding: 48px 0;
  }

  .delivery {
    padding-block: 52px;
  }

  .guests.section-light {
    padding-block: 48px 0;
  }
}

.btn:hover,
.btn:focus-visible {
  color: var(--btn-hover-fg);
  background-color: var(--btn-hover-bg);
}
