/* ─── tokens ─────────────────────────────────────────────── */
:root {
  --cream: #f4efe6;
  --ink:   #171412;
  --red:   #d82b23;
  --gold:  #c79833;
  --green: #31633e;
  --line:  rgba(23, 20, 18, .18);
  --f:     "Truculenta", "Trebuchet MS", Arial, sans-serif;
  --wdth:  85;
}

/* ─── reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: clip; scroll-behavior: smooth; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }
section[id], footer[id] { scroll-margin-top: 100px; }
body { background: var(--cream); color: var(--ink); font-family: var(--f); font-size: 17px; line-height: 1.5; overflow-x: clip; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; }
a, button, [role="button"] {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
a:focus,
button:focus { outline: none; }
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
table { border-collapse: collapse; width: 100%; }
.sr-only { clip: rect(0 0 0 0); clip-path: inset(50%); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }

/* ─── typography ─────────────────────────────────────────── */
h1, h2, h3 {
  font-family: var(--f);
  font-variation-settings: "wdth" var(--wdth);
  font-weight: 800;
  letter-spacing: .01em;
  line-height: .92;
  text-transform: uppercase;
}
h1 { font-size: clamp(52px, 5.5vw, 80px); }
h2 { font-size: clamp(36px, 4vw, 60px); }

.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* ─── shared components ──────────────────────────────────── */
.gold-line {
  background: var(--gold);
  height: 3px;
  margin: 18px 0 22px;
  width: 100%;
}
.heading-accent { display: inline-block; }

.btn-primary {
  background: var(--red);
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 14px 22px;
  text-transform: uppercase;
}
.btn-outline-ink {
  border: 2px solid var(--ink);
  color: var(--ink);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 12px 22px;
  text-transform: uppercase;
}
.btn-order {
  background: var(--ink);
  border: 2px solid var(--ink);
  color: var(--cream);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 12px 22px;
  text-align: center;
  text-transform: uppercase;
}
/* hero-specific: uniform height and min-width across all three buttons */
.btn-hero {
  background: var(--red);
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  min-width: 180px;
  padding: 14px 18px;
  text-align: center;
  text-transform: uppercase;
}
.btn-hero--outline {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 12px 18px;
}
.btn-hero.btn-order {
  background: var(--ink);
  border: 2px solid var(--ink);
  color: var(--cream);
  padding: 12px 18px;
}
.btn-outline-white {
  border: 1px solid rgba(255,255,255,.7);
  color: #fff;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 12px 22px;
  text-transform: uppercase;
}
.text-link {
  border-bottom: 1px solid currentColor;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  padding-bottom: 4px;
}
.whatsapp-link {
  border-bottom: 1px solid currentColor;
  color: var(--green);
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding-bottom: 4px;
}

/* ─── header ─────────────────────────────────────────────── */
.site-header {
  align-items: center;
  background: var(--cream);
  display: flex;
  height: 100px;
  isolation: isolate;
  left: 0;
  padding: 0 4vw;
  position: fixed;
  right: 0;
  top: 0;
  transition: background .6s cubic-bezier(.4,0,.2,1), height .6s cubic-bezier(.4,0,.2,1);
  z-index: 20;
}
.site-header::after {
  background: linear-gradient(90deg, var(--red), var(--gold));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: auto;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  transition: transform .12s linear;
  width: 100%;
  opacity: clamp(0, calc(var(--scroll-progress, 0) * 10), 1);
  z-index: 1;
}
.site-header::before {
  background: transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}
.site-header.scrolled {
  background: var(--cream);
}
.site-header.scrolled::before { display: block; }

.brand {
  display: block;
  flex: 0 0 auto;
  height: 100px;
  margin-left: 0;
  overflow: visible;
  position: relative;
  transition: height .6s cubic-bezier(.4,0,.2,1), margin-left .6s cubic-bezier(.4,0,.2,1);
  width: 190px;
  z-index: 2;
}
.brand::before {
  display: none;
}
/* scrolled: 88px wide = exactly 110px tall (1.25 ratio), full logo fits, "R" aligns to 4vw */
.site-header.scrolled .brand {
  height: 110px;
  margin-left: -37px;
  overflow: hidden;
}
.site-header.scrolled .brand::before { opacity: 0; }

.brand img {
  height: auto;
  left: 0;
  position: absolute;
  top: 8px;
  transition: width .6s cubic-bezier(.4,0,.2,1), top .6s cubic-bezier(.4,0,.2,1);
  width: 150px;
  z-index: 1;
}
.site-header.scrolled .brand img {
  top: 0;
  width: 88px;
}

.main-nav {
  display: flex;
  flex: 1;
  gap: clamp(20px, 3.5vw, 56px);
  justify-content: center;
  position: relative;
  z-index: 2;
}
.main-nav a {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .03em;
  position: relative;
  text-shadow: none;
  transition: color .35s ease;
}
.site-header.scrolled .main-nav a { color: var(--ink); text-shadow: none; }
.main-nav a::after {
  background: var(--red);
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
  width: 100%;
}
.main-nav a:hover::after { transform: scaleX(1); }

.mobile-action-bar { display: none; }

.header-actions { align-items: center; display: flex; gap: 22px; position: relative; z-index: 2; }
.language-toggle { align-items: center; display: inline-flex; font-size: 13px; gap: 4px; padding: 6px 0; }
.language-toggle--mobile { display: none; }
.language-option { color: rgba(23, 20, 18, .72); transition: color .35s ease; }
.language-option.active { color: var(--gold); font-weight: 700; }
.site-header.scrolled .language-option { color: rgba(23, 20, 18, .72); }
.site-header.scrolled .language-option.active { color: var(--gold); }
.language-divider { color: rgba(23, 20, 18, .45); transition: color .35s ease; }
.site-header.scrolled .language-divider { color: rgba(23, 20, 18, .45); }
.menu-toggle { display: none; height: 28px; padding: 4px; position: relative; width: 28px; }
.menu-toggle::before,
.menu-toggle::after {
  border-top: 2px solid var(--ink);
  content: "";
  left: 0;
  position: absolute;
  transition: border-color .35s ease;
  width: 22px;
}
.menu-toggle::before { top: 7px; }
.menu-toggle::after  { top: 15px; }
.site-header.scrolled .menu-toggle::before,
.site-header.scrolled .menu-toggle::after { border-top-color: var(--ink); }
.order-dropdown {
  position: relative;
}
.order-button {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: var(--cream);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 11px 20px;
  text-transform: uppercase;
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}
.site-header.scrolled .order-button {
  background: var(--ink);
  border-color: transparent;
  color: var(--cream);
}
.order-menu {
  background: var(--ink);
  box-shadow: 0 10px 24px rgba(23, 20, 18, .18);
  display: none;
  min-width: 170px;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  white-space: nowrap;
  z-index: 30;
}
.order-menu.open { display: block; }
.order-menu a {
  color: var(--cream);
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 12px 20px;
  text-transform: uppercase;
  transition: background .15s;
}
.order-menu a:hover { background: rgba(255,255,255,.1); }

/* stacked order CTA in menu section */
.menu-order-cta .btn-order {
  display: inline-block;
  margin-top: 10px;
  text-align: center;
}

/* ─── hero ───────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: minmax(340px, 38%) 1fr;
  height: clamp(470px, 26.9vw, 510px);
  overflow: hidden;
  position: relative;
}
.hero::before {
  display: none;
}
.hero-copy {
  align-self: center;
  max-width: 560px;
  padding: 130px 5vw 50px 4vw;
  position: relative;
  transform: translateY(32px);
  z-index: 2;
}
.hero-sub {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 16px;
  max-width: 320px;
}
.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.hero-image {
  background: var(--cream);
  inset: 0 0 0 28%;
  overflow: hidden;
  position: absolute;
  z-index: 0;
}
.hero-image img {
  height: 100%;
  margin-top: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.hero-image::after {
  background: linear-gradient(90deg,
    var(--cream) 0%,
    rgba(244,239,230,.9) 12%,
    rgba(244,239,230,.45) 30%,
    rgba(244,239,230,.12) 44%,
    transparent 58%
  );
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

/* ─── location strip ─────────────────────────────────────── */
.location-strip {
  align-items: center;
  background: #fffdf8;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  gap: 20px;
  justify-content: center;
  letter-spacing: .12em;
  padding: 13px 4vw;
  text-transform: uppercase;
}
.ls-item { align-items: center; display: flex; gap: 10px; }
.ls-icon {
  color: var(--gold);
  display: block;
  flex: 0 0 auto;
  height: 16px;
  width: 16px;
}
.ls-sep { color: var(--gold); font-size: 16px; line-height: 1; opacity: .45; }
.ls-hours { align-items: center; display: flex; gap: 12px; }
.ls-hours-group { align-items: baseline; display: inline-flex; gap: 7px; }
.ls-hours-slot { align-items: baseline; display: inline-flex; gap: 7px; }
.ls-hours-day { color: var(--ink); display: inline-flex; gap: .35em; letter-spacing: .1em; }
.ls-hours-time { color: rgba(23,20,18,.6); letter-spacing: .06em; }

/* ─── ritmo section ──────────────────────────────────────── */
.ritmo-section {
  display: grid;
  gap: 0 6vw;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.7fr);
  padding: 72px 4vw;
}
.ritmo-copy {
  align-self: start;
  max-width: 560px;
  padding-top: 96px;
}
.ritmo-copy p {
  font-size: 16px;
  line-height: 1.55;
  max-width: 380px;
}

/* ─── banco (menu) section ───────────────────────────────── */
.banco-section {
  background: #fffdf8;
  margin: 0;
  padding: 48px 4vw 80px;
  scroll-margin-top: 100px;
}
.banco-header { margin-bottom: 36px; }
.banco-intro {
  color: rgba(23, 20, 18, .55);
  font-size: 16px;
  margin-top: 0;
  max-width: 480px;
}

/* menu text layout */
.menu-sections {
  display: grid;
  gap: 0 6vw;
  grid-template-columns: 1fr 1fr 280px;
}
.menu-col { display: flex; flex-direction: column; gap: 52px; }
.menu-col--narrow { gap: 40px; }

.menu-section-title {
  border-bottom: 3px solid var(--gold);
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1;
  margin-bottom: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
}
.menu-list {
  list-style: none;
}
.menu-list li {
  align-items: flex-start;
  display: flex;
  font-size: 17px;
  gap: 12px;
  justify-content: space-between;
  padding: 12px 0;
}
.menu-list li span:first-child { flex: 1; line-height: 1.35; }
.menu-list li span:last-child {
  color: var(--gold);
  flex: 0 0 auto;
  font-weight: 700;
  letter-spacing: .02em;
  min-width: 48px;
  text-align: right;
}
.menu-list--compact li {
  align-items: baseline;
  display: grid;
  font-size: 15px;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 48px 48px;
  padding: 8px 0;
}
.menu-list--compact li span:first-child {
  min-width: 0;
  white-space: nowrap;
}
.menu-list--compact li span:nth-child(2) {
  color: rgba(23, 20, 18, .68);
  font-size: 13px;
  text-align: right;
}
.menu-item-copy { flex: 1; }
.menu-item-name {
  display: block;
  font-weight: 800;
  line-height: 1.35;
}
.menu-item-description {
  color: rgba(23, 20, 18, .68);
  font-size: 15px;
  line-height: 1.4;
  margin-top: 4px;
}
.menu-item--featured > span:last-child { padding-top: 1px; }

.menu-order-cta {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 28px;
  text-align: center;
}
/* ─── gallery bento ──────────────────────────────────────── */
.gallery-bento {
  display: grid;
  gap: 6px;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 170px 130px 130px;
}
.gallery-item {
  border: 0;
  cursor: pointer;
  display: block;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  width: 100%;
}
.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.07);
}
.gi-caption {
  background: linear-gradient(transparent, rgba(23,20,18,.72));
  bottom: 0;
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  left: 0;
  letter-spacing: .12em;
  opacity: 0;
  padding: 32px 14px 12px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
  transition: opacity .3s ease;
}
.gallery-item:hover .gi-caption,
.gallery-item:focus-visible .gi-caption {
  opacity: 1;
}
.gallery-open-icon { display: none; }
/* Curated five-image gallery: one lead image, two portrait details, and two teglia tiles. */
.gi-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.gi-2 { grid-column: 3; grid-row: 1; }
.gi-3 { grid-column: 3; grid-row: 2; }
.gi-4 { grid-column: 1; grid-row: 3; }
.gi-5 { grid-column: 2 / 4; grid-row: 3; }
.gi-1 img { object-position: center center; }
.gi-2 img { object-position: center 45%; }
.gi-3 img { object-position: center 45%; }
.gi-4 img { object-position: center center; }
.gi-5 img { object-position: center center; }

/* ─── lightbox ───────────────────────────────────────────── */
.lightbox {
  align-items: center;
  background: rgba(23,20,18,.92);
  display: none;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 100;
}
.lightbox.open {
  display: flex;
}
.lightbox-inner {
  max-height: 90dvh;
  max-width: 90dvw;
  position: relative;
}
.lightbox-inner img {
  display: block;
  max-height: 84dvh;
  max-width: 88dvw;
  object-fit: contain;
}
.lightbox-caption {
  color: var(--cream);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-top: 14px;
  text-align: center;
  text-transform: uppercase;
}
.lightbox-close {
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  padding: 8px;
  position: absolute;
  right: -44px;
  top: -44px;
}
.lightbox-arrow {
  background: none;
  border: 0;
  color: var(--cream);
  cursor: pointer;
  font-size: 32px;
  line-height: 1;
  padding: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
}
.lightbox-arrow--prev { left: -60px; }
.lightbox-arrow--next { right: -60px; }

/* ─── news strip ─────────────────────────────────────────── */
.news-strip {
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 22px 4vw;
}
.news-headline {
  font-family: var(--f);
  font-variation-settings: "wdth" var(--wdth);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.news-body {
  flex: 1;
  font-size: 16px;
}
.news-link {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.news-link:hover { text-decoration: underline; }

/* ─── courses section ────────────────────────────────────── */
.courses-section {
  background: var(--red);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  min-height: 440px;
}
.courses-img { overflow: hidden; }
.courses-img img { height: 100%; object-fit: cover; width: 100%; }
.courses-copy {
  align-self: center;
  padding: 72px 48px;
  text-align: center;
}
.courses-copy .eyebrow {
  color: rgba(244,239,230,.72);
  letter-spacing: .16em;
  margin-bottom: 16px;
}
.courses-copy h2 {
  color: var(--cream);
  font-size: clamp(36px, 3.4vw, 56px);
  line-height: .9;
  margin-bottom: 22px;
}
.courses-copy > p {
  color: rgba(244,239,230,.86);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}

/* ─── footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 58px 8vw 20px;
}
.footer-main {
  display: grid;
  gap: 36px 5vw;
  grid-template-columns: minmax(180px, 1.35fr) minmax(150px, 1fr) minmax(190px, 1.25fr) auto;
  padding-bottom: 54px;
}
.footer-intro { align-self: end; }
.footer-logo {
  display: block;
  width: 145px;
}
.footer-logo img {
  filter: brightness(0) invert(1);
  width: 100%;
}
.footer-tagline {
  color: rgba(244, 239, 230, .74);
  font-size: 17px;
  line-height: 1.25;
  margin-top: 16px;
}
.footer-column,
.footer-socials { min-width: 0; }
.footer-label {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.footer-column address {
  font-size: 17px;
  font-style: normal;
  line-height: 1.35;
}
.footer-column a {
  display: block;
  transition: color .2s ease;
}
.footer-email {
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}
.footer-map-link,
.footer-phone {
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
  margin-top: 11px;
}
.footer-column a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-link {
  align-items: center;
  display: inline-flex;
  height: 38px;
  justify-content: center;
  transition: color .2s ease;
  width: 38px;
}
.social-link:hover {
  color: var(--gold);
}
.social-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.social-link .fa-brands {
  font-size: 19px;
  line-height: 1;
}
.footer-copy {
  color: rgba(244, 239, 230, .45);
  font-size: 11px;
  letter-spacing: .1em;
  margin-top: 36px;
  text-transform: uppercase;
}

/* ─── responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .menu-sections { grid-template-columns: 1fr 1fr; }
  .menu-col--narrow { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 40px 6vw; }
  .menu-col--narrow .menu-section { flex: 1 1 220px; }
  .menu-order-cta { flex: 0 0 200px; align-self: end; margin-top: 0; }
}

@media (max-width: 960px) {
  .courses-section { grid-template-columns: 1fr; }
  .courses-img--left { display: none; }
  .courses-img--right { aspect-ratio: 16/6; }
  .courses-copy { padding: 56px 24px; }
  .gallery-bento { grid-template-rows: 160px 125px 125px; }
  .lightbox-arrow--prev { left: -44px; }
  .lightbox-arrow--next { right: -44px; }
}

@media (max-width: 800px) {
  .ritmo-section { display: block; padding: 52px 20px; }
  .ritmo-copy { padding-bottom: 32px; padding-top: 0; }
  .menu-sections { display: block; }
  .menu-col { gap: 40px; margin-bottom: 40px; }
  .menu-col--narrow { flex-direction: column; }
  .menu-order-cta { margin-top: 0; }
  .site-footer { padding: 48px 20px 20px; }
  .footer-main { gap: 38px 30px; grid-template-columns: 1.2fr 1fr; padding-bottom: 42px; }
  .footer-intro { grid-column: 1 / -1; }
  .footer-socials { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  section[id], footer[id] { scroll-margin-top: 72px; }
  .banco-section { scroll-margin-top: 72px; }
  .site-header { height: 72px; padding: 0 16px; }
  .site-header.scrolled .brand { height: 72px; margin-left: 0; overflow: visible; }
  .brand { align-items: center; display: flex; height: 72px; margin-left: 0; width: 92px; }
  .brand img,
  .site-header.scrolled .brand img { height: 68px; left: auto; position: relative; top: auto; width: auto; }
  .main-nav {
    background: var(--cream);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 16px 20px;
    position: absolute;
    right: 0;
    top: 72px;
  }
  .main-nav.open { display: flex; }
  .main-nav.open a { color: var(--ink); text-shadow: none; }
  .main-nav a {
    align-self: flex-start;
    border-radius: 2px;
    display: inline-block;
    padding: 10px 12px;
    transition: background-color .2s ease, color .2s ease;
    user-select: none;
  }
  .main-nav a:active { background: rgba(199, 152, 51, .14); }
  .main-nav a::after { bottom: 4px; }
  .main-nav a:hover::after,
  .main-nav a:focus-visible::after { transform: scaleX(1); }
  .header-actions { gap: 10px; margin-left: auto; }
  .menu-toggle {
    align-items: center;
    border-radius: 4px;
    display: block;
    height: 40px;
    transition: background-color .2s ease, transform .2s ease;
    width: 40px;
  }
  .menu-toggle:hover,
  .menu-toggle:focus-visible,
  .menu-toggle:active {
    background: transparent;
    box-shadow: none;
    outline: none;
  }
  .menu-toggle:active { transform: scale(.94); }
  .menu-toggle::before,
  .menu-toggle::after {
    left: 8px;
    transition: border-color .2s ease, transform .2s ease, top .2s ease;
    width: 22px;
  }
  .menu-toggle::before { top: 14px; }
  .menu-toggle::after { top: 22px; }
  .menu-toggle.open::before { top: 18px; transform: rotate(45deg); }
  .menu-toggle.open::after { top: 18px; transform: rotate(-45deg); }
  .order-dropdown { display: none; }
  .header-actions > .language-toggle { display: none; }
  .language-toggle--mobile {
    align-self: stretch;
    display: inline-flex;
    font-size: 14px;
    font-weight: 700;
    gap: 10px;
    letter-spacing: .12em;
    margin-top: 10px;
    padding: 14px 12px;
    text-transform: uppercase;
    transition: color .2s ease, background-color .2s ease;
    width: 100%;
  }
  .language-toggle--mobile .language-option { color: rgba(23, 20, 18, .58); }
  .language-toggle--mobile .language-option.active { color: var(--gold); }

  .hero {
    display: block;
    height: auto;
    min-height: 60svh;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .hero::before { display: none; }
  .hero-image {
    height: 100%;
    inset: 0;
    order: 0;
    position: absolute;
    width: 100%;
  }
  .hero-image img {
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    position: absolute;
    width: 100%;
  }
  .hero-image::after {
    background: linear-gradient(to top,
      rgba(23,20,18,.78) 0%,
      rgba(23,20,18,.34) 34%,
      rgba(23,20,18,.06) 58%,
      transparent 100%
    );
  }
  .hero-copy {
    bottom: 0;
    color: var(--cream);
    left: 0;
    padding: 0 24px 32px;
    position: absolute;
    right: 0;
    text-align: left;
    transform: none;
    z-index: 2;
  }
  .hero-copy h1 { color: var(--cream); font-size: clamp(46px, 13vw, 62px); }
  .hero-sub {
    color: rgba(244,239,230,.9);
    font-size: 17px;
    line-height: 1.35;
    margin: 12px 0 0;
    max-width: none;
    text-shadow: 0 2px 12px rgba(23,20,18,.58), 0 1px 3px rgba(23,20,18,.42);
  }
  .hero-actions { display: none; }

  .menu-section-title {
    border-bottom: 0;
    display: inline-block;
    padding-bottom: 13px;
    position: relative;
  }
  .menu-section-title::after {
    background: var(--gold);
    bottom: 0;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: 100%;
  }
  .menu-order-cta { display: none; }

  .courses-section { max-width: 100%; min-width: 0; width: 100%; }
  .courses-img--right { aspect-ratio: auto; background: var(--ink); }
  .courses-img--right img { height: auto; object-fit: contain; }

  .location-strip {
    align-items: center;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  .ls-sep { display: none; }
  .ls-item {
    gap: 10px;
    padding: 6px 20px;
  }
  .ls-item + .ls-item { border-top: none; }
  .ls-icon { height: 14px; width: 14px; }
  .ls-hours { display: flex; flex-direction: column; row-gap: 1px; }
  .ls-hours-group { display: block; }
  .ls-hours-slot { align-items: baseline; column-gap: 8px; display: grid; grid-template-columns: 84px max-content; }
  .ls-hours-day {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr 12px 1fr;
    text-align: center;
    white-space: nowrap;
  }
  .ls-hours-time { text-align: left; }
  .banco-section { margin: 0; padding: 36px 20px 56px; }
  .gallery-bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 120px 120px;
  }
  .gallery-open-icon {
    align-items: center;
    background: rgba(23, 20, 18, .68);
    color: var(--cream);
    display: flex;
    font-size: 12px;
    height: 28px;
    justify-content: center;
    position: absolute;
    right: 8px;
    top: 8px;
    width: 28px;
  }
  .gi-1 { grid-column: 1 / 3; grid-row: 1; }
  .gi-2 { grid-column: 1; grid-row: 2; }
  .gi-3 { grid-column: 2; grid-row: 2; }
  .gi-4 { grid-column: 1; grid-row: 3; }
  .gi-5 { grid-column: 2; grid-row: 3; }
  .lightbox-arrow--prev { left: 4px; }
  .lightbox-arrow--next { right: 4px; }
  .lightbox-close {
    position: fixed;
    right: max(12px, env(safe-area-inset-right));
    top: max(12px, env(safe-area-inset-top));
    z-index: 2;
  }
  .news-strip { padding: 18px 20px; }
  .news-body { display: none; }
  .footer-main { display: block; }
  .footer-column,
  .footer-socials { margin-top: 34px; }

  .mobile-action-bar {
    -webkit-backdrop-filter: blur(16px) saturate(1.15);
    backdrop-filter: blur(16px) saturate(1.15);
    background: rgba(244, 239, 230, .94);
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    box-shadow: 0 -8px 24px rgba(23, 20, 18, .1);
    z-index: 25;
  }
  .mobile-action-bar a {
    align-items: center;
    display: flex;
    font-size: 11px;
    font-weight: 600;
    gap: 6px;
    justify-content: center;
    letter-spacing: .09em;
    min-height: calc(64px + env(safe-area-inset-bottom));
    padding: 11px 6px;
    position: relative;
    text-transform: uppercase;
    transition: background-color .2s ease, color .2s ease, transform .16s ease;
    user-select: none;
    white-space: nowrap;
  }
  .mobile-action-bar a:first-child {
    padding-left: max(6px, env(safe-area-inset-left));
  }
  .mobile-action-bar a:last-child {
    padding-right: max(6px, env(safe-area-inset-right));
  }
  .mobile-action-bar a + a::before {
    display: none;
  }
  .mobile-action-bar svg {
    fill: none;
    flex: 0 0 auto;
    height: 18px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.5;
    width: 18px;
  }
  .mobile-action-bar__menu { color: var(--ink); }
  .mobile-action-bar__order,
  .mobile-action-bar__whatsapp { color: var(--ink); }
  .mobile-action-bar a:active {
    background: rgba(199, 152, 51, .14);
    transform: translateY(1px) scale(.97);
  }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
}

@media (max-width: 360px) {
  .header-actions > .language-toggle { display: none; }
  .language-toggle--mobile { display: inline-flex; }
}

@media (max-width: 640px) and (prefers-reduced-motion: no-preference) {
  .hero-copy { animation: mobile-copy-enter .7s cubic-bezier(.22,.61,.36,1) both; }
  .gallery-item:active img { transform: scale(1.04); }

  @media (hover: hover) {
    .mobile-action-bar a:hover { color: var(--gold); }
  }

  .motion-ready .mobile-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .55s ease, transform .55s cubic-bezier(.22,.61,.36,1);
  }
  .motion-ready .mobile-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @keyframes mobile-copy-enter {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
  }
}
