:root {
  --bg: #ffffff;
  --paper: #ffffff;
  --ink: #111111;
  --muted: #4f4f4f;
  --accent: #9f8440;
  --dark: #0a0a0a;
  --gold: #a88a3d;
  --radius: 14px;
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.1;
  margin: 0 0 0.5rem;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(8px);
  background: rgba(18, 16, 15, 0.88);
}

.site-header-light {
  background: #0a0a0a;
  border-bottom: 1px solid #1d1d1d;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-wrap-light {
  padding: 0.58rem 0;
  position: relative;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.logo {
  color: #fff;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.4px;
}

.logo-dark {
  color: #f4f0e6;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.site-nav {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.site-nav a {
  color: #f8f4e9;
  font-size: 0.95rem;
}

.site-nav-light a {
  color: #e9e3d6;
  font-size: 0.82rem;
}

.menu-btn {
  display: none;
  border: 1px solid #c7a24a;
  background: transparent;
  color: #fff;
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
}

.menu-btn-light {
  color: #f3ecdc;
  border-color: #4b4539;
  min-width: 42px;
  padding: 0.34rem 0.6rem;
  font-size: 0;
  line-height: 1;
}

.menu-btn-light::before {
  content: "☰";
  font-size: 1.05rem;
}

.menu-btn-light.active::before {
  content: "✕";
}

.signin-link {
  color: #f2ead9;
  font-size: 0.8rem;
}

/* Mobile-menu-only links: hidden on desktop, never use display:none globally (breaks mobile cascade) */
@media (min-width: 921px) {
  .nav-mobile-only {
    display: none !important;
  }
}

.location-strip {
  border-top: 1px solid #1f1f1f;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  color: #c8c1b2;
  padding: 0.2rem 0 0.28rem;
}

.location-strip a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero {
  position: relative;
  min-height: 58vh;
  display: grid;
  place-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.52)),
    url("images/hero-exterior.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  color: #fff;
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.hero-content p {
  color: #f3ecd9;
  max-width: 640px;
  margin: 0 auto;
}

.hero-content h1 {
  margin: 0.2rem 0 0.35rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.hero .eyebrow {
  color: var(--gold);
}

.center {
  text-align: center;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: nowrap;
  align-items: center;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1b1b1b;
  margin-top: 0.5rem;
}

.btn:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-small {
  padding: 0.62rem 1rem;
}

.section {
  padding: 4.6rem 0;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 2rem;
  align-items: center;
}

.reverse {
  grid-template-columns: 1fr 1.1fr;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: var(--paper);
  border: 1px solid #ececec;
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.ticks {
  padding-left: 1.1rem;
}

.ticks li {
  margin-bottom: 0.45rem;
}

.section-dark {
  background: var(--dark);
  color: #f4efe8;
}

.section-dark p {
  color: #e9dfcb;
}

.image-box {
  min-height: 360px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background-image: url("images/interior-bar.png");
  background-size: cover;
  background-position: center;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.details-section {
  background: #fafafa;
  border-top: 1px solid #ededed;
  border-bottom: 1px solid #ededed;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.explore-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.reviews-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.reviews-ticker {
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid #e9e9e9;
  border-radius: var(--radius);
  background: #fff;
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}

.review-chip {
  min-width: 320px;
  max-width: 420px;
  margin: 0.85rem 0.6rem;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 0.85rem;
}

.review-chip p {
  margin: 0.35rem 0;
}

.review-meta {
  color: var(--muted);
  font-size: 0.88rem;
}

.events-subtitle {
  color: var(--muted);
  margin-bottom: 1rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.event-card .event-date {
  color: var(--accent);
  font-weight: 600;
}

.event-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.event-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.8rem;
}

.event-btn {
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 0.42rem 0.8rem;
  cursor: pointer;
  font-weight: 600;
}

.event-btn.active {
  background: var(--accent);
  border-color: var(--accent);
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.detail-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1rem;
}

.detail-card p {
  margin: 0.35rem 0;
}

.gallery-grid {
  margin-top: 1.8rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 180px 180px;
}

.gallery-item {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
}

.one {
  grid-column: span 2;
  background-image: url("images/gallery-1.png");
}

.two {
  background-image: url("images/gallery-2.png");
}

.three {
  background-image: url("images/gallery-3.png");
}

.four {
  grid-column: span 2;
  background-image: url("images/interior-dining.png");
}

.photo-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  padding: 0.8rem;
}

.photo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 0.8rem;
}

.menu-wrap {
  max-width: 840px;
}

.menu-image {
  width: 100%;
  max-width: 640px;
  display: block;
  margin: 1.3rem auto 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.section-accent {
  background: #faf8f2;
}

.section-soft {
  background: #f0f3f3;
}

#offers {
  padding: 3.6rem 0;
}

#offers h2 {
  margin-bottom: 1.1rem;
}

#offers .btn-outline {
  margin-top: 0;
  padding: 0.72rem 1.7rem;
}

.booking {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.booking-form {
  background: var(--paper);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.2rem;
  display: grid;
  gap: 0.75rem;
}

.booking-form label {
  font-size: 0.9rem;
  color: var(--muted);
  display: grid;
  gap: 0.25rem;
}

.booking-form input,
.booking-form select {
  border: 1px solid #dedede;
  border-radius: 8px;
  padding: 0.68rem 0.75rem;
  font: inherit;
}

.site-footer {
  background: #0a0a0a;
  color: #f8f3e7;
  padding: 2.2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}

.site-footer a {
  color: #d6b35a;
}

.site-footer a:hover {
  color: #fff;
}

.hero {
  min-height: 58vh;
}

.top-contact {
  background: #0a0a0a;
  color: #fff;
  font-size: 0.88rem;
}

.top-contact .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}

.top-contact a {
  color: var(--gold);
}

.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 58vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  margin: 0 auto;
}

.page-hero {
  color: #fff;
  padding: 4.5rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.55)),
    url("images/hero-exterior.png") center/cover no-repeat;
}

.page-hero h1 {
  margin-bottom: 0.4rem;
}

.section-title {
  margin-bottom: 0.9rem;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.menu-item {
  border: 1px solid #ececec;
  border-radius: var(--radius);
  padding: 1rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.menu-item h3 {
  display: flex;
  justify-content: space-between;
  font-size: 1.5rem;
}

.menu-item p {
  margin: 0.3rem 0;
  color: var(--muted);
}

.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-page-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviews-wrap {
  max-width: 920px;
  margin: 0 auto;
}

.map-frame {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.contact-card {
  border: 1px solid #ececec;
  border-radius: var(--radius);
  padding: 1.2rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0.35rem 0;
}

.auth-wrap {
  max-width: 860px;
  display: grid;
  gap: 1rem;
}

.auth-tabs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.2rem;
}

.auth-tab {
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #111;
  border-radius: 999px;
  padding: 0.5rem 0.95rem;
  cursor: pointer;
  font-weight: 600;
}

.auth-tab.active {
  background: var(--accent);
  border-color: var(--accent);
}

.auth-panel {
  display: none;
}

.auth-panel.active {
  display: block;
}

.auth-panel {
  padding: 1.4rem 1.25rem;
}

.auth-panel h2 {
  margin-bottom: 0.75rem;
}

.auth-panel p {
  margin: 0 0 0.9rem;
}

.auth-panel .btn {
  margin-top: 0.4rem;
}

.auth-form {
  max-width: 540px;
  display: grid;
  gap: 0.85rem;
}

.auth-status {
  min-height: 1.2rem;
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hidden-auth {
  display: none;
}

.chat-toggle {
  position: fixed;
  bottom: 16px;
  right: 16px;
  border: 0;
  border-radius: 999px;
  background: #0a0a0a;
  color: var(--gold);
  padding: 0.8rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
  z-index: 30;
  box-shadow: var(--shadow);
}

.chat-panel {
  position: fixed;
  right: 16px;
  bottom: 72px;
  width: min(360px, calc(100vw - 32px));
  border-radius: 14px;
  border: 1px solid #2b2b2b;
  background: #fff;
  box-shadow: var(--shadow);
  display: none;
  z-index: 31;
}

.chat-panel.open {
  display: block;
}

.chat-head {
  background: #0a0a0a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.9rem;
  border-radius: 14px 14px 0 0;
}

.chat-head button {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
}

.chat-body {
  padding: 0.85rem;
}

.chat-response {
  margin: 0.5rem 0 0.8rem;
  color: var(--muted);
  min-height: 1.3rem;
}

.chat-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.quick-reply {
  border: 1px solid #d8d8d8;
  background: #fff;
  color: #121212;
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
}

.chat-links {
  margin-top: 0.8rem;
}

.chat-links a {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 920px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-wrap-light {
    padding: 0.5rem 0;
  }

  .nav-left {
    gap: 0.45rem;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    box-sizing: border-box;
    background-color: #000 !important;
    background-image: none !important;
    padding: 4.2rem 1rem 1.2rem;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
    min-height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    z-index: 9999;
    isolation: isolate;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    border-right: 1px solid rgba(168, 138, 61, 0.5);
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.38);
  }

  .site-nav.open {
    display: flex !important;
    background-color: #000 !important;
  }

  .site-nav-light a {
    font-size: 1.02rem;
    color: #f6edd8;
    width: 100%;
    padding: 0.55rem 0.35rem;
    border-bottom: 1px solid rgba(168, 138, 61, 0.18);
  }

  .site-nav-light a:hover,
  .site-nav-light a:focus {
    color: var(--gold);
  }

  .site-nav .nav-mobile-only {
    display: flex !important;
    align-items: center;
  }

  .site-nav a.nav-mobile-only.btn {
    display: inline-flex !important;
  }

  .site-nav .nav-mobile-only.signin-link {
    margin-top: 0.5rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(168, 138, 61, 0.35);
    width: 100%;
  }

  .site-nav .nav-mobile-only.btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.35rem;
  }

  .menu-btn {
    display: inline-block;
    position: relative;
    z-index: 10001;
    padding: 0.3rem 0.5rem;
  }

  .nav-right {
    display: none;
  }

  .logo-dark {
    font-size: 0.86rem;
    letter-spacing: 0.13em;
    position: relative;
    left: auto;
    transform: none;
    z-index: 10001;
  }

  body.nav-open .site-header {
    z-index: 10000;
    background: #000 !important;
    backdrop-filter: none !important;
  }

  .location-strip {
    font-size: 0.64rem;
    gap: 0.4rem;
    padding: 0.2rem 0 0.3rem;
  }

  .hero {
    min-height: 52vh;
    background-position: center;
  }

  .hero .container {
    min-height: 52vh;
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
  }

  .hero-content h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .hero-content p {
    font-size: 0.92rem;
  }

  .hero-actions .btn {
    min-width: 132px;
    text-align: center;
  }

  .split,
  .reverse,
  .booking,
  .footer-grid,
  .details-grid {
    grid-template-columns: 1fr;
  }

  .menu-list,
  .drinks-grid,
  .gallery-page-grid,
  .contact-grid,
  .explore-grid,
  .reviews-grid,
  .events-grid {
    grid-template-columns: 1fr;
  }

  .review-chip {
    min-width: 260px;
  }

  .auth-tabs {
    gap: 0.45rem;
  }

  .auth-tab {
    padding: 0.46rem 0.8rem;
  }

  .auth-panel {
    padding: 1rem;
  }

  #offers {
    padding: 2.7rem 0;
  }

  #offers h2 {
    margin-bottom: 0.9rem;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .photo-cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 170px);
  }

  .one,
  .four {
    grid-column: span 2;
  }

  .chat-toggle {
    bottom: 12px;
    right: 12px;
    padding: 0.7rem 0.95rem;
    font-size: 0.85rem;
  }

  .chat-panel {
    right: 10px;
    bottom: 62px;
    width: min(360px, calc(100vw - 20px));
  }
}
