/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body { margin: 0; }
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
input, textarea, select { font: inherit; }
fieldset { border: none; margin: 0; padding: 0; }
legend { padding: 0; }

/* ---------- Design tokens ---------- */
:root {
  --black: #141110;
  --charcoal: #1d1917;
  --cream: #f4f2ed;
  --cream-dim: #e9e5dc;
  --ink: #1a1613;
  --ink-soft: #52493f;
  --gold: #b3ada0;
  --gold-deep: #8a8477;
  --gold-light: #e2ddd0;
  --line-dark: rgba(179, 173, 160, 0.35);
  --line-light: rgba(26, 22, 19, 0.12);

  --font-display: 'Frank Ruhl Libre', Georgia, serif;
  --font-body: 'Heebo', Arial, sans-serif;

  --container: 1180px;
  --radius: 3px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.skip-link {
  position: absolute;
  right: -999px;
  top: 0;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus { right: 1rem; top: 1rem; }

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

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), gap .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); gap: 0.85rem; }
.btn .icon { width: 1.1em; height: 1.1em; fill: currentColor; }
.icon-arrow { stroke: currentColor; fill: none; }

.btn-cta { background: var(--gold); color: var(--black); }
.btn-cta:hover { background: var(--gold-light); }

.btn-cta-ghost { background: transparent; color: var(--cream); border-color: rgba(250,246,238,0.4); }
.btn-cta-ghost:hover { border-color: var(--gold); color: var(--gold-light); }


.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 60;
  padding-block: 1.25rem;
  background: var(--black);
  transition: box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  padding-block: 0.65rem;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; }
.brand-logo {
  height: 68px;
  width: auto;
  transition: height .35s var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 48px; }

.main-nav ul { display: flex; gap: 2rem; }
.nav-link {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding-block: 0.25rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.nav-link::after {
  content: '';
  position: absolute;
  inset-inline: 0;
  bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .3s var(--ease);
}
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,238,0.3);
  color: var(--cream);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.header-icon-link:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
.header-icon-link .icon { width: 1.2rem; height: 1.2rem; fill: currentColor; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid rgba(250,246,238,0.35);
  border-radius: var(--radius);
}
.nav-toggle-bar { display: block; width: 20px; height: 2px; margin-inline: auto; background: var(--cream); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-backdrop { position: fixed; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none; transition: opacity .3s var(--ease); z-index: 55; }
.nav-backdrop.is-visible { opacity: 1; pointer-events: auto; }

/* ---------- Hero (bright editorial, framed photo) ---------- */
.hero { position: relative; background: var(--cream); overflow: clip; }
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  padding-block: 9rem 5rem;
}
.hero-copy { max-width: 620px; }
.eyebrow {
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
  font-weight: 700;
  margin: 0 0 1.5rem;
}
.hero-title {
  font-family: var(--font-body);
  font-weight: 900;
  color: var(--ink);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1.75rem;
}
.hero-title-accent { color: var(--gold-deep); }
.hero-text { max-width: 46ch; color: var(--ink-soft); font-size: 1.08rem; margin: 0 0 2rem; }
.hero-signature {
  display: block;
  width: 250px;
  height: auto;
  margin-block: 0 2rem;
  margin-inline: auto 0;
  transform: rotate(-2deg);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.btn-cta-ghost-dark { background: transparent; color: var(--ink); border-color: rgba(26,22,19,0.3); }
.btn-cta-ghost-dark:hover { border-color: var(--gold-deep); background: var(--ink); color: var(--cream); }

.hero-media { position: relative; }
.hero-media::before {
  content: '';
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1.5px solid var(--gold);
  border-radius: 18px;
  z-index: 0;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/3.7;
  object-fit: cover;
  object-position: 100% 12%;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(26,22,19,0.22);
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.hero-anim > * { opacity: 0; transform: translateY(22px); animation: heroIn .85s var(--ease) forwards; }
.hero-anim > *:nth-child(1) { animation-delay: .05s; }
.hero-anim > *:nth-child(2) { animation-delay: .2s; }
.hero-anim > *:nth-child(3) { animation-delay: .38s; }
.hero-anim > *:nth-child(4) { animation-delay: .54s; }
.hero-anim > *:nth-child(5) { animation-delay: .68s; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---------- Stats (inline editorial line) ---------- */
.stats { background: var(--black); padding-block: 2.25rem; }
.stats-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: var(--cream);
  font-size: 1rem;
}
.stats-item strong { color: var(--gold-light); font-family: var(--font-body); font-size: 1.25rem; font-weight: 800; margin-inline-end: 0.35em; }
.stats-rule { width: 4px; height: 4px; border-radius: 50%; background: var(--gold-deep); }

/* ---------- Section heads ---------- */
.section-eyebrow { color: var(--gold-deep); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.8rem; font-weight: 700; margin: 0 0 0.9rem; }
.section-title { font-family: var(--font-body); font-weight: 900; font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 1.25rem; }
.section-title-light { color: var(--cream); }
.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head-center { max-width: 620px; margin-inline: auto; text-align: center; }

/* ---------- About ---------- */
.about { background: var(--cream); padding-block: 7rem; }
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4.5rem; align-items: center; }
.about-media { position: relative; padding: 0 2rem 2.5rem 0; }
.about-portrait {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3.6;
  object-fit: cover;
  border: 6px solid var(--cream);
  outline: 1px solid var(--line-light);
  box-shadow: 0 20px 45px rgba(26,22,19,0.16);
  transform: rotate(-2deg);
}
.about-accent {
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 58%;
  border-radius: 2px;
  border: 8px solid var(--cream-dim);
  box-shadow: 0 16px 32px rgba(26,22,19,0.24);
  transform: rotate(4deg);
}
.about-text { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 1.25rem; max-width: 60ch; }
.about-signature { font-family: var(--font-body); font-weight: 900; font-size: 1.5rem; color: var(--gold-deep); margin-top: 1.5rem; }

.seal {
  position: absolute;
  bottom: -1.5rem;
  inset-inline-end: -1.75rem;
  width: 190px;
  height: 190px;
  z-index: 3;
  overflow: hidden;
  border-radius: 50%;
  filter: drop-shadow(0 12px 24px rgba(26,22,19,0.35));
}
.seal-ring { position: absolute; inset: 0; width: 100%; height: 100%; animation: sealSpin 28s linear infinite; }
.seal-text { font-family: var(--font-body); font-size: 8.5px; font-weight: 700; letter-spacing: 1px; fill: var(--gold-deep); }
.seal-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  height: 62%;
  border-radius: 50%;
}
@keyframes sealSpin { to { transform: rotate(360deg); } }

/* ---------- Menus: tile grid ---------- */
.menus { background: var(--black); padding-block: 6rem 16rem; }
.menus .section-eyebrow { color: var(--gold-light); }
.menus-lead { color: rgba(250,246,238,0.68); font-size: 1rem; margin-top: -0.5rem; }
.menus-title-fade {
  transform: scale(0.92);
  filter: blur(16px);
  transition: opacity 1.6s ease-out, filter 1.6s ease-out, transform 1.6s ease-out;
}
.menus-title-fade.is-visible { opacity: 1; filter: blur(0); transform: scale(1); }
.menus .section-title { color: var(--cream); }

.menu-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.menu-tile {
  position: relative;
  aspect-ratio: 3/4;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  padding: 0;
}
.menu-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s var(--ease);
}
.menu-tile:hover img { transform: scale(1.06); }
.menu-tile-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20,17,16,0.92) 0%, rgba(20,17,16,0.25) 55%, rgba(20,17,16,0.05) 100%);
}
.menu-tile-label {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 1.25rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
}
.menu-tile-title { font-family: var(--font-body); font-weight: 800; font-size: 1.15rem; color: var(--cream); }
.menu-tile-zoom {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(250,246,238,0.4);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.menu-tile-zoom .icon { width: 1.05rem; height: 1.05rem; }
.menu-tile:hover .menu-tile-zoom { background: var(--gold); border-color: var(--gold); color: var(--black); }
.menu-tile.reveal {
  transform: translateY(36px) scale(0.93);
  transition: opacity .7s cubic-bezier(.22,1.24,.4,1), transform .7s cubic-bezier(.22,1.24,.4,1);
}
.menu-tile.reveal.is-visible { transform: none; }
.menu-tile:nth-child(1) { transition-delay: 0s; }
.menu-tile:nth-child(2) { transition-delay: .12s; }
.menu-tile:nth-child(3) { transition-delay: .24s; }
.menu-tile:nth-child(4) { transition-delay: .36s; }

/* ---------- Scroll gallery (between about and menus) ---------- */
.scroll-gallery {
  position: relative;
  z-index: 8;
  direction: ltr;
  margin-block: -156px;
  padding-block: 4.5rem;
  padding-inline: 2.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.scroll-gallery-track {
  display: flex;
  direction: ltr;
  align-items: center;
  gap: 1.75rem;
  width: max-content;
  will-change: transform;
}
.scroll-gallery-item {
  direction: rtl;
  flex: 0 0 auto;
  width: 240px;
  height: 168px;
  border-radius: 0;
  background: var(--cream);
  border: 1px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 22px 45px rgba(0,0,0,0.4);
}
.scroll-gallery-item .icon { width: 2rem; height: 2rem; opacity: 0.6; }

/* ---------- Reviews ---------- */
.reviews { background: var(--cream); padding-block: 12rem 6rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: var(--cream-dim);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { color: var(--gold-deep); letter-spacing: 0.15em; font-size: 0.95rem; }
.review-text { color: var(--ink-soft); font-size: 0.98rem; flex: 1; }
.review-name { font-weight: 700; color: var(--ink); font-size: 0.9rem; }

/* ---------- Contact ---------- */
.contact {
  background:
    linear-gradient(rgba(20,17,16,0.9), rgba(20,17,16,0.94)),
    url("../assets/images/wood-bg.jpg") center/cover no-repeat;
  color: var(--cream);
  padding-block: 6rem;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-text { color: rgba(250,246,238,0.75); max-width: 42ch; margin-bottom: 2rem; }
.contact-list { display: flex; flex-direction: column; gap: 1rem; }
.contact-list li { display: flex; align-items: center; gap: 1rem; padding-block: 0.9rem; border-bottom: 1px solid var(--line-dark); }
.contact-list-label { min-width: 5.5rem; color: var(--gold-light); font-weight: 700; }
.contact-list-link { text-decoration: none; font-size: 1.05rem; }
.contact-icon-link {
  margin-inline-start: auto;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  color: var(--gold-light);
  transition: background-color .25s var(--ease), color .25s var(--ease);
}
.contact-icon-link .icon { width: 1.05rem; height: 1.05rem; }
.contact-icon-link:hover { background: var(--gold); color: var(--black); }

.contact-form { background: var(--charcoal); border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 2rem; display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label, .type-switch legend { font-size: 0.85rem; color: rgba(250,246,238,0.7); }
.form-row input, .form-row textarea {
  background: var(--black);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  color: var(--cream);
}
.form-row input:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { resize: vertical; }
.form-status { min-height: 1.2em; font-size: 0.85rem; color: var(--gold-light); margin: 0; }

.type-switch-options { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.3rem; }
.type-switch input[type="radio"] { position: absolute; opacity: 0; width: 1px; height: 1px; }
.type-switch label {
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  font-size: 0.85rem;
  color: rgba(250,246,238,0.75);
  transition: background-color .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.type-switch input[type="radio"]:checked + label { background: var(--gold); color: var(--black); border-color: var(--gold); }
.type-switch input[type="radio"]:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); color: rgba(250,246,238,0.75); padding-block: 3rem; border-top: 1px solid var(--line-dark); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-logo { height: 58px; opacity: 0.92; }
.footer-tagline { letter-spacing: 0.1em; text-transform: uppercase; font-size: 0.75rem; color: var(--gold-deep); margin: 0; }
.footer-nav { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-nav a { text-decoration: none; font-size: 0.9rem; }
.footer-nav a:hover { color: var(--gold-light); }
.footer-copy { font-size: 0.8rem; margin: 0; opacity: 0.6; }

/* ---------- Floating actions ---------- */
.fab-whatsapp {
  position: fixed; bottom: 1.5rem; inset-inline-end: 1.5rem;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35); z-index: 50;
  transition: transform .25s var(--ease);
}
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp .icon { width: 1.7rem; height: 1.7rem; fill: currentColor; }

.back-to-top {
  position: fixed; bottom: 1.5rem; inset-inline-start: 1.5rem;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--black); border: none;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  z-index: 50;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top .icon { width: 1.3rem; height: 1.3rem; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; background: rgba(10,8,7,0.95); display: flex; align-items: center; justify-content: center; padding: 2rem; z-index: 100; overflow: auto; }
.lightbox[hidden] { display: none; }
.lightbox-gallery { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: center; max-width: 100%; }
.lightbox-gallery img { max-width: 100%; max-height: 88vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-gallery.is-pair img { max-width: min(48vw, 640px); }
.lightbox-close {
  position: absolute; top: 1.25rem; inset-inline-end: 1.25rem;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(250,246,238,0.1); color: var(--cream); border: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-close:hover { background: var(--gold); color: var(--black); }
.lightbox-close .icon { width: 1.2rem; height: 1.2rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .about-grid { grid-template-columns: 1fr; }
  .about { padding-block: 5rem; }
  .about-media { max-width: 440px; margin-inline: auto; padding-inline-end: 0; }
  .seal { width: 150px; height: 150px; bottom: -1rem; inset-inline-end: -0.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .reviews { padding-block: 7rem 4rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 420px; margin: 0 auto 2rem; }
  .hero-media::before { inset: 1rem -0.85rem -0.85rem 1rem; }
}

@media (max-width: 760px) {
  .header-inner { position: relative; justify-content: flex-end; }
  .brand { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
  .brand-logo { height: 78px; }
  .site-header.is-scrolled .brand-logo { height: 58px; }

  .main-nav {
    position: fixed; top: 0; inset-inline-end: 0; height: 100vh; width: min(78vw, 320px);
    background: var(--black); border-inline-start: 1px solid var(--line-dark);
    padding: 6rem 2rem 2rem; transform: translateX(-100%); transition: transform .35s var(--ease); z-index: 58;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 1.5rem; }
  .nav-toggle { display: flex; }
  .header-icon-link { width: 38px; height: 38px; }
  .header-icon-link .icon { width: 1.1rem; height: 1.1rem; }

  .hero-inner { padding-block: 7rem 3rem; }
  .hero-copy { max-width: 100%; }

  .stats-line { gap: 0.75rem; font-size: 0.9rem; }

  .menus { padding-block: 4rem 10.5rem; }
  .menu-tiles { grid-template-columns: repeat(2, 1fr); }

  .scroll-gallery { margin-block: -104px; padding-block: 3rem; padding-inline: 1.5rem; }
  .scroll-gallery-item { width: 160px; height: 112px; gap: 0.35rem; font-size: 0.75rem; border-radius: 0; }
  .scroll-gallery-item .icon { width: 1.4rem; height: 1.4rem; }
  .lightbox-gallery.is-pair img { max-width: 100%; }
  .fab-whatsapp { width: 50px; height: 50px; bottom: 1rem; inset-inline-end: 1rem; }
  .back-to-top { width: 42px; height: 42px; bottom: 1rem; inset-inline-start: 1rem; }
}
