:root {
  --bg: #070404;
  --panel: #120808;
  --wine: #7a071c;
  --wine-soft: #a30d2b;
  --gold: #d6a94c;
  --gold-soft: #f2d384;
  --cream: #fff7e6;
  --muted: #bcae9a;
  --line: rgba(214, 169, 76, 0.24);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 20% 0%, rgba(122, 7, 28, 0.45), transparent 36rem),
    linear-gradient(180deg, #050303 0%, #130707 42%, #070404 100%);
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  background: linear-gradient(180deg, rgba(0,0,0,.78), transparent);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, serif;
  color: var(--gold-soft);
  letter-spacing: 1px;
}
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }

.nav-links { display: flex; align-items: center; gap: 22px; color: #f6dfb0; font-size: 14px; }
.button {
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), #8e6425);
  color: #180909;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.button.ghost { background: rgba(0,0,0,.25); color: var(--gold-soft); }

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero video, .hero .fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.2)), linear-gradient(0deg, var(--bg), transparent 38%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 80px;
}
.eyebrow { color: var(--gold-soft); text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 800; }
h1, h2, h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-weight: 500; }
h1 { font-size: clamp(56px, 11vw, 142px); line-height: .85; color: #fff5dc; }
.hero p { max-width: 620px; color: #f2d9b4; font-size: clamp(17px, 2.1vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.hero-badges span {
  border: 1px solid rgba(242, 211, 132, .36);
  background: rgba(0, 0, 0, .32);
  color: #f6dfb0;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 800;
}

section { padding: 78px clamp(18px, 4vw, 54px); }
.wrap { width: min(1120px, 100%); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; margin-bottom: 30px; }
.section-head h2 { font-size: clamp(34px, 5vw, 64px); }
.section-head p, .muted { color: var(--muted); line-height: 1.65; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  border: 1px solid var(--line);
  background: rgba(18, 8, 8, .72);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.card img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.card-body { padding: 20px; }
.card h3 { color: var(--gold-soft); font-size: 26px; margin-bottom: 8px; }
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 211, 132, .58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}

.experience {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
}
.split-showcase {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.split-copy h2 {
  font-size: clamp(34px, 5vw, 64px);
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.feature-list div,
.proof-card,
.review {
  border: 1px solid var(--line);
  background: rgba(18, 8, 8, .68);
  border-radius: 8px;
  padding: 18px;
}
.feature-list strong,
.proof-card strong,
.review strong {
  display: block;
  color: var(--gold-soft);
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 21px;
}
.feature-list span,
.proof-card p,
.review p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}
.media-arch {
  min-height: 520px;
  border: 1px dashed rgba(242, 211, 132, .55);
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  background: linear-gradient(135deg, rgba(122, 7, 28, .32), rgba(0,0,0,.35));
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}
.media-arch img {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.media-arch.has-media {
  display: block;
  padding: 0;
  border-style: solid;
}
.media-arch.has-media img { display: block; }
.media-arch.has-media .slot-note { display: none; }
.experience-copy {
  align-self: center;
  max-width: 760px;
}
.placeholder {
  border: 1px dashed rgba(242, 211, 132, .55);
  background: linear-gradient(135deg, rgba(122, 7, 28, .32), rgba(0,0,0,.35));
  border-radius: 8px;
  min-height: 310px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.placeholder strong { color: var(--gold-soft); font-size: 24px; font-family: Georgia, serif; }
.placeholder img {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border-radius: 8px;
}
.placeholder.has-media {
  padding: 0;
  border-style: solid;
  overflow: hidden;
  background: #120606;
}
.placeholder.has-media img { display: block; }
.placeholder.has-media .slot-note { display: none; }
.placeholder.has-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .28));
  pointer-events: none;
}
.placeholder:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 211, 132, .58);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}
.gallery-strip {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  min-height: 560px;
}
.gallery-main,
.gallery-tile {
  position: relative;
  border: 1px dashed rgba(242, 211, 132, .45);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(122, 7, 28, .28), rgba(0,0,0,.42));
  overflow: hidden;
  padding: 24px;
  display: flex;
  align-items: end;
}
.gallery-main img,
.gallery-tile img {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-main.has-media,
.gallery-tile.has-media {
  padding: 0;
  border-style: solid;
}
.gallery-main.has-media img,
.gallery-tile.has-media img { display: block; }
.gallery-main.has-media .slot-note,
.gallery-tile.has-media .slot-note { display: none; }
.gallery-side {
  display: grid;
  gap: 18px;
}
.gallery-tile { min-height: 271px; }
.event-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(26px, 4vw, 46px) 0;
}
.event-band h2 {
  font-size: clamp(34px, 5vw, 62px);
}
.event-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.event-grid span {
  min-width: 128px;
  text-align: center;
  border: 1px solid rgba(242, 211, 132, .32);
  border-radius: 999px;
  padding: 11px 14px;
  color: #f6dfb0;
  font-weight: 800;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.testimonials .section-head {
  margin-bottom: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.from-left { transform: translateX(-34px); }
.reveal.from-right { transform: translateX(34px); }
.reveal.in-view {
  opacity: 1;
  transform: translate(0, 0);
}
.reveal.delay-1 { transition-delay: .12s; }
.reveal.delay-2 { transition-delay: .22s; }
.reveal.delay-3 { transition-delay: .32s; }

.menu-list {
  columns: 2;
  column-gap: 42px;
  color: #ead6b5;
}
.menu-list p { break-inside: avoid; margin: 0 0 13px; border-bottom: 1px solid rgba(255,255,255,.08); padding-bottom: 10px; }
.menu-list strong { color: var(--gold-soft); }

.pdf-menu-showcase {
  display: grid;
  grid-template-columns: minmax(280px, 430px) 1fr;
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}
.pdf-menu-photo {
  position: relative;
  min-height: 430px;
  max-width: 430px;
  border-top-left-radius: 999px;
  border-top-right-radius: 999px;
  overflow: hidden;
  background: #120606;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .34);
}
.pdf-menu-photo img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.pdf-menu-copy {
  position: relative;
  padding-left: clamp(28px, 4vw, 58px);
}
.pdf-menu-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: -36px;
  bottom: -36px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 247, 230, .78) 18%, rgba(255, 247, 230, .78) 82%, transparent);
}
.pdf-menu-copy::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  transform: translateY(-50%);
}
.pdf-menu-copy h2 {
  font-size: clamp(38px, 5.2vw, 68px);
  margin-top: 18px;
}
.pdf-menu-copy p {
  max-width: 660px;
  font-size: clamp(16px, 1.7vw, 20px);
}
.pdf-menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
  padding-left: clamp(28px, 7vw, 150px);
}

.menu-pages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}
.menu-page {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #120606;
  min-height: 360px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}
.menu-page img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}
.menu-page-empty {
  border-style: dashed;
  background: linear-gradient(135deg, rgba(122, 7, 28, .32), rgba(0,0,0,.35));
  padding: 24px;
  display: flex;
  align-items: end;
}
.menu-page-empty img { display: none; }
.menu-page-empty.has-media {
  display: block;
  padding: 0;
  border-style: solid;
}
.menu-page-empty.has-media img { display: block; }
.menu-page-empty.has-media .slot-note { display: none; }
.upload-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.upload-actions .small-btn[disabled] {
  opacity: .45;
  cursor: not-allowed;
}
.slot-status {
  color: var(--muted);
  font-size: 13px;
}
.slot-size {
  display: block;
  margin-top: 4px;
  color: #d8c4a4;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.info-tile {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: #ead6b5;
}
.info-tile strong { display: block; color: var(--gold-soft); margin-bottom: 8px; }

.map-box {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #160808;
}
.map-box iframe { width: 100%; height: 330px; border: 0; filter: grayscale(.18) contrast(1.05); }

.form-page, .admin-page {
  min-height: 100vh;
  padding: 32px 18px;
}
.panel {
  width: min(920px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  background: rgba(10, 5, 5, .9);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
}
label { display: grid; gap: 8px; color: var(--gold-soft); font-weight: 700; margin-bottom: 16px; }
input, textarea, select {
  width: 100%;
  border: 1px solid rgba(214,169,76,.34);
  background: #170a0a;
  color: var(--cream);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
}
textarea { min-height: 110px; resize: vertical; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.hidden { display: none !important; }
.admin-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.admin-tabs button, .small-btn {
  border: 1px solid var(--line);
  background: #1a0a0a;
  color: var(--gold-soft);
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
}
.admin-section { border-top: 1px solid var(--line); padding-top: 20px; margin-top: 20px; }
.slot {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}
.slot img { width: 140px; height: 100px; object-fit: cover; border-radius: 6px; background: #241010; }
.reservation-row { border-bottom: 1px solid rgba(255,255,255,.1); padding: 14px 0; }

footer {
  padding: 42px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
}
.footer-links a {
  color: var(--gold-soft);
}
.float-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: 0 16px 32px rgba(0,0,0,.35);
}

@media (max-width: 820px) {
  .nav-links a:not(.button) { display: none; }
  .section-head, .experience, .info-band, .split-showcase, .gallery-strip, .event-band, .proof-grid { grid-template-columns: 1fr; }
  .grid, .menu-pages, .pdf-menu-showcase { grid-template-columns: 1fr; }
  .feature-list, .event-grid { grid-template-columns: 1fr; }
  .media-arch, .media-arch img { min-height: 390px; }
  .gallery-strip { min-height: auto; }
  .gallery-main, .gallery-tile { min-height: 280px; }
  .pdf-menu-showcase { max-width: 520px; }
  .pdf-menu-photo {
    max-width: 360px;
    min-height: 360px;
    margin: 0 auto;
  }
  .pdf-menu-photo img { min-height: 360px; }
  .pdf-menu-copy { padding-left: 0; }
  .pdf-menu-copy::before, .pdf-menu-copy::after { display: none; }
  .pdf-menu-actions { padding-left: 0; }
  .menu-list { columns: 1; }
  .form-grid, .slot { grid-template-columns: 1fr; }
  .slot img { width: 100%; height: 180px; }
}
