/* ==========================================================================
   COMPONENTS & UI ELEMENTS
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. NAVIGATION HEADER & STATUS BADGE
   -------------------------------------------------------------------------- */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--accent-glass);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--accent-glass-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  width: 100%;
  max-width: 650px;
  gap: 1rem;
  box-shadow: var(--shadow-subtle);
  z-index: 100;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.burger-menu-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  padding: 0.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease, color 0.2s ease;
}

.burger-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-primary);
  text-decoration: none;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  list-style: none;
  white-space: nowrap;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 2px;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  border-bottom: 1px solid var(--accent-gold);
}

/* --------------------------------------------------------------------------
   1B. SLIDING NAV MARKER
   One gold underline that glides between links (js/nav-marker.js), instead
   of each link's own border switching on/off. Scoped to `.has-marker` so the
   plain per-link border-bottom above still works if JS never runs.
   -------------------------------------------------------------------------- */
.nav-links.has-marker {
  position: relative;
}

.nav-links.has-marker a {
  border-bottom: none;
  padding-bottom: 2px;
  color: var(--text-secondary);
  position: relative;
  z-index: 2;
}

.nav-links.has-marker a:hover,
.nav-links.has-marker a.active {
  color: var(--text-primary);
  border-bottom: none;
}

.nav-marker {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--accent-gold);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.48s cubic-bezier(0.16, 1, 0.3, 1),
              width 0.48s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease;
}

.btn-book {
  background: var(--text-primary);
  color: var(--bg-main);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-book:hover {
  background: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Hero Title */
.hero-content {
  margin-top: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 6.2vw, 6.8rem);
  line-height: 0.94;
  margin: 0 0 1rem 0;
  font-weight: 400;
  letter-spacing: -0.03em;
  width: 100%;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-primary);
  max-width: 580px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   2. HOMEPAGE BENTO STACK (DESKTOP: EQUAL SIZE CARDS | TABLET: BOTTOM 3-ROW)
   -------------------------------------------------------------------------- */
.bento-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  height: 100%;
  justify-content: space-between;
}

.bento-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: flex;
  background-size: cover;
  background-position: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease;
  cursor: pointer;
}

/* Desktop Layout (min-width: 1025px): Left Hero (65%) & Right Bento Stack (35%) */
@media (min-width: 1025px) {
  .bento-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
    height: 100%;
    justify-content: space-between;
  }

  .bento-card {
    flex: 1 1 0;
    min-height: 0;
    height: 100%;
    width: 100%;
    aspect-ratio: auto;
  }
}

/* Tablet Layout (769px - 1024px) Matching Tablet Reference Image */
@media (max-width: 1024px) and (min-width: 769px) {
  .main-header {
    max-width: 580px;
    margin: 0 auto;
  }

  .hero-content {
    text-align: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-title {
    font-size: clamp(3.2rem, 5.2vw, 4.6rem);
    text-align: center;
  }

  .hero-subtitle {
    text-align: center;
    max-width: 500px;
  }

  .bento-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    width: 100%;
    height: 100%;
  }

  .bento-card {
    width: 100%;
    height: 100%;
    min-height: 180px;
    flex: none;
    aspect-ratio: auto;
    border-radius: 20px;
  }

  /* restaurants.html's locations grid always has exactly 2 cards, not 3 —
     the generic 3-column grid above leaves an empty third column for it.
     Scoped to #locations (only that page) rather than a shared class, so
     it doesn't affect the homepage's 3-card grid. */
  #locations.bento-stack {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }

  #locations.bento-stack .bento-card {
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
}

.tablet-footer {
  text-align: center;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Phone Layout: Vertical Stack of Square Cards */
@media (max-width: 768px) {
  .bento-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
  }
  .bento-stack .bento-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    flex: none;
  }
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.2);
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 13, 18,0.92) 0%, rgba(10, 13, 18,0.2) 60%, rgba(10, 13, 18,0) 100%);
  transition: opacity 0.3s ease;
}

.bento-card-title {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  z-index: 2;
  letter-spacing: -0.01em;
}

.pill-btn,
/* The card's one real click target — .bento-badge below is purely
   decorative (aria-hidden) now that this covers the whole card, so
   there's a single destination and a single keyboard/focus stop. */
.bento-cover {
  position: absolute;
  inset: 0;
  z-index: 6;
  border-radius: 20px;
}
.bento-cover:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: -4px;
}

.bento-card .bento-badge {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-primary);
  padding: 0.55rem 1.1rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 5;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease, border-color 0.3s ease;
}

.bento-card .bento-badge .badge-arrow {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.bento-card:hover .bento-badge,
.pill-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.bento-card:hover .bento-badge .badge-arrow {
  transform: translateX(3px);
  background: var(--accent-gold);
  color: #000;
}

/* --------------------------------------------------------------------------
   3. MENU SECTION & FILTER CONTROLS
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.menu-nav-wrapper {
  position: sticky;
  top: 0;
  background: rgba(10, 13, 18, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1.5rem;
}

.menu-nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.menu-nav::-webkit-scrollbar {
  display: none;
}

.menu-filter {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.menu-filter:hover {
  color: var(--text-primary);
  border-color: var(--border-focus);
}

.menu-filter.active {
  background: var(--text-primary);
  color: var(--bg-main);
  border-color: var(--text-primary);
  font-weight: 600;
}

/* Dietary Toggle Pills */
.dietary-tags-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tag-btn.active {
  background: rgba(217, 164, 65, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

/* Menu Category Diamond Header */
.category-title-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 2rem 0 1.5rem 0;
  text-align: center;
}

.category-title-banner .category-line {
  height: 1px;
  width: 40px;
  background: linear-gradient(90deg, rgba(217, 164, 65,0) 0%, var(--accent-gold) 100%);
  position: relative;
}

.category-title-banner .category-line.line-right {
  background: linear-gradient(90deg, var(--accent-gold) 0%, rgba(217, 164, 65,0) 100%);
}

.category-title-banner .category-diamond {
  color: var(--accent-gold);
  font-size: 0.75rem;
}

.category-title-text {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--text-primary);
  font-weight: 400;
}

/* Minimalist Luxury Menu List & Items */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  min-height: 200px;
  padding: 0.5rem 0;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 0.5rem 0;
  background: transparent;
  border: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.menu-item:hover {
  transform: translateX(4px);
}

.menu-thumb-wrapper {
  flex-shrink: 0;
  width: 130px;
  height: 90px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--bg-card);
}

.menu-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item:hover .menu-thumb {
  transform: scale(1.06);
}

.menu-item-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.menu-name-row {
  display: flex;
  align-items: baseline;
  width: 100%;
}

.menu-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  white-space: nowrap;
}

.menu-symbol {
  font-size: 0.9rem;
  color: var(--accent-gold);
  margin-left: 0.4rem;
}

.menu-dots-leader {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(217, 164, 65, 0.35);
  margin: 0 0.8rem;
  position: relative;
  top: -4px;
}

.menu-price {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--text-primary);
  white-space: nowrap;
}

.menu-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  font-weight: 400;
  margin-top: 0.35rem;
  max-width: 95%;
}

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   4. ABOUT SECTION & AWARDS BENTO GRID
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
}

.grid-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s ease;
}

.grid-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
}

.location-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.location-badge {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-bottom: 0.75rem;
}

.location-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.location-address {
  font-size: 0.85rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
}

.location-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.location-hours {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.about-text-left {
  grid-column: span 3;
  min-height: 280px;
}

.about-img-portrait {
  grid-column: span 3;
  padding: 0;
  background: url('https://images.unsplash.com/photo-1577219491135-ce391730fb2c?auto=format&fit=crop&q=80') center/cover;
  min-height: 280px;
  border-radius: var(--radius-lg);
}

.award-card {
  grid-column: span 2;
  text-align: center;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
}

.award-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

.award-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
}

.about-img-landscape {
  grid-column: span 3;
  padding: 0;
  background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?auto=format&fit=crop&q=80') center/cover;
  min-height: 240px;
  border-radius: var(--radius-lg);
}

.about-story {
  grid-column: span 3;
}

.about-story h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.about-story p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .about-text-left, 
  .about-img-portrait, 
  .award-card, 
  .about-img-landscape, 
  .about-story {
    grid-column: span 6;
  }
}

/* --------------------------------------------------------------------------
   5. RESERVATION FORM
   -------------------------------------------------------------------------- */
.reservation-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

/* Location/method tab pills — originally menu.html's location switcher,
   promoted here now that reservation.html uses the same pattern too.
   menu.html keeps its own local copy (identical look; harmless duplicate,
   not yet migrated onto this shared version). */
.location-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.location-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.location-tab:hover { color: var(--text-primary); border-color: rgba(255, 255, 255, 0.28); }
.location-tab.active {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  background: rgba(217, 164, 65, 0.08);
}
.location-tab:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 3px; }

.reservation-header {
  margin-bottom: 2rem;
}

.reservation-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.reservation-sub {
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.reservation-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  min-width: 0; /* let grid tracks shrink below a long <select> option's intrinsic width */
}

select.form-input {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.form-label {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-bottom-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--accent-gold);
}

select.form-input {
  background-color: var(--bg-card);
  cursor: pointer;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

.form-submit {
  grid-column: 1 / -1;
  background: var(--text-primary);
  color: var(--bg-main);
  border: none;
  border-radius: var(--radius-pill);
  padding: 1.15rem;
  margin-top: 0.5rem;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   6. MODALS & OVERLAYS
   -------------------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: var(--bg-card);
  border: 1px solid var(--accent-glass-border);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-glow);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: var(--text-primary);
}

.modal-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.modal-body {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.res-code-box {
  background: var(--bg-elevated);
  border: 1px dashed var(--accent-gold);
  border-radius: var(--radius-sm);
  padding: 1rem;
  text-align: center;
  margin: 1rem 0;
}

.res-code-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}

.res-code-val {
  font-family: monospace;
  font-size: 1.4rem;
  color: var(--accent-gold);
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* Footer / Quick Info */
.site-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   7. DEDICATED LOCATION SECTIONS
   -------------------------------------------------------------------------- */
.location-detail-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-showcase-card {
  position: relative;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  min-height: 240px;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.showcase-content {
  position: relative;
  z-index: 2;
}

.location-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.feature-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: var(--bg-card-hover);
}

.feature-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.location-actions-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .location-features-grid {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   7B. VENUE BENTO (Stratford / Canary Wharf detail pages)
   Two photo slideshows (interior, food) and two editorial cards (the
   cuisine, this room) in an alternating grid. Was duplicated verbatim
   across both venue pages' local <style> blocks; lives here once now —
   each page's own <style> keeps only its hero rules. `.is-upcoming` /
   `.venue-note` are Canary Wharf-only (it hasn't opened yet, so its
   photography reads a shade quieter and there's no booking link — you
   can't book a table that doesn't exist).
   -------------------------------------------------------------------------- */
.venue-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (min-width: 1025px) {
  .venue-bento {
    flex: 1;
    grid-template-rows: 1fr 1fr;
  }
}

.venue-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.venue-card-text {
  grid-column: span 2;
  background: var(--bg-card);
  padding: 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: border-color 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.venue-card-text:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.venue-card-image { grid-column: span 1; min-height: 380px; }
.venue-card-image.is-upcoming .slide { filter: grayscale(55%) brightness(0.85); }

.venue-card-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}
.venue-card-label.is-upcoming { color: var(--text-secondary); }

.venue-card-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 400;
  color: var(--text-primary);
  margin: 0 0 0.85rem;
  line-height: 1.1;
}
.venue-card-copy {
  color: var(--text-primary);
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 0;
}
.venue-card-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.8;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
}
.venue-card-actions {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.venue-card-actions a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: color 0.3s ease, border-color 0.3s ease;
}
.venue-card-actions a::after {
  content: '➔';
  font-size: 0.68rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}
.venue-card-actions a:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}
.venue-card-actions a:hover::after {
  transform: translateX(3px);
}
.venue-card-actions a:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.venue-note {
  display: block;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-style: italic;
  margin-top: 0.85rem;
}

/* Image slideshow cards — the cross-slide keyframes/animation live in
   animations.css (gated behind prefers-reduced-motion: no-preference) */
.venue-card-image .auto-slider {
  display: flex;
  width: 400%;
  height: 100%;
}
.venue-card-image .slide {
  flex: 0 0 25%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.venue-card-tag {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: rgba(12, 12, 12, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
}

@media (max-width: 900px) {
  .venue-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .venue-card-text, .venue-card-image { grid-column: span 1; }
  .venue-card-image { height: 260px; }
  .venue-card-text { padding: 2rem; }
}

/* --------------------------------------------------------------------------
   8. MOBILE RESPONSIVE OPTIMIZATIONS
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }

  .main-header {
    padding: 0.65rem 0.85rem;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    justify-content: space-between;
  }

  .logo {
    font-size: 1.25rem;
    white-space: nowrap;
  }

  .btn-book {
    padding: 0.5rem 0.95rem;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .hero-content {
    margin-top: auto;
    padding-top: 1rem;
    width: 100%;
  }

  .page-title {
    font-size: clamp(2.2rem, 7.5vw, 3.2rem);
    line-height: 0.96;
    margin-bottom: 0.4rem;
    text-align: left;
    width: 100%;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
    max-width: 100%;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .category-title-text {
    font-size: 1.35rem;
    letter-spacing: 0.15em;
  }

  .category-title-banner .category-line {
    width: 24px;
  }

  .menu-item {
    gap: 1rem;
  }

  .menu-thumb-wrapper {
    width: 95px;
    height: 75px;
  }

  .menu-name {
    font-size: 0.98rem;
    white-space: normal;
  }

  .menu-price {
    font-size: 1.05rem;
  }

  .menu-dots-leader {
    margin: 0 0.4rem;
  }

  .reservation-card {
    padding: 1.5rem 1.25rem;
  }

  .reservation-form {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .location-tab {
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }

  .modal-content {
    padding: 1.75rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .menu-item {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .menu-thumb-wrapper {
    width: 100%;
    height: 140px;
  }

  .menu-dots-leader {
    display: none;
  }
}

/* Navigation Drawer Modal Overlay */
.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 13, 18, 0.9);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer-content {
  position: relative;
  width: 90%;
  max-width: 440px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.nav-drawer-close,
.drawer-brand {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
}

.nav-drawer-overlay.active .nav-drawer-close,
.nav-drawer-overlay.active .drawer-brand {
  opacity: 1;
  transform: translateY(0);
}

.nav-drawer-close {
  position: absolute;
  top: -3.5rem;
  right: 0;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}

.nav-drawer-close:hover {
  color: var(--accent-gold);
}

.drawer-brand {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-style: italic;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
}

.drawer-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}

.drawer-nav-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border-color);
  font-family: var(--font-heading);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  text-decoration: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.25s ease;
  transition-delay: var(--drawer-delay, 0ms);
}

.drawer-nav-links li:last-child a {
  border-bottom: none;
}

.nav-drawer-overlay.active .drawer-nav-links a {
  opacity: 1;
  transform: translateY(0);
}

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

.drawer-nav-links a:focus-visible,
.nav-drawer-close:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.drawer-line {
  display: inline-block;
  height: 1px;
  width: 14px;
  background: var(--border-focus);
  transition: width 0.44s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease;
}

.drawer-nav-links a:hover .drawer-line {
  width: 26px;
}

.drawer-nav-links a.is-active .drawer-line {
  width: 34px;
  background: var(--accent-gold);
}

@media (prefers-reduced-motion: reduce) {
  .drawer-nav-links a,
  .drawer-brand,
  .nav-drawer-close {
    opacity: 1;
    transform: none;
    transition: color 0.2s ease;
  }
  .drawer-line {
    transition: none;
  }
}

/* --------------------------------------------------------------------------
   INTERACTIVE LAYOUT OPTIMIZATIONS
   -------------------------------------------------------------------------- */
.bento-card, .bento-dark-text, .bento-benefit, .location-card, .pill-btn, .btn-book {
  will-change: transform;
}

/* --------------------------------------------------------------------------
   6. "THE CUT" — SIGNATURE MOTIF
   Nikkei's own duality, made visible: Aizome indigo (Japan) bleeding into
   Rocoto chile (Peru). It appears in the eyebrow label and a seam between
   the two panels.
   -------------------------------------------------------------------------- */

/* Eyebrow label — carries real wayfinding text (locations, categories),
   never decorative numbering. */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.1rem;
}
.hero-eyebrow .diamond { opacity: 0.85; }

.page-title em,
.hero-title-bottom em {
  font-style: italic;
  font-weight: 400;
  color: var(--accent-rocoto);
}

/* Panel seam — the cut, echoed as the divide between the two halves */
.left-panel::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: -1.42rem;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--accent-aizome) 25%, var(--accent-gold) 52%, var(--accent-rocoto) 78%, transparent);
  opacity: 0.5;
  z-index: 6;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .left-panel::after { display: none; }
}

/* Bento card descriptor, used wherever a bento-card links onward
   (homepage + locations hub) */
.bento-card-copy {
  position: absolute;
  top: 1.5rem;
  left: 1.75rem;
  right: 4.5rem;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
}

.bento-badge:focus-visible,
.btn-book:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
  border-radius: 4px;
}
