:root {
  --bg: #160a08;
  --bg-2: #22100d;
  --surface: #fff8ec;
  --surface-2: #fff1d7;
  --text: #2a1812;
  --muted: #775f50;
  --cream: #fff6e6;
  --gold: #f2b84b;
  --gold-dark: #b66b16;
  --red: #ba2c21;
  --red-dark: #741a15;
  --green: #294d34;
  --line: rgba(42, 24, 18, .12);
  --white-line: rgba(255, 246, 230, .14);
  --shadow: 0 24px 80px rgba(20, 8, 6, .28);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .06;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 50%, #fff 0 1px, transparent 1.5px);
  background-size: 34px 34px, 52px 52px;
  z-index: 0;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
.section-pad { padding: 110px 0; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  width: auto;
  height: auto;
  clip: auto;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--gold);
  color: var(--bg);
  z-index: 20;
  border-radius: 999px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 18px 0;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(22, 10, 8, .88);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .2);
}
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
}
.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  letter-spacing: .03em;
  line-height: 1;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 246, 230, .66);
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
}
.main-nav a {
  color: rgba(255, 246, 230, .82);
  padding: 9px 13px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .88rem;
  transition: background .2s ease, color .2s ease;
}
.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 246, 230, .1);
  color: var(--cream);
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--white-line);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--cream);
  border-radius: 999px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -.01em;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #ffdc83 48%, #e7832e);
  color: #2a1008;
  box-shadow: 0 18px 42px rgba(242, 184, 75, .28);
}
.btn-primary:hover { box-shadow: 0 20px 50px rgba(242, 184, 75, .38); }
.btn-ghost {
  color: var(--cream);
  border-color: rgba(255, 246, 230, .22);
  background: rgba(255, 255, 255, .05);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .09); }
.btn-small { min-height: 42px; padding-inline: 18px; font-size: .9rem; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  overflow: hidden;
  padding-top: 135px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 24%, rgba(242, 184, 75, .28), transparent 25%),
    radial-gradient(circle at 10% 20%, rgba(186, 44, 33, .34), transparent 30%),
    linear-gradient(135deg, #160a08 0%, #2b120d 58%, #0f0807 100%);
}
.hero-bg::before,
.hero-bg::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
}
.hero-bg::before {
  width: 500px;
  height: 500px;
  right: -180px;
  top: 140px;
  background: rgba(242, 184, 75, .1);
  border: 1px solid rgba(242, 184, 75, .14);
}
.hero-bg::after {
  width: 720px;
  height: 720px;
  left: -320px;
  bottom: -320px;
  background: rgba(186, 44, 33, .18);
  border: 1px solid rgba(255, 255, 255, .08);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, .98fr);
  gap: 64px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: .78rem;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 950;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.055em;
  line-height: .94;
}
h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 8vw, 7.5rem);
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  margin-bottom: 22px;
}
h3 { line-height: 1.13; }
.hero-lead {
  max-width: 640px;
  color: rgba(255, 246, 230, .74);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--white-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 246, 230, .78);
}
.trust-row b {
  color: var(--cream);
  margin-right: 5px;
}
.hero-visual {
  position: relative;
  min-height: 600px;
}
.hero-card-main {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border-radius: 42px;
  background: #160a08;
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-main::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 34px;
  border: 1px solid rgba(255, 246, 230, .12);
  z-index: 3;
  pointer-events: none;
}
.hero-card-main::after {
  content: "";
  position: absolute;
  inset: -14% -8% 26%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 34% 68%, rgba(255, 255, 255, .22), transparent 34%),
    radial-gradient(ellipse at 54% 58%, rgba(255, 255, 255, .16), transparent 32%),
    radial-gradient(ellipse at 70% 62%, rgba(255, 226, 178, .13), transparent 30%);
  filter: blur(18px);
  mix-blend-mode: screen;
  opacity: .72;
  animation: smokeRise 7.5s ease-in-out infinite;
}
.hero-card-main img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  animation: heroPhotoDrift 14s ease-in-out infinite alternate;
}
@keyframes heroPhotoDrift {
  0% { transform: scale(1.04) translate3d(-1.2%, .4%, 0); }
  100% { transform: scale(1.1) translate3d(1.4%, -1.3%, 0); }
}
@keyframes smokeRise {
  0%, 100% { transform: translate3d(-2%, 8%, 0) scale(.92); opacity: .42; }
  45% { transform: translate3d(3%, -7%, 0) scale(1.08); opacity: .78; }
  70% { transform: translate3d(0, -12%, 0) scale(1.18); opacity: .5; }
}
.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 248, 236, .94);
  color: var(--text);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .28);
  font-weight: 800;
  line-height: 1.25;
}
.note-top { top: 70px; left: -26px; }
.note-bottom { right: -20px; bottom: 80px; }
.note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 950;
}

/* Quick info */
.quick-info {
  position: relative;
  margin-top: -64px;
  z-index: 2;
}
.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-card {
  padding: 26px;
  min-height: 220px;
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: 0 22px 50px rgba(0, 0, 0, .14);
  border: 1px solid rgba(255, 255, 255, .5);
}
.quick-icon,
.event-card span,
.menu-label,
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(186, 44, 33, .1);
  color: var(--red-dark);
  font-weight: 950;
  font-size: .72rem;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.quick-card h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.25rem;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: 26px 0 10px;
}
.quick-card p { color: var(--muted); margin-bottom: 0; }

/* Shared sections */
.experience,
.menu-section,
.gallery-section {
  background: var(--surface);
}
.split-grid,
.reservation-grid,
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.section-copy p:not(.eyebrow),
.section-head p,
.reservation-copy p:not(.eyebrow),
.contact-card p {
  color: var(--muted);
  font-size: 1.05rem;
}
.section-head {
  max-width: 820px;
  margin-bottom: 38px;
}
.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}
.feature-list div {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .52);
}
.feature-list strong { display: block; margin-bottom: 3px; }
.feature-list span { color: var(--muted); }
.experience-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg);
  color: var(--cream);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, .08);
}
.panel-image {
  min-height: 380px;
  background:
    linear-gradient(180deg, rgba(22, 10, 8, .02), rgba(22, 10, 8, .42)),
    url('../assets/photo-live-music.jpg') center / cover no-repeat;
}
.panel-content { padding: 30px; }
.panel-content h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: -.035em;
  margin: 12px 0 10px;
}
.panel-content p { color: rgba(255, 246, 230, .7); margin-bottom: 0; }

/* Menu */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.tab {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 900;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tab.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.menu-card {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  min-height: 168px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .86), rgba(255, 241, 215, .8));
  box-shadow: 0 16px 38px rgba(42, 24, 18, .08);
  transition: transform .18s ease, box-shadow .18s ease;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(42, 24, 18, .14);
}
.menu-card h3 {
  margin: 12px 0 8px;
  font-size: 1.28rem;
  letter-spacing: -.03em;
}
.menu-card p { color: var(--muted); margin-bottom: 0; }
.menu-card strong {
  align-self: flex-start;
  color: var(--red-dark);
  white-space: nowrap;
}
.hidden { display: none !important; }

/* Events */
.events {
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 10%, rgba(242, 184, 75, .18), transparent 28%),
    linear-gradient(145deg, #160a08, #2a0f0c);
}
.events .section-head p { color: rgba(255, 246, 230, .68); }
.event-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.event-card {
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--white-line);
}
.event-card span { background: rgba(242, 184, 75, .16); color: var(--gold); }
.event-card h3 {
  margin: 70px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: -.04em;
}
.event-card p { color: rgba(255, 246, 230, .68); margin-bottom: 0; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1.2fr;
  gap: 16px;
}
.gallery-item {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  box-shadow: 0 18px 48px rgba(42, 24, 18, .12);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.03);
  animation: galleryPhotoDrift 16s ease-in-out infinite alternate;
  transition: transform .5s ease;
}
.gallery-item:hover img {
  transform: scale(1.09);
  animation-play-state: paused;
}
.gallery-smoke::before,
.gallery-smoke::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 42% 64%, rgba(255, 255, 255, .3), transparent 35%),
    radial-gradient(ellipse at 62% 48%, rgba(255, 226, 190, .18), transparent 32%);
  filter: blur(16px);
  mix-blend-mode: screen;
}
.gallery-smoke::before {
  width: 56%;
  height: 46%;
  left: 12%;
  bottom: 16%;
  opacity: .58;
  animation: smokeRise 8s ease-in-out infinite;
}
.gallery-smoke::after {
  width: 42%;
  height: 38%;
  right: 7%;
  bottom: 24%;
  opacity: .42;
  animation: smokeRise 9.5s ease-in-out infinite reverse;
}
.gallery-item:nth-child(2) img { object-position: 42% center; }
.gallery-item:nth-child(4) img { object-position: center 58%; }
@keyframes galleryPhotoDrift {
  0% { transform: scale(1.03) translate3d(-1%, 0, 0); }
  100% { transform: scale(1.08) translate3d(1%, -1%, 0); }
}
.gallery-item figcaption {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--cream);
  font-weight: 900;
  background: rgba(22, 10, 8, .72);
  backdrop-filter: blur(14px);
}

/* Reservation */
.reservation {
  color: var(--cream);
  background:
    radial-gradient(circle at 82% 22%, rgba(186, 44, 33, .28), transparent 24%),
    radial-gradient(circle at 12% 72%, rgba(242, 184, 75, .2), transparent 26%),
    var(--bg);
}
.reservation-copy p:not(.eyebrow) { color: rgba(255, 246, 230, .7); }
.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--white-line);
  box-shadow: var(--shadow);
}
.reservation-form label { display: grid; gap: 8px; }
.reservation-form span {
  color: rgba(255, 246, 230, .78);
  font-size: .88rem;
  font-weight: 850;
}
.reservation-form input,
.reservation-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(255, 246, 230, .18);
  border-radius: 14px;
  background: rgba(0, 0, 0, .18);
  color: var(--cream);
  outline: none;
}
.reservation-form input:focus,
.reservation-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(242, 184, 75, .12);
}
.reservation-form select option { color: var(--text); }
.full { grid-column: 1 / -1; }
.form-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: rgba(255, 246, 230, .58);
  font-size: .9rem;
}

/* Contact */
.contact { background: var(--surface-2); }
.contact-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(42, 24, 18, .1);
}
.contact-card h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact .btn-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, .5);
}
.map-card {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(42,24,18,.05) 1px, transparent 1px),
    linear-gradient(rgba(42,24,18,.05) 1px, transparent 1px),
    linear-gradient(135deg, #fff9ef, #f4d7a3);
  background-size: 46px 46px, 46px 46px, auto;
  box-shadow: var(--shadow);
}
.map-lines::before,
.map-lines::after {
  content: "";
  position: absolute;
  height: 34px;
  border-radius: 999px;
  background: rgba(186, 44, 33, .2);
  transform: rotate(-18deg);
}
.map-lines::before { width: 80%; left: -8%; top: 38%; }
.map-lines::after { width: 70%; right: -12%; top: 55%; background: rgba(41, 77, 52, .18); transform: rotate(24deg); }
.map-pin {
  position: absolute;
  left: 50%;
  top: 43%;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(-45deg);
  background: var(--red);
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 22px 40px rgba(116, 26, 21, .32);
  z-index: 2;
}
.map-pin::before { content: ""; position: absolute; inset: 10px; border-radius: inherit; border: 2px solid rgba(255, 255, 255, .5); }
.map-pin { line-height: 1; }
.map-pin::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 999px;
  transform: rotate(45deg);
}
.map-pin { color: transparent; }
.map-label {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 248, 236, .82);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(42, 24, 18, .12);
}
.map-label strong { display: block; font-size: 1.2rem; }
.map-label span { color: var(--muted); }

/* Footer */
.site-footer {
  padding: 64px 0 28px;
  color: var(--cream);
  background: #0d0605;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .6fr .8fr;
  gap: 36px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--white-line);
}
.footer-grid p { max-width: 360px; color: rgba(255, 246, 230, .6); }
.footer-grid div:not(:first-child) {
  display: grid;
  gap: 9px;
  align-content: start;
}
.footer-grid strong { margin-bottom: 6px; }
.footer-grid a { color: rgba(255, 246, 230, .68); }
.footer-grid a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: rgba(255, 246, 230, .5);
  font-size: .92rem;
}
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 999px;
  background: #2dbf63;
  color: #fff;
  font-weight: 950;
  box-shadow: 0 18px 45px rgba(45, 191, 99, .35);
}
.floating-whatsapp::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: -4px 4px 0 rgba(255,255,255,.55);
}

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

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .reservation-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 520px; order: -1; }
  .quick-info-grid,
  .event-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .main-nav { gap: 0; }
}

@media (max-width: 820px) {
  .site-header { padding: 10px 0; background: rgba(22, 10, 8, .88); backdrop-filter: blur(18px); }
  .hide-mobile { display: none; }
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 22px;
    background: rgba(22, 10, 8, .96);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 13px 14px; }
  .hero { padding-top: 110px; }
  .section-pad { padding: 78px 0; }
  .quick-info { margin-top: 0; padding: 22px 0; background: var(--surface); }
  .quick-info-grid,
  .menu-grid,
  .event-grid,
  .gallery-grid,
  .reservation-form,
  .footer-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; }
  .floating-note { position: relative; inset: auto; margin-top: 12px; max-width: none; }
  .hero-card-main { position: relative; min-height: 390px; }
  .note-top, .note-bottom { left: auto; right: auto; top: auto; bottom: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 540px) {
  .container { width: min(100% - 28px, var(--container)); }
  h1 { font-size: clamp(2.85rem, 16vw, 4.5rem); }
  h2 { font-size: clamp(2.1rem, 12vw, 3.3rem); }
  .hero-actions .btn, .contact-actions .btn { width: 100%; }
  .trust-row { display: grid; }
  .quick-card, .menu-card, .event-card, .contact-card, .reservation-form { padding: 22px; }
  .menu-card { flex-direction: column; }
  .gallery-item { min-height: 310px; }
  .map-card { min-height: 420px; }
  .floating-whatsapp { left: 14px; right: 14px; bottom: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
