:root {
  color-scheme: dark;
  --bg: #070605;
  --surface: rgba(24, 24, 24, 0.88);
  --surface-strong: rgba(14, 14, 14, 0.95);
  --panel: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f4ede6;
  --muted: #b9aaa0;
  --accent: #f6b166;
  --accent-strong: #f1b34c;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(circle at top, rgba(246, 177, 102, 0.08), transparent 25%),
    radial-gradient(circle at bottom right, rgba(255, 211, 139, 0.06), transparent 22%),
    #070605;
  color: var(--text);
  overflow-x: hidden;
}

::selection {
  background: rgba(246, 177, 102, 0.26);
}

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

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

.container {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.page-loader {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: #070605;
  color: var(--text);
  z-index: 200;
}

.loader-ring {
  width: 90px;
  height: 90px;
  border: 4px solid rgba(255, 255, 255, 0.12);
  border-top: 4px solid var(--accent);
  border-radius: 50%;
  animation: spin 1.3s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, rgba(246, 177, 102, 1), rgba(246, 144, 57, 0.9));
  z-index: 150;
}

.noise-layer {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"%3E%3Cfilter id="n" x="0" y="0" width="100%" height="100%"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="200" height="200" filter="url(%23n)" opacity="0.05"/%3E%3C/svg%3E');
  opacity: 0.18;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.logo-mark {
  width: 45px;
  height: 45px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(246, 177, 102, 1), rgba(214, 108, 31, 1));
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.08), 0 20px 50px rgba(246, 177, 102, 0.18);
}

.brand span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}

.nav a {
  position: relative;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 4rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1478145046317-39f10e56b5e9?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  filter: saturate(0.9) brightness(0.68);
  will-change: transform;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(246, 177, 102, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 169, 87, 0.16), transparent 24%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.9) 100%);
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 0;
}

.hero-copy {
  max-width: 680px;
}

.hero .eyebrow {
  color: var(--accent);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1 {
  margin: 1rem 0 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p {
  margin-bottom: 2rem;
  max-width: 620px;
  font-size: 1.05rem;
  color: rgba(244, 237, 230, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, rgba(246, 177, 102, 1), rgba(246, 131, 47, 1));
  box-shadow: 0 20px 40px rgba(246, 177, 102, 0.25);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-aside {
  display: grid;
  gap: 1.5rem;
}

.hero-badge,
.hero-stats {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  padding: 1.75rem;
  backdrop-filter: blur(18px);
}

.hero-badge {
  display: grid;
  gap: 0.5rem;
}

.hero-badge p {
  margin: 0;
  font-size: 3rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.04em;
}

.hero-badge span {
  font-size: 1rem;
  color: var(--muted);
}

.hero-badge small {
  color: var(--muted);
}

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

.hero-stats div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(244, 237, 230, 0.88);
}

.hero-stats strong {
  font-size: 1.65rem;
  color: var(--accent-strong);
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2rem;
  width: 120px;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(246, 177, 102, 0.12);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
}

h2 {
  margin: 1rem 0 1.8rem;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4.8vw, 4rem);
  line-height: 1.02;
}

p {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.about-grid,
.location-grid,
.reviews-grid {
  display: grid;
  gap: 2.5rem;
}

.about-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 1.5rem;
}

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

.stat-card {
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.chef-card {
  overflow: hidden;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.chef-image {
  min-height: 380px;
  background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=900&q=90');
  background-size: cover;
  background-position: center;
}

.chef-info {
  padding: 2rem;
}

.chef-info h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.75rem;
}

.chef-signature {
  margin-top: 1.25rem;
  color: rgba(244, 237, 230, 0.78);
}

.menu-section {
  position: relative;
}

.section-heading {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.tab {
  min-width: 130px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
}

.tab.active {
  background: linear-gradient(135deg, rgba(246, 177, 102, 0.15), rgba(246, 177, 102, 0.05));
  color: var(--accent);
  box-shadow: 0 16px 40px rgba(246, 177, 102, 0.14);
  border-color: rgba(246, 177, 102, 0.22);
}

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

.menu-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  padding: 2rem;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.menu-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246, 177, 102, 0.3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.menu-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.menu-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.1;
}

.menu-card span {
  font-size: 1.05rem;
  color: var(--accent);
  font-weight: 700;
}

.gallery-section .gallery-masonry {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.reviews-grid {
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
}

.reviews-intro p {
  max-width: 560px;
}

.review-cards {
  display: grid;
  gap: 1.25rem;
}

.review-card {
  padding: 2rem;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  opacity: 0.5;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
}

.review-card p {
  margin-bottom: 1.5rem;
  color: rgba(244, 237, 230, 0.84);
  font-size: 1.02rem;
}

.review-card footer {
  font-weight: 700;
  color: var(--accent);
}

.review-controls {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.reserve-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  padding: 2.5rem;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.reserve-copy h2 {
  margin-bottom: 1rem;
  color: var(--text);
}

.reserve-copy p {
  margin-bottom: 0;
}

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

.form-field {
  display: grid;
  gap: 0.55rem;
  color: var(--text);
}

.form-field span {
  font-size: 0.95rem;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.form-field-full {
  grid-column: 1 / -1;
}

.location-grid {
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

.map-frame {
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.map-frame iframe {
  min-height: 420px;
}

.site-footer {
  padding: 4rem 0 2.5rem;
  background: #010101;
}

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

.site-footer h3,
.site-footer h4 {
  margin-top: 0;
}

.site-footer h3 {
  font-size: 1.8rem;
}

.site-footer p,
.site-footer a {
  color: rgba(244, 237, 230, 0.75);
  text-decoration: none;
  line-height: 1.8;
}

.footer-grid a:hover {
  color: var(--accent);
}

.social-links {
  display: grid;
  gap: 0.75rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.92);
  z-index: 140;
  padding: 1.5rem;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 24px;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
}

.whatsapp-chat {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 1), rgba(24, 184, 107, 1));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 24px 65px rgba(37, 211, 102, 0.25);
  z-index: 160;
  text-decoration: none;
}

.whatsapp-chat span {
  font-size: 0.95rem;
}

.whatsapp-chat svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #fff;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 1024px) {
  .hero-inner,
  .about-grid,
  .reviews-grid,
  .reserve-panel,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 7vw, 3.8rem);
  }

  .gallery-masonry {
    column-count: 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: space-between;
  }

  .hero-inner,
  .menu-grid,
  .gallery-masonry,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-badge,
  .hero-stats,
  .review-controls {
    width: 100%;
  }

  .page-loader {
    padding: 1rem;
  }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(244, 182, 98, 0.14), transparent 19%);
  opacity: 0.18;
  transition: background-position 0.15s ease;
  z-index: 0;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transform: scale(0);
  animation: rippleEffect 0.7s ease-out;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    opacity: 0;
    transform: scale(2);
  }
}

/* Premium luxury override styles */
:root {
  --bg: #060505;
  --surface: rgba(25, 21, 18, 0.82);
  --surface-soft: rgba(255, 255, 255, 0.07);
  --panel: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f7efe9;
  --muted: #b8a79b;
  --accent: #f4b662;
  --accent-soft: rgba(244, 182, 98, 0.18);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 32px;
}

body {
  background: radial-gradient(circle at top, rgba(244, 182, 98, 0.08), transparent 22%),
    radial-gradient(circle at bottom left, rgba(244, 182, 98, 0.06), transparent 18%),
    #060505;
}

.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 190;
}

.cursor-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(244, 182, 98, 0.95);
  box-shadow: 0 0 22px rgba(244, 182, 98, 0.4);
}

.cursor-outline {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(244, 182, 98, 0.32);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.hero {
  padding-top: 3rem;
}

.hero-media {
  filter: saturate(0.88) brightness(0.56);
}

.hero-gradient {
  background: radial-gradient(circle at top left, rgba(244, 182, 98, 0.16), transparent 20%),
    radial-gradient(circle at bottom right, rgba(244, 182, 98, 0.12), transparent 18%);
}

.smoke-overlay {
  background-image: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 18%),
    radial-gradient(circle at 80% 25%, rgba(255, 228, 192, 0.05), transparent 16%),
    radial-gradient(circle at 50% 80%, rgba(244, 182, 98, 0.04), transparent 20%);
  mix-blend-mode: screen;
}

.hero-inner {
  align-items: start;
}

.hero-copy {
  gap: 1.5rem;
}

.hero h1 {
  font-size: clamp(4rem, 7vw, 5.6rem);
  letter-spacing: -0.05em;
}

.hero-tagline {
  overflow: hidden;
}

.tagline-text {
  display: inline-block;
  font-size: 1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 182, 98, 0.92);
  transition: opacity 0.3s ease;
}

.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(244, 182, 98, 0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-3px) scale(1.01);
}

.magnetic {
  will-change: transform;
}

.hero-aside {
  gap: 1.5rem;
}

.hero-badge,
.hero-stats {
  border-radius: 34px;
}

.hero-badge p {
  font-size: 3.1rem;
}

.hero-stats strong {
  font-size: 1.8rem;
}

.floating-showcase {
  position: absolute;
  right: 5rem;
  bottom: 5rem;
  width: min(360px, 90%);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.showcase-card {
  padding: 1.9rem;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px);
}

.showcase-image {
  min-height: 240px;
  border-radius: 28px;
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=900&q=90');
  background-size: cover;
  background-position: center;
  filter: saturate(1.1) contrast(1.05);
}

.showcase-copy span {
  color: var(--accent);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.showcase-copy h3 {
  margin: 0.4rem 0 0.7rem;
  font-size: 1.5rem;
}

.showcase-copy p {
  margin: 0;
  color: rgba(247, 239, 233, 0.84);
}

.hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(247, 239, 233, 0.78);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.scroll-wheel {
  width: 30px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  position: relative;
}

.scroll-wheel::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: scrollPulse 1.9s infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 16px); }
}

.site-header {
  transition: transform 0.35s ease, backdrop-filter 0.35s ease;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(244, 182, 98, 1), rgba(244, 144, 57, 1));
  transition: width 0.35s ease;
}

.nav a:hover::after,
.nav a.active::after {
  width: 100%;
}

.section {
  padding: 7rem 0;
}

.section-label {
  font-size: 0.8rem;
}

h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.about-grid,
.location-grid,
.reviews-grid {
  gap: 2.5rem;
}

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

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

.menu-card:hover {
  transform: translateY(-10px) rotate(-0.1deg);
  border-color: rgba(244, 182, 98, 0.25);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
}

.gallery-section .gallery-masonry {
  column-count: 3;
  column-gap: 1rem;
}

.gallery-item {
  border-radius: 34px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.34);
}

.review-card {
  opacity: 0.55;
  transform: translateY(20px);
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
}

.reserve-panel {
  padding: 2.5rem;
  border-radius: 40px;
}

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

.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.map-frame {
  border-radius: 40px;
}

.lightbox img {
  animation: lightboxOpen 0.35s ease;
}

@keyframes lightboxOpen {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.review-controls button,
.carousel-control {
  border: none;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .floating-showcase {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-inner,
  .menu-grid,
  .gallery-masonry,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 8vw, 3.9rem);
  }

  .nav {
    justify-content: space-between;
  }

  .hero-scroll-indicator {
    display: none;
  }
}
