:root {
  --red: #b52429;
  --red-dark: #7e171a;
  --red-soft: #e9b8ad;
  --green: #234b39;
  --green-dark: #173429;
  --gold: #d79a2b;
  --cream: #fff8ed;
  --sand: #f1dfc4;
  --paper: #fffdf8;
  --ink: #201916;
  --muted: #6f6159;
  --line: rgba(32, 25, 22, 0.15);
  --white-line: rgba(255, 255, 255, 0.24);
  --shadow: 0 24px 70px rgba(61, 37, 23, 0.14);
  --header-height: 84px;
  --display: "Bebas Neue", "Arial Narrow", sans-serif;
  --body: "Manrope", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 10%, rgba(215, 154, 43, 0.1), transparent 26rem),
    radial-gradient(circle at 92% 36%, rgba(181, 36, 41, 0.07), transparent 30rem),
    var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  background: var(--ink);
  color: white;
  left: 18px;
  padding: 12px 16px;
  position: fixed;
  top: -80px;
  z-index: 100;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  align-items: center;
  background: rgba(255, 248, 237, 0.93);
  border-bottom: 1px solid transparent;
  display: grid;
  gap: 24px;
  grid-template-columns: auto 1fr auto;
  height: var(--header-height);
  left: 0;
  padding: 10px clamp(20px, 4vw, 64px);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  z-index: 50;
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.98);
  border-color: var(--line);
  box-shadow: 0 14px 36px rgba(54, 35, 24, 0.09);
}

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

.brand img {
  border: 1px solid rgba(181, 36, 41, 0.22);
  border-radius: 50%;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.brand span,
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.065em;
  line-height: 0.94;
  text-transform: uppercase;
}

.brand span {
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}

.main-nav {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.6vw, 38px);
  justify-content: center;
}

.main-nav a {
  border-bottom: 2px solid transparent;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  padding: 9px 0 7px;
  text-transform: uppercase;
  transition: border-color 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  border-color: var(--red);
  color: var(--red);
}

.header-social {
  align-items: center;
  display: flex;
  gap: 9px;
}

.icon-link {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
  width: 40px;
}

.icon-link:hover {
  color: white;
  transform: translateY(-2px);
}

.icon-instagram:hover {
  background: #d62976;
}

.icon-facebook:hover {
  background: #1877f2;
}

.icon-link svg,
.social-button svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-width: 1.9;
  width: 19px;
}

.icon-link svg path,
.social-button svg path {
  fill: currentColor;
  stroke: none;
}

.icon-dot {
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  height: 46px;
  padding: 10px;
  width: 46px;
}

.nav-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  margin: 7px 0;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
  width: 26px;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.hero {
  align-items: center;
  display: grid;
  gap: clamp(18px, 2.3vw, 36px);
  grid-template-columns: minmax(400px, 1.2fr) minmax(190px, 0.48fr) minmax(340px, 0.86fr);
  min-height: 760px;
  padding: calc(var(--header-height) + 34px) clamp(20px, 4vw, 64px) 64px;
  position: relative;
}

.hero::before {
  border: 1px solid rgba(181, 36, 41, 0.14);
  border-radius: 50%;
  content: "";
  height: 460px;
  pointer-events: none;
  position: absolute;
  right: -210px;
  top: 90px;
  width: 460px;
}

.hero-main-photo,
.hero-side-photo {
  animation: hero-image-in 650ms ease-out both;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 0;
  overflow: hidden;
}

.hero-main-photo {
  aspect-ratio: 1;
}

.hero-main-photo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.hero-side-photo {
  align-self: stretch;
  animation-delay: 90ms;
  display: grid;
  grid-template-rows: 1fr auto;
  max-height: 610px;
}

.hero-side-photo img {
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 32%;
  width: 100%;
}

.hero-side-photo figcaption {
  background: var(--green);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 14px 16px;
  text-align: center;
  text-transform: uppercase;
}

.hero-content {
  animation: hero-copy-in 620ms 120ms ease-out both;
  padding: 18px 0 18px clamp(0px, 1vw, 16px);
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin: 0 0 16px;
  text-transform: uppercase;
}

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

h1 {
  color: var(--ink);
  font-size: clamp(4rem, 6.2vw, 7.4rem);
  margin-bottom: 20px;
  max-width: 650px;
}

h2 {
  font-size: clamp(3rem, 5vw, 5.8rem);
  margin-bottom: 0;
}

h3 {
  font-size: clamp(1.65rem, 2.1vw, 2.25rem);
  margin-bottom: 12px;
}

.hero-lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.5vw, 1.36rem);
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 56px;
  padding: 0 24px;
  text-align: center;
  text-transform: uppercase;
  transition: box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.btn:hover {
  box-shadow: 0 14px 30px rgba(68, 40, 26, 0.17);
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: white;
}

.btn-primary:hover {
  background: var(--red-dark);
}

.phone-link {
  border-bottom: 2px solid var(--red);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 6px 0;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.service-list li {
  background: rgba(35, 75, 57, 0.08);
  border: 1px solid rgba(35, 75, 57, 0.2);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 9px 13px;
  text-transform: uppercase;
}

.section {
  margin: 0 auto;
  max-width: 1600px;
  padding: clamp(78px, 8vw, 128px) clamp(20px, 5vw, 80px);
}

.section-heading {
  align-items: flex-end;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 46px;
}

.section-heading-wide {
  align-items: start;
}

.section-heading-wide > div {
  max-width: 760px;
}

.section-heading-wide > p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  margin: 6px 0 0;
  max-width: 560px;
}

.campus-section {
  border-top: 1px solid var(--line);
}

.benefit-grid {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
}

.benefit-grid article {
  border: 1px solid var(--line);
  min-height: 250px;
  padding: clamp(26px, 3vw, 44px);
  position: relative;
}

.benefit-grid article + article {
  border-left: 0;
}

.benefit-number {
  color: var(--red);
  display: block;
  font-family: var(--display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  margin-bottom: 54px;
}

.benefit-grid p {
  color: var(--muted);
  margin: 0;
  max-width: 320px;
}

.menu-section {
  background:
    radial-gradient(circle at 4% 22%, rgba(215, 154, 43, 0.14), transparent 26rem),
    radial-gradient(circle at 88% 76%, rgba(181, 36, 41, 0.1), transparent 30rem),
    var(--paper);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  max-width: none;
}

.menu-section > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
}

.menu-heading h2 {
  max-width: 850px;
}

.text-link {
  border-bottom: 2px solid var(--red);
  color: var(--red);
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 8px 0;
  text-transform: uppercase;
}

.signature-panel {
  background: var(--red-dark);
  color: white;
  display: grid;
  gap: clamp(28px, 4vw, 60px);
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.5fr);
  margin-bottom: 22px;
  padding: clamp(30px, 4vw, 58px);
}

.signature-panel .eyebrow {
  color: var(--sand);
}

.signature-intro p:last-child {
  color: rgba(255, 255, 255, 0.76);
  margin-bottom: 0;
}

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

.signature-grid > div {
  border-left: 1px solid var(--white-line);
  border-top: 1px solid var(--white-line);
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto;
  padding: 22px;
}

.signature-grid > div:nth-child(-n + 2) {
  border-top: 0;
}

.signature-grid strong {
  font-size: 1.02rem;
}

.signature-grid span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.83rem;
  grid-column: 1 / -1;
}

.signature-grid b {
  color: var(--sand);
  font-size: 0.9rem;
  grid-column: 2;
  grid-row: 1;
}

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

.menu-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  min-height: 235px;
  padding: 28px;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.menu-card:hover {
  box-shadow: 0 18px 42px rgba(61, 37, 23, 0.11);
  transform: translateY(-3px);
}

.menu-card-featured {
  background: var(--green);
  color: white;
}

.menu-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.menu-card-featured p,
.menu-card-featured .price-list {
  color: white;
}

.menu-tag {
  color: var(--sand);
  display: inline-block;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 34px;
  text-transform: uppercase;
}

.menu-price {
  color: var(--red) !important;
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.07em;
  margin-bottom: 18px !important;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
}

.price-list li {
  align-items: center;
  border-top: 1px solid var(--white-line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding-top: 12px;
}

.menu-visuals {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.menu-visuals a {
  background: var(--sand);
  border: 1px solid var(--line);
  overflow: hidden;
}

.menu-visuals img {
  height: 100%;
  object-fit: contain;
  transition: transform 300ms ease;
  width: 100%;
}

.menu-visuals a:hover img {
  transform: scale(1.015);
}

.order-section {
  align-items: center;
  background:
    radial-gradient(circle at 8% 88%, rgba(215, 154, 43, 0.16), transparent 24rem),
    var(--green-dark);
  color: white;
  display: grid;
  gap: clamp(38px, 7vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  max-width: none;
}

.order-section > * {
  max-width: 680px;
}

.order-copy {
  justify-self: end;
}

.order-copy .eyebrow {
  color: var(--sand);
}

.order-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  margin: 24px 0 32px;
  max-width: 620px;
}

.order-steps {
  counter-reset: none;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0 0 34px;
  padding: 0;
}

.order-steps li {
  align-items: center;
  border-top: 1px solid var(--white-line);
  display: flex;
  font-size: 0.83rem;
  font-weight: 700;
  gap: 12px;
  min-height: 76px;
  padding: 12px 14px 12px 0;
}

.order-steps li:nth-child(even) {
  padding-left: 18px;
}

.order-steps span {
  align-items: center;
  border: 1px solid var(--sand);
  border-radius: 50%;
  color: var(--sand);
  display: inline-flex;
  flex: 0 0 auto;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.btn-whatsapp {
  background: #1f9d55;
  color: white;
}

.btn-whatsapp:hover {
  background: #178548;
}

.order-poster {
  background: var(--cream);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  justify-self: start;
  padding: 12px;
}

.order-poster img {
  height: auto;
  width: 100%;
}

.gallery-section {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.gallery-heading {
  padding-bottom: 50px;
}

.gallery-heading h2 {
  max-width: 920px;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 260px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.gallery-grid figure {
  grid-column: span 4;
  margin: 0;
  min-height: 0;
  overflow: hidden;
}

.gallery-grid .gallery-wide {
  grid-column: span 8;
}

.gallery-grid .gallery-tall {
  grid-row: span 2;
}

.gallery-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
  width: 100%;
}

.gallery-grid figure:hover img {
  transform: scale(1.025);
}

.business-section {
  align-items: stretch;
  background: var(--red-dark);
  color: white;
  display: grid;
  gap: 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  max-width: none;
  padding: 0;
}

.business-photo {
  min-height: 620px;
}

.business-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.business-copy {
  align-self: center;
  max-width: 700px;
  padding: clamp(68px, 8vw, 128px);
}

.business-copy .eyebrow {
  color: var(--sand);
}

.business-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  margin: 24px 0;
}

.check-list {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 30px 0 36px;
  padding: 0;
}

.check-list li {
  border-top: 1px solid var(--white-line);
  font-weight: 700;
  padding: 14px 0 0 28px;
  position: relative;
}

.check-list li::before {
  color: var(--sand);
  content: "✓";
  left: 0;
  position: absolute;
}

.btn-light {
  background: var(--cream);
  color: var(--red-dark);
}

.location-section {
  align-items: center;
  display: grid;
  gap: clamp(40px, 7vw, 110px);
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
}

.location-copy {
  max-width: 560px;
}

.location-copy address {
  border-left: 4px solid var(--red);
  display: grid;
  font-style: normal;
  gap: 2px;
  margin: 32px 0;
  padding-left: 20px;
}

.location-copy address strong {
  font-size: 1.12rem;
  margin-bottom: 5px;
}

.contact-list {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 18px 0;
}

.contact-list a + a {
  border-top: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-list strong {
  font-size: 1rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-button {
  align-items: center;
  border: 1px solid var(--line);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 800;
  gap: 9px;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-transform: uppercase;
}

.instagram-button {
  color: #c72a6b;
}

.facebook-button {
  color: #1877f2;
}

.local-map {
  background: var(--sand);
  border: 1px solid var(--line) !important;
  box-shadow: var(--shadow);
  min-height: 520px;
  width: 100%;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: white;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto 1fr;
  padding: 28px clamp(20px, 5vw, 80px);
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 13px;
}

.footer-brand img {
  border-radius: 50%;
  height: 54px;
  object-fit: cover;
  width: 54px;
}

.footer-brand div {
  display: grid;
}

.footer-brand strong {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-brand span,
.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sticky-whatsapp {
  background: #1f9d55;
  border: 2px solid white;
  border-radius: 999px;
  bottom: 18px;
  box-shadow: 0 16px 38px rgba(14, 91, 48, 0.3);
  color: white;
  display: none;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 14px 19px;
  position: fixed;
  right: 18px;
  z-index: 45;
}

@keyframes hero-image-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

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

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(220px, 0.52fr);
  }

  .hero-content {
    grid-column: 1 / -1;
    max-width: 850px;
    padding-left: 0;
  }

  h1 {
    font-size: clamp(4.4rem, 9vw, 7rem);
  }

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

  .order-section {
    grid-template-columns: 1fr 0.8fr;
  }

  .business-copy {
    padding: clamp(58px, 6vw, 90px);
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .header-social {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .main-nav {
    align-content: start;
    background: var(--cream);
    border-top: 1px solid var(--line);
    display: grid;
    gap: 0;
    inset: var(--header-height) 0 auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 clamp(20px, 5vw, 48px);
    pointer-events: none;
    position: fixed;
    transform: translateY(-12px);
    transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    box-shadow: 0 20px 36px rgba(54, 35, 24, 0.12);
    max-height: calc(100vh - var(--header-height));
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .section-heading-wide {
    align-items: flex-start;
    flex-direction: column;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-grid article {
    min-height: 0;
  }

  .benefit-grid article + article {
    border-left: 1px solid var(--line);
    border-top: 0;
  }

  .benefit-number {
    margin-bottom: 28px;
  }

  .signature-panel,
  .order-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .order-copy,
  .order-poster {
    justify-self: stretch;
    max-width: none;
  }

  .order-poster {
    margin: 0 auto;
    max-width: 660px;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .business-section {
    grid-template-columns: 1fr;
  }

  .business-photo {
    min-height: 440px;
  }

  .business-copy {
    max-width: 820px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p {
    display: none;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .site-header {
    gap: 12px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand img {
    height: 50px;
    width: 50px;
  }

  .brand span {
    font-size: 1.45rem;
  }

  .hero {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: calc(var(--header-height) + 18px) 0 58px;
  }

  .hero-main-photo {
    border-left: 0;
    border-right: 0;
    box-shadow: none;
    grid-column: 1;
    margin: 0 16px;
  }

  .hero-main-photo img {
    object-fit: contain;
  }

  .hero-side-photo {
    display: none;
  }

  .hero-content {
    grid-column: 1;
    padding: 40px 22px 0;
  }

  .hero-content .eyebrow {
    line-height: 1.5;
  }

  h1 {
    font-size: clamp(3.5rem, 16vw, 5rem);
  }

  h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
  }

  h3 {
    font-size: 1.8rem;
  }

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

  .service-list {
    margin-top: 28px;
  }

  .section {
    padding: 72px 20px;
  }

  .menu-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .menu-grid,
  .signature-grid,
  .menu-visuals,
  .order-steps {
    grid-template-columns: 1fr;
  }

  .signature-panel {
    padding: 30px 22px;
  }

  .signature-grid > div,
  .signature-grid > div:nth-child(-n + 2) {
    border-left: 0;
    border-top: 1px solid var(--white-line);
    padding-left: 0;
    padding-right: 0;
  }

  .order-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .order-steps li:nth-child(even) {
    padding-left: 0;
  }

  .gallery-heading {
    padding-left: 20px;
    padding-right: 20px;
  }

  .gallery-grid {
    display: grid;
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }

  .gallery-grid figure,
  .gallery-grid .gallery-wide,
  .gallery-grid .gallery-tall {
    grid-column: 1;
    grid-row: auto;
  }

  .gallery-grid img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-fit: cover;
  }

  .gallery-grid .gallery-tall img,
  .gallery-grid figure:nth-child(4) img {
    aspect-ratio: 4 / 5;
  }

  .business-photo {
    min-height: 340px;
  }

  .business-copy {
    padding: 72px 20px;
  }

  .location-section {
    gap: 44px;
  }

  .local-map {
    min-height: 360px;
  }

  .site-footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

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

  .sticky-whatsapp {
    display: inline-flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

