:root {
  --ink: #14110e;
  --ink-soft: #2c261f;
  --paper: #f6efe4;
  --paper-2: #efe4d2;
  --cream: #fbf6ee;
  --gold: #c4a35a;
  --gold-deep: #9a7a32;
  --clay: #8c4a2f;
  --line: rgba(20, 17, 14, 0.12);
  --white: #fffdf8;
  --shadow: 0 24px 60px rgba(20, 17, 14, 0.14);
  --radius: 22px;
  --header: 84px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--serif); line-height: 1.12; margin: 0 0 0.4em; font-weight: 600; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -999px; top: 8px;
}
.skip-link:focus { left: 12px; background: #fff; padding: 8px 12px; z-index: 80; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251, 246, 238, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-bar {
  min-height: var(--header);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo {
  height: 56px; width: auto; display: block;
}
.brand-logo-footer { height: 78px; }
.brand-logo-admin { height: 64px; }
.brand-logo-login { height: 88px; margin: 0 auto 8px; }
.brand-text { display: flex; flex-direction: column; }
.brand-text strong { font-family: var(--serif); font-size: 22px; letter-spacing: 0.04em; }
.brand-text small { font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em; color: #6b6256; }

.site-nav { display: flex; align-items: center; gap: 10px; }
.nav-link {
  padding: 10px 12px; font-size: 14px; font-weight: 600;
  color: var(--ink-soft);
}
.nav-link.is-active, .nav-item.is-active > .nav-link { color: var(--gold-deep); }
.nav-item { position: relative; }
.dropdown {
  position: absolute; top: calc(100% - 4px); left: 0; min-width: 210px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 16px; padding: 10px; box-shadow: var(--shadow);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: 0.2s ease;
}
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1; pointer-events: auto; transform: none;
}
.dropdown a {
  display: block; padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 600;
}
.dropdown a:hover, .dropdown a.is-current { background: var(--paper-2); }
.nav-cta { margin-left: 8px; }
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; position: relative; }
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 6px 8px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 22px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: 0.2s ease;
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: #d3b56c; }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-ghost { border-color: rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-line { border-color: var(--ink); background: transparent; }

.hero {
  position: relative; min-height: calc(100vh - var(--header));
  display: grid; place-items: end start;
  color: #fff; overflow: hidden;
}
.hero-media, .page-hero-media {
  position: absolute; inset: 0;
}
.hero-track { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; pointer-events: none;
  transition: opacity 0.9s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-media img, .page-hero-media img, .hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-media::after, .page-hero-media::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background:
    linear-gradient(90deg, rgba(15,13,11,0.55) 0%, rgba(15,13,11,0.18) 58%, rgba(15,13,11,0.12) 100%),
    linear-gradient(180deg, rgba(15,13,11,0.12), rgba(15,13,11,0.66) 82%);
  pointer-events: none;
}
.hero-arrow {
  position: absolute; top: 36%; transform: translateY(-50%);
  z-index: 5; width: 48px; height: 48px; padding: 0;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.35);
  background: rgba(15,13,11,0.38); color: #fff; cursor: pointer;
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  transition: 0.2s ease;
}
.hero-arrow svg { width: 22px; height: 22px; display: block; }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }
.hero-arrow:hover, .hero-arrow:focus-visible {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  outline: none;
}
.hero-dots {
  position: absolute; z-index: 5;
  right: 28px; bottom: 28px;
  display: flex; align-items: center; gap: 10px;
}
.hero-dot {
  width: 10px; height: 10px; padding: 0; border: 0; border-radius: 999px;
  background: rgba(255,255,255,0.42); cursor: pointer;
  transition: 0.25s ease;
}
.hero-dot.is-active { width: 28px; background: var(--gold); }
.hero-dot:hover, .hero-dot:focus-visible {
  background: #fff; outline: none;
}
.hero-copy, .page-hero-copy { position: relative; z-index: 4; padding: 80px 0 72px; }
.hero-copy { pointer-events: none; }
.hero-copy a { pointer-events: auto; }
.eyebrow {
  display: inline-block; margin-bottom: 14px;
  letter-spacing: 0.22em; text-transform: uppercase; font-size: 12px; font-weight: 700;
  color: var(--gold);
}
.hero h1, .page-hero h1 { font-size: clamp(48px, 8vw, 92px); max-width: 12ch; }
.hero p { max-width: 38rem; font-size: 18px; color: rgba(255,255,255,0.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.section { padding: 88px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(34px, 5vw, 56px); }
.muted { color: #6b6256; }
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split img { width: 100%; height: 520px; object-fit: cover; border-radius: 28px; }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.stat { padding: 18px 0 0; border-top: 1px solid var(--line); }
.stat b { display: block; font-family: var(--serif); font-size: 32px; }
.stat span { font-size: 13px; color: #6b6256; }
.seating-row { margin: 8px 0 28px; max-width: 420px; }

.card-grid, .amenity-grid, .gallery-grid, .menu-grid { display: grid; gap: 22px; }
.amenity-grid { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 10px 30px rgba(20,17,14,0.06);
  border: 1px solid rgba(20,17,14,0.05);
}
.card img { width: 100%; height: 240px; object-fit: cover; }
.card-body { padding: 22px 22px 26px; }
.card h3 { font-size: 30px; }
.card .meta { font-size: 13px; color: var(--gold-deep); font-weight: 700; letter-spacing: 0.04em; }
.page-hero {
  position: relative; min-height: 420px; color: #fff;
  display: grid; align-items: end;
}
.page-hero-copy { padding: 70px 0 54px; }
.page-hero h1 { font-size: clamp(44px, 7vw, 80px); }

.feature-list { display: grid; gap: 12px; margin: 24px 0 32px; }
.feature-list li {
  padding-left: 22px; position: relative;
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 10px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
}
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid a {
  border-radius: 18px; overflow: hidden; display: block; height: 260px;
}
.gallery-grid img, .mosaic img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s ease; }
.gallery-grid a:hover img, .mosaic a:hover img { transform: scale(1.04); }
.mosaic { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-auto-rows: 220px; gap: 14px; }
.mosaic a { overflow: hidden; border-radius: 18px; }
.mosaic a:first-child { grid-row: span 2; }

.form {
  display: grid; gap: 16px;
  background: var(--white); padding: 32px; border-radius: 24px;
  border: 1px solid var(--line);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 8px; font-size: 13px; font-weight: 700; }
input, select, textarea {
  width: 100%; min-height: 48px; padding: 12px 14px;
  border: 1px solid var(--line); border-radius: 12px;
  font: inherit; background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.alert {
  padding: 14px 16px; border-radius: 12px; margin-bottom: 18px; font-weight: 600;
}
.alert-success { background: #e8f4ea; color: #215c2e; }
.alert-error { background: #fdecea; color: #8a1f14; }

.menu-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.menu-tabs a {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line);
  font-size: 13px; font-weight: 700;
}
.menu-tabs a.is-active, .menu-tabs a:hover { background: var(--ink); color: var(--paper); }
.menu-section { margin-bottom: 48px; }
.menu-item {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.menu-item h3 { font-size: 28px; }
.price { white-space: nowrap; text-align: right; font-weight: 700; }
.price small {
  display: block; margin-top: 4px; color: var(--clay);
  font-size: 12px; letter-spacing: 0.04em;
}
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 40px; }
.info-card {
  background: var(--ink); color: var(--paper); padding: 32px;
  border-radius: 24px;
}
.info-card a { color: var(--gold); }

.site-footer { background: #0f0d0b; color: #d8cfc2; padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 0.9fr 1fr; gap: 32px; }
.footer-lead { margin-top: 16px; max-width: 28ch; }
.site-footer h3 { color: #fff; font-size: 22px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: var(--gold); }
.social-icons { display: flex; gap: 12px; margin-top: 8px; }
.social-icons a {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--gold);
  transition: 0.2s ease;
}
.social-icons a:hover { background: var(--gold); color: #0f0d0b; border-color: var(--gold); }
.social-icons svg { width: 20px; height: 20px; display: block; }
.footer-base {
  margin-top: 48px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; gap: 12px; font-size: 13px;
}

.lightbox {
  position: fixed; inset: 0; background: rgba(10,8,6,0.88);
  display: grid; place-items: center; z-index: 80; padding: 24px;
}
.lightbox img { max-width: min(1100px, 92vw); max-height: 86vh; object-fit: contain; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  background: #fff; border: 0; border-radius: 999px; padding: 10px 16px; font-weight: 700;
}

.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 260px 1fr; }
.admin-side { background: #0f0d0b; color: #efe4d2; padding: 28px 20px; }
.admin-side a { display: block; padding: 10px 12px; border-radius: 10px; margin-bottom: 4px; }
.admin-side a.is-active, .admin-side a:hover { background: rgba(196,163,90,0.16); color: var(--gold); }
.admin-main { padding: 32px; }
.table-wrap { overflow: auto; background: #fff; border-radius: 16px; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); font-size: 14px; }
th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: #6b6256; }
.login-card {
  width: min(420px, calc(100% - 32px)); margin: 12vh auto;
  background: #fff; padding: 36px; border-radius: 24px; box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .split, .contact-grid, .footer-grid, .amenity-grid, .gallery-grid { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .mosaic a:first-child { grid-row: span 1; }
}
@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: var(--header);
    background: var(--cream); flex-direction: column; align-items: stretch;
    padding: 16px 20px 24px; border-bottom: 1px solid var(--line);
  }
  .site-nav.is-open { display: flex; }
  .dropdown { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; }
  .form-row, .stat-row, .footer-grid, .amenity-grid, .gallery-grid, .split, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero { min-height: 88vh; }
  .hero-arrow {
    top: 92px; transform: none; width: 40px; height: 40px;
  }
  .hero-arrow-prev { left: 12px; }
  .hero-arrow-next { right: 12px; }
  .hero-dots { right: 16px; bottom: 18px; }
  .split img { height: 320px; }
  .brand-logo { height: 48px; }
  .brand-logo-footer { height: 64px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
}
