:root {
  --black: #050505;
  --ink: #111111;
  --soft-black: #171717;
  --gold: #c49a34;
  --gold-soft: #e8cf8a;
  --white: #ffffff;
  --paper: #f7f4ee;
  --muted: #b9b2a4;
  --aqua: #00aeef;
  --line: rgba(196, 154, 52, 0.35);
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

* {
  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;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p {
  color: rgba(255, 255, 255, 0.76);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: var(--gold-soft);
}

.btn.ghost {
  background: transparent;
  color: var(--gold-soft);
}

.btn.ghost:hover {
  background: rgba(196, 154, 52, 0.12);
}

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero.short {
  min-height: 58svh;
}

.hero img,
.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.52) 45%, rgba(5, 5, 5, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.05) 52%, rgba(5, 5, 5, 0.5) 100%);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0 72px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 9vw, 7.5rem);
  font-weight: 500;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  font-weight: 500;
}

h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lead {
  max-width: 680px;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.section {
  padding: 96px 0;
  background: var(--black);
}

.section.paper {
  background: var(--paper);
  color: var(--ink);
}

.section.paper p {
  color: rgba(17, 17, 17, 0.72);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 42px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.media-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.media-stack img {
  width: 100%;
  height: clamp(440px, 56vw, 620px);
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.media-stack img:nth-child(2) {
  margin-top: 56px;
}

.wide-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  min-height: 120px;
  padding: 24px;
  background: var(--soft-black);
}

.stat strong {
  display: block;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.stat span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.feature-grid,
.gallery-grid,
.menu-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.feature {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.feature p {
  margin-bottom: 0;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 0.45s ease;
}

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

.gallery-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  color: var(--white);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent);
  font-size: 0.88rem;
  font-weight: 700;
}

.gallery-showcase {
  overflow: hidden;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 14px;
}

.gallery-mosaic-large {
  grid-auto-rows: 250px;
}

.gallery-tile {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile.tall {
  grid-row: span 2;
}

.gallery-tile.wide {
  grid-column: span 2;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(196, 154, 52, 0.55);
  border-radius: 4px;
  background: transparent;
  color: var(--gold-soft);
  cursor: pointer;
}

.filter.active {
  background: var(--gold);
  color: #111;
}

.reviews {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-track {
  display: flex;
  transition: transform 0.45s ease;
}

.review {
  min-width: 100%;
  padding: 42px 0;
}

.review blockquote {
  max-width: 920px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  line-height: 1.18;
}

.review cite {
  display: block;
  margin-top: 22px;
  color: var(--gold-soft);
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-controls {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(196, 154, 52, 0.55);
  border-radius: 4px;
  color: var(--gold-soft);
  background: transparent;
  cursor: pointer;
}

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

.pdf-panel {
  border: 1px solid rgba(196, 154, 52, 0.4);
  border-radius: 6px;
  overflow: hidden;
  background: #101010;
}

.pdf-panel header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid rgba(196, 154, 52, 0.24);
}

.pdf-panel object,
.pdf-panel iframe {
  width: 100%;
  height: 620px;
  border: 0;
  background: #222;
}

.menu-text {
  margin-top: 28px;
  columns: 2;
  column-gap: 42px;
}

.menu-text section {
  break-inside: avoid;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(196, 154, 52, 0.2);
}

.menu-text h3 {
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.menu-text p {
  margin: 0 0 8px;
}

.menu-tabs {
  position: sticky;
  top: 78px;
  z-index: 20;
  display: flex;
  gap: 8px;
  margin: 0 0 34px;
  padding: 12px 0;
  overflow-x: auto;
  background: var(--paper);
  scrollbar-width: thin;
}

.menu-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.menu-tab.active,
.menu-tab:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #111;
}

.menu-category-panel {
  display: none;
}

.menu-category-panel.active {
  display: block;
}

.menu-category-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.menu-card {
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 6px;
  background: #fff;
}

.menu-card-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.menu-card h3 {
  color: var(--ink);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
}

.menu-card p {
  margin: 10px 0 0;
  color: rgba(17, 17, 17, 0.7);
}

.menu-badge {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-price {
  color: var(--gold);
  font-size: 1rem;
  white-space: nowrap;
}

.menu-allergens {
  font-size: 0.8rem;
}

.contact-grid {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.info-list {
  display: grid;
  gap: 16px;
}

.info-row {
  padding: 20px 0;
  border-bottom: 1px solid rgba(196, 154, 52, 0.28);
}

.info-row strong {
  display: block;
  color: var(--gold-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
}

.form label {
  display: grid;
  gap: 8px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.form input,
.form textarea,
.form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 12px;
  color: var(--white);
  background: #101010;
  font: inherit;
}

.form textarea {
  min-height: 112px;
  resize: vertical;
}

.form .btn {
  grid-column: 1 / -1;
  cursor: pointer;
}

.map {
  width: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.05);
}

.footer {
  padding: 58px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #040404;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 34px;
}

.footer img {
  width: 170px;
  margin-bottom: 18px;
}

.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer a:hover {
  color: var(--gold-soft);
}

.footer-nav {
  display: grid;
  gap: 8px;
}

.subfooter {
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #25d366;
  color: #06140b;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  font-weight: 900;
}

.call-strip {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 48;
  grid-template-columns: 1fr 1fr;
}

.call-strip a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.call-strip a:nth-child(2) {
  background: #25d366;
}

.note {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .nav {
    gap: 12px;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    background: rgba(5, 5, 5, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

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

  .nav-links a {
    padding: 12px 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-actions {
    display: none;
  }

  .section-head,
  .split,
  .split.reverse,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .stats,
  .menu-grid {
    grid-template-columns: 1fr 1fr;
  }

  .menu-items-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-mosaic,
  .gallery-mosaic-large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .menu-text {
    columns: 1;
  }
}

@media (max-width: 640px) {
  .brand img {
    width: 126px;
  }

  .hero {
    min-height: 78svh;
  }

  .hero.short {
    min-height: 52svh;
  }

  .hero-content {
    padding: 72px 0 54px;
  }

  .section {
    padding: 68px 0;
  }

  .feature-grid,
  .stats,
  .gallery-grid,
  .menu-grid,
  .menu-category-head,
  .form {
    grid-template-columns: 1fr;
  }

  .menu-tabs {
    top: 78px;
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu-card {
    padding: 18px;
  }

  .menu-card-head {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .media-stack {
    grid-template-columns: 1fr;
  }

  .media-stack img {
    height: min(78vh, 560px);
  }

  .media-stack img:nth-child(2) {
    margin-top: 0;
  }

  .gallery-mosaic,
  .gallery-mosaic-large {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .gallery-tile,
  .gallery-tile.tall,
  .gallery-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-tile img {
    aspect-ratio: 4 / 5;
    height: auto;
  }

  .pdf-panel object,
  .pdf-panel iframe {
    height: 520px;
  }

  .call-strip {
    display: grid;
  }

  .floating-whatsapp {
    display: none;
  }
}
