:root {
  --bg: #0a0b0e;
  --bg-elev: #15181f;
  --sand: #f5da37;
  --sand-soft: #dfcc66;
  --accent: #f5da37;
  --accent-deep: #b9171d;
  --text: #f3f4f6;
  --muted: #abb0bc;
  --line: #2f3645;
  --radius: 18px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: #06070a;
  min-height: 100vh;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.video-overlay {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 9% 9%, rgba(245, 218, 55, 0.2) 0, transparent 30%),
    radial-gradient(circle at 85% 14%, rgba(243, 53, 54, 0.2) 0, transparent 33%),
    linear-gradient(160deg, rgba(6, 7, 10, 0.74) 0%, rgba(16, 19, 26, 0.76) 45%, rgba(10, 12, 18, 0.8) 100%);
}

.site-header,
main,
.site-footer {
  position: relative;
}

main,
.site-footer {
  z-index: 3;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 5vw;
  backdrop-filter: blur(10px);
  background: linear-gradient(to bottom, rgba(7, 8, 11, 0.86), rgba(7, 8, 11, 0.2));
  border-bottom: 1px solid transparent;
  transition: border-color 300ms ease, background 300ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(10, 12, 17, 0.92);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text);
}

.logo-image {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 8px;
  border: 1px solid rgba(245, 218, 55, 0.45);
  object-fit: cover;
  background: #090b10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.logo-text {
  font-family: "Prata", serif;
  letter-spacing: 0.04em;
  color: #fbfbfc;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  width: min(1180px, 92vw);
  margin: 0 auto;
  justify-content: flex-start;
}

.site-nav a {
  text-decoration: none;
  color: var(--sand-soft);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 2.3rem;
  height: 2rem;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f5e36f;
  transition: transform 300ms ease, top 300ms ease, opacity 200ms ease;
}

.nav-toggle span:first-child {
  top: 7px;
}

.nav-toggle span:last-child {
  top: 15px;
}

.nav-open .nav-toggle span:first-child {
  top: 11px;
  transform: rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  top: 11px;
  transform: rotate(-45deg);
}

main {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
}

.hero {
  min-height: calc(100vh - 82px);
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1.6rem;
  align-items: center;
}

.kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 600;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1,
h2 {
  font-family: "Prata", serif;
  line-height: 1.14;
}

h1 {
  font-size: clamp(2.1rem, 6vw, 4.3rem);
  max-width: 16ch;
}

h2 {
  font-size: clamp(1.6rem, 4vw, 3rem);
}

p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-content>p {
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  text-decoration: none;
  border: 1px solid transparent;
  padding: 0.88rem 1.2rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(130deg, var(--accent), #ff6e3c);
  color: #fff;
}

.btn-ghost {
  border-color: #595f6e;
  color: #f4da46;
}

.btn-ghost:hover {
  border-color: var(--sand);
}

.btn-whatsapp {
  position: relative;
  overflow: hidden;
  border: 1px solid #57e790;
  background: linear-gradient(135deg, #27d367 0%, #18b357 52%, #0f7d3d 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(15, 125, 61, 0.4), 0 0 0 1px rgba(121, 255, 178, 0.2) inset;
  animation: whatsapp-border-pulse 2.4s ease-in-out infinite;
}

.btn-whatsapp::before {
  content: "";
  position: absolute;
  top: -140%;
  left: -30%;
  width: 62%;
  height: 360%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.88) 50%, transparent 100%);
  transform: rotate(22deg);
  animation: whatsapp-shine 2.8s linear infinite;
  pointer-events: none;
}

@keyframes whatsapp-shine {
  0% {
    left: -65%;
  }
  100% {
    left: 125%;
  }
}

@keyframes whatsapp-border-pulse {
  0%,
  100% {
    box-shadow: 0 10px 22px rgba(15, 125, 61, 0.4), 0 0 0 1px rgba(121, 255, 178, 0.2) inset;
  }
  50% {
    box-shadow: 0 12px 26px rgba(24, 179, 87, 0.45), 0 0 0 2px rgba(140, 255, 191, 0.32) inset;
  }
}

.hero-panels {
  display: grid;
  gap: 1rem;
}

.hero-panels article {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: var(--shadow);
}

.hero-logo-panel {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.hero-logo {
  width: min(100%, 260px);
  max-width: 260px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 0;
  border-radius: 0;
}

.hero-panels h3 {
  font-family: "Prata", serif;
  margin-bottom: 0.5rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem 2rem;
  align-items: start;
}

.menu .section-head {
  margin-bottom: 1.8rem;
}

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

.menu-block {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
}

.menu-block--media {
  grid-column: span 2;
}

.menu-block h3 {
  font-family: "Prata", serif;
  font-size: 1.18rem;
}

.menu-media {
  margin-top: 0.95rem;
  display: grid;
  gap: 0.75rem;
}

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

.menu-media-item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 12, 18, 0.4);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
  aspect-ratio: 4 / 3;
}

.menu-media-open {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.menu-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease;
}

.menu-media-item:hover img {
  transform: scale(1.04);
}

.menu-lightbox[hidden] {
  display: none;
}

.menu-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(5, 8, 12, 0.9);
}

.menu-lightbox-image {
  width: min(1200px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  background: #090c13;
}

.menu-lightbox-close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(8, 11, 16, 0.92);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

body.lightbox-open {
  overflow: hidden;
}

@media (min-width: 961px) {
  .menu-media-item--zoomout img {
    transform: scale(0.88);
  }

  .menu-media-item--zoomout:hover img {
    transform: scale(0.93);
  }
}

.menu-simple-list {
  list-style: none;
  margin: 0.8rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.menu-simple-list li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--sand-soft);
}

.menu-simple-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.menu-note {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.experience {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.3rem;
  align-items: center;
}

.experience-copy ul {
  padding-left: 1rem;
  color: var(--sand-soft);
}

.experience-copy li {
  margin-bottom: 0.55rem;
}

.gallery-wrap {
  display: grid;
  gap: 0.8rem;
}

.gallery {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.2rem 0.2rem 0.6rem;
}

.gallery-tile {
  flex: 0 0 clamp(250px, 40vw, 410px);
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid #4d5568;
  box-shadow: var(--shadow);
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-controls {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
}

.gallery-btn {
  border: 1px solid #505c72;
  background: rgba(9, 11, 16, 0.96);
  color: var(--sand);
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  padding: 0;
  display: grid;
  place-items: center;
  font: inherit;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-btn:hover {
  border-color: var(--accent);
}

.reserve {
  padding-top: 5rem;
}

.reserve-head {
  margin-bottom: 1.4rem;
}

.reserve-cta {
  display: grid;
  gap: 1rem;
  justify-items: start;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.reserve-cta p {
  margin: 0;
  color: var(--sand-soft);
  max-width: 60ch;
}

.reserve-cta .btn {
  width: fit-content;
}

.map-cta {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  justify-items: start;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01));
  border: 1px solid #5d5640;
  border-radius: var(--radius);
  padding: 1.2rem 1.35rem;
}

.map-cta h3 {
  margin: 0;
  font-family: "Prata", serif;
  color: var(--text);
}

.map-cta p {
  margin: 0;
  color: var(--sand-soft);
  max-width: 60ch;
}

.map-cta .btn {
  width: fit-content;
}

.site-footer {
  width: min(1180px, 92vw);
  margin: 5rem auto 2.2rem;
  border-top: 1px solid #444f63;
  padding-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.site-footer h3,
.site-footer h4 {
  font-family: "Prata", serif;
  margin-bottom: 0.55rem;
}

.site-footer h4+.social-links {
  margin-top: 0.5rem;
}

.site-footer p {
  margin: 0.2rem 0;
}

.business-address {
  margin: 0.2rem 0;
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.footer-link {
  color: var(--sand-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.footer-link:hover {
  color: var(--sand);
  border-color: var(--sand);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #505c72;
  color: var(--sand);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  transition: border-color 200ms ease, transform 200ms ease, background 200ms ease;
}

.social-icon {
  width: 0.95rem;
  height: 0.95rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.social-link:hover {
  border-color: var(--accent);
  background: rgba(243, 53, 54, 0.12);
  transform: translateY(-1px);
}

.social-link--tiktok:hover {
  border-color: #25f4ee;
  background: linear-gradient(135deg, #111 0%, #fe2c55 52%, #25f4ee 100%);
  color: #fff;
}

.social-link--instagram:hover {
  border-color: #fdc468;
  background: linear-gradient(135deg, #515bd4 0%, #8134af 25%, #dd2a7b 55%, #f58529 100%);
  color: #fff;
}

.social-link--facebook:hover {
  border-color: #7da8ff;
  background: linear-gradient(135deg, #1877f2 0%, #0f5acb 100%);
  color: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.back-to-top[hidden] {
  display: none;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 95;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  border: 1px solid #505c72;
  background: rgba(9, 11, 16, 0.96);
  color: var(--sand);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.35);
}

.back-to-top:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .bg-video {
    display: none;
  }

  .btn-whatsapp,
  .btn-whatsapp::before {
    animation: none;
  }
}

@media (prefers-reduced-data: reduce) {
  .bg-video {
    display: none;
  }

  body {
    background: linear-gradient(160deg, rgba(6, 7, 10, 0.9) 0%, rgba(16, 19, 26, 0.86) 45%, rgba(10, 12, 18, 0.9) 100%),
      url("assets/images/video-poster.jpg") center / cover no-repeat #06070a;
  }
}

@media (max-width: 960px) {

  .hero,
  .story-grid,
  .experience {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.7rem;
    min-height: auto;
  }

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

  .menu-block--media {
    grid-column: auto;
  }

  .gallery {
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 1rem 1rem;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.7rem;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: static;
    order: 3;
    width: 100%;
    margin: 0;
    padding: 0.9rem 1rem;
    background: rgba(9, 11, 16, 0.98);
    border: 1px solid #465269;
    border-radius: 14px;
    display: none;
    flex-direction: column;
    gap: 1rem;
  }

  .nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    font-size: 1.15rem;
  }

  .story {
    padding-top: 7rem;
    padding-bottom: 3.6rem;
  }

  .menu {
    padding-top: 3.6rem;
  }

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

  .gallery {
    gap: 0.7rem;
  }

  .gallery-tile {
    flex-basis: 88%;
  }

  .gallery-controls {
    justify-content: center;
  }
}

@media (max-width: 460px) {
  .menu-media--pair {
    grid-template-columns: 1fr;
  }
}

