:root {
  --ink: #050505;
  --paper: #090806;
  --panel: #11100d;
  --panel-soft: #17140f;
  --muted: #cfc6b8;
  --line: rgba(246, 184, 30, 0.24);
  --gold: #ffc313;
  --gold-deep: #c88a15;
  --charcoal: #0d0c0a;
  --cream: #15120d;
  --red: #c62020;
  --green: #ffc313;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --font-body: "Plus Jakarta Sans", Arial, sans-serif;
  --font-display: "Sora", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: #fff;
  font-family: var(--font-body);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  color: #fff;
  border-bottom: 1px solid rgba(255, 195, 19, 0.28);
  background: rgba(5, 5, 5, 0.92);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
}

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

.brand-logo {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  background: #000;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:hover {
  color: #fff;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  padding: 10px 15px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #090909;
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slideshow {
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.52) 38%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.1));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 90px);
  padding-top: 86px;
  color: #fff;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.9rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #090806;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}

.button.whatsapp {
  border: 1px solid #25d366;
  background: #25d366;
  color: #06130b;
}

.button.dark {
  border: 1px solid var(--gold);
  background: transparent;
  color: #fff;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin: 44px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  gap: 18px;
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
}

.hero-facts dd {
  margin: 4px 0 0;
  font-weight: 800;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.hero-dots span {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  transition: background 240ms ease, width 240ms ease;
}

.hero-dots span.is-active {
  width: 44px;
  background: var(--gold);
}

.offer-popup {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  top: 50%;
  z-index: 2;
  width: min(380px, calc(100% - 36px));
  border: 1px solid rgba(255, 195, 19, 0.55);
  border-radius: 8px;
  padding: 26px;
  background: rgba(5, 5, 5, 0.88);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
  transform: translateY(-50%);
  animation: offerPopupIn 520ms ease both;
}

.offer-popup[hidden] {
  display: none;
}

.offer-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.offer-popup h2 {
  max-width: 290px;
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.offer-popup p:not(.eyebrow) {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
}

.offer-popup-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-popup-actions .button {
  flex: 1 1 140px;
}

@keyframes offerPopupIn {
  from {
    opacity: 0;
    transform: translate(24px, -50%) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }
}

.section,
.offer-section,
.split-section,
.gallery-section,
.visit-section,
.reserve-section {
  padding: clamp(68px, 10vw, 130px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split-section p,
.visit-panel p,
.reserve-section p {
  color: var(--muted);
}

.experience-list p {
  color: var(--muted);
}

.offer-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.offer-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.offer-copy h2 {
  max-width: 720px;
}

.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.offer-section > img,
.menu-poster > img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.menu-poster {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 26px);
  background: linear-gradient(180deg, rgba(255, 195, 19, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: none;
}

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

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

.menu-category {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
}

.menu-category:nth-child(1) {
  --food-image: url("assets/food-vegetarian.jpg");
}

.menu-category:nth-child(2) {
  --food-image: url("assets/food-chicken.jpg");
}

.menu-category:nth-child(3) {
  --food-image: url("assets/food-seafood.jpg");
}

.menu-category:nth-child(4) {
  --food-image: url("assets/food-rice-noodles.jpg");
}

.menu-category:nth-child(5) {
  --food-image: url("assets/food-beef.jpg");
}

.menu-category:nth-child(6) {
  --food-image: url("assets/food-mutton.jpg");
}

.menu-category:nth-child(7) {
  --food-image: url("assets/food-burger.jpg");
}

.menu-category:nth-child(8) {
  --food-image: url("assets/food-breads.jpg");
}

.menu-category:nth-child(9) {
  --food-image: url("assets/food-egg.jpg");
}

.menu-category h3 {
  margin: -16px -16px 14px;
  border-radius: 8px 8px 0 0;
  padding: 11px 14px;
  background: linear-gradient(90deg, var(--gold), #f7a90b);
  color: #080706;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-category ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-category li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  min-height: 34px;
  border-bottom: 1px dotted rgba(255, 195, 19, 0.3);
  padding: 0 0 8px;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
  font-size: 0.88rem;
}

.menu-category li span {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.menu-category li span::after {
  content: none;
}

.menu-category li b {
  min-width: 48px;
  text-align: right;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
  padding-left: 8px;
  white-space: nowrap;
  background: transparent;
  border-radius: 0;
  font-weight: 800;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 7vw, 88px);
  background:
    linear-gradient(135deg, rgba(255, 195, 19, 0.08), transparent 42%),
    var(--charcoal);
  color: #fff;
}

.split-section p {
  color: rgba(255, 255, 255, 0.7);
}

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

.experience-list article {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 18px;
}

.gallery-section {
  background: #050505;
  color: #fff;
}

.gallery-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

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

.gallery-item {
  position: relative;
  min-height: 220px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #050505;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

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

.gallery-item figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border-radius: 8px;
  padding: 10px 12px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  font-weight: 800;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(300px, 1.05fr);
  gap: 20px;
  align-items: stretch;
}

.visit-panel,
.map-card,
.reservation-form {
  border-radius: 8px;
}

.visit-panel {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.visit-details {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.map-card {
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 22% 18%, rgba(198, 32, 32, 0.38), transparent 24%),
    linear-gradient(135deg, rgba(255, 195, 19, 0.24), rgba(5, 5, 5, 0.92)),
    repeating-linear-gradient(45deg, transparent 0 20px, rgba(255, 195, 19, 0.08) 20px 22px);
  box-shadow: var(--shadow);
}

.map-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.map-card strong {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.reserve-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 6vw, 76px);
  background:
    linear-gradient(135deg, rgba(198, 32, 32, 0.12), transparent 44%),
    var(--paper);
}

.reservation-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  background: #080706;
  color: #fff;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

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

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

.form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer a {
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 30;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.admin-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(255, 195, 19, 0.14), transparent 28%),
    var(--paper);
}

.admin-shell {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px) 0;
}

.admin-hero,
.admin-panel,
.admin-stats article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.admin-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 4vw, 36px);
}

.admin-hero h1 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.admin-hero p:not(.eyebrow) {
  color: var(--muted);
}

.admin-source {
  margin: 12px 0 0;
  color: var(--gold);
  font-weight: 800;
}

.admin-actions,
.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.admin-stats article {
  padding: 18px;
}

.admin-stats span,
.booking-table small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.admin-stats strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  margin-top: 8px;
}

.admin-panel {
  padding: clamp(16px, 3vw, 26px);
}

.admin-toolbar {
  align-items: end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.admin-toolbar label {
  min-width: min(100%, 260px);
}

.booking-table-wrap {
  overflow-x: auto;
}

.booking-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
}

.booking-table th,
.booking-table td {
  border-bottom: 1px solid rgba(255, 195, 19, 0.18);
  padding: 14px 10px;
  text-align: left;
  vertical-align: top;
}

.booking-table th {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-table td {
  color: rgba(255, 255, 255, 0.88);
}

.booking-table select {
  min-width: 140px;
  padding: 9px 10px;
}

.table-action {
  border: 1px solid rgba(198, 32, 32, 0.6);
  border-radius: 8px;
  padding: 9px 12px;
  background: rgba(198, 32, 32, 0.16);
  color: #fff;
  cursor: pointer;
}

.empty-bookings {
  margin: 18px 0 0;
  color: var(--muted);
}

.admin-login {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(circle at top, rgba(255, 195, 19, 0.18), transparent 32%),
    rgba(5, 5, 5, 0.96);
}

.admin-login[hidden],
.admin-shell[hidden] {
  display: none;
}

.admin-login-card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 34px);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.admin-login-card img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.admin-login-card h1 {
  font-size: clamp(2rem, 6vw, 3rem);
}

.admin-login-card .button {
  width: 100%;
  margin-top: 14px;
}

.admin-login-error {
  min-height: 24px;
  margin: 12px 0 0;
  color: #ff6b6b;
  font-weight: 800;
}

@media (max-width: 920px) {
  .menu-board,
  .admin-stats,
  .visit-details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-section,
  .offer-section,
  .gallery-grid,
  .visit-section,
  .reserve-section {
    grid-template-columns: 1fr;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .offer-popup {
    top: auto;
    right: 50%;
    bottom: 22px;
    width: min(520px, calc(100% - 36px));
    transform: translateX(50%);
    animation-name: offerPopupMobileIn;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 8px;
    background: rgba(20, 16, 12, 0.96);
  }

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

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-content h1 {
    max-width: 520px;
    font-size: clamp(2rem, 10.5vw, 3.15rem);
    line-height: 1.05;
  }

  .offer-popup {
    position: fixed;
    right: 50%;
    bottom: 14px;
    width: calc(100% - 28px);
    padding: 20px;
    transform: translateX(50%);
  }

  .offer-popup h2 {
    max-width: 240px;
  }

  .offer-popup-actions .button {
    flex-basis: 100%;
  }

  .hero-facts,
  .menu-poster,
  .visit-details,
  .reservation-form {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes offerPopupMobileIn {
  from {
    opacity: 0;
    transform: translate(50%, 24px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translate(50%, 0) scale(1);
  }
}

.scroll-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(34px) scale(0.98);
  transition:
    opacity 720ms ease,
    filter 720ms ease,
    transform 720ms ease;
  will-change: opacity, filter, transform;
}

.scroll-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.menu-category:nth-child(2),
.gallery-item:nth-child(2),
.experience-list article:nth-child(2) {
  transition-delay: 80ms;
}

.menu-category:nth-child(3),
.gallery-item:nth-child(3),
.experience-list article:nth-child(3) {
  transition-delay: 150ms;
}

.menu-category:nth-child(4),
.gallery-item:nth-child(4) {
  transition-delay: 220ms;
}

.menu-category:nth-child(5),
.gallery-item:nth-child(5) {
  transition-delay: 290ms;
}

@media (prefers-reduced-motion: reduce) {
  .offer-popup,
  .scroll-reveal {
    animation: none;
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

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

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
