/* ═══════════════════════════════════════════════════════════
   NOUVELLE VAGUE — Full Stylesheet
   Font: Century Gothic (self-hosted) | Color: #060910
   ═══════════════════════════════════════════════════════════ */

/* ─── FONTS ─── */
@font-face {
  font-family: 'CenturyGothic';
  src: url('../assets/fonts/CenturyGothic.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'CenturyGothic';
  src: url('../assets/fonts/CenturyGothicBold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; color: inherit; font-family: inherit; padding: 0; }

/* ─── TOKENS ─── */
:root {
  --bg:         #060910;
  --bg2:        #0d0f1c;
  --bg3:        #111428;
  --white:      #ffffff;
  --cream:      #e8e4db;
  --muted:      #7a7a90;
  --dim:        rgba(255,255,255,0.12);
  --rule:       rgba(255,255,255,0.18);
  --red:        #c8112a;
  --red-hi:     #e01530;

  --font:       'CenturyGothic', 'Century Gothic', 'Futura', 'Trebuchet MS', sans-serif;
  --serif:      'Georgia', 'Times New Roman', serif;

  --nav-h:      80px;
  --mob-nav-h:  60px;
  --ease:       cubic-bezier(.4,0,.2,1);
}

/* ─── BASE ─── */
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll { overflow: hidden; }

/* scrollbar */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ═══════════════════════════════════════════════════════════
   DESKTOP NAV
   ═══════════════════════════════════════════════════════════ */
.nav-desktop {
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 36px;
  background: linear-gradient(180deg, rgba(6,9,16,.96) 0%, rgba(6,9,16,.55) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .35s var(--ease);
}
.nav-desktop.hide { transform: translateY(-100%); }

.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.nav-right { justify-content: flex-end; }

.nav-link {
  font-size: 10.5px;
  letter-spacing: .18em;
  color: rgba(232,228,219,.75);
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--red);
  transition: width .3s var(--ease);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--red); }

.nav-lang {
  font-size: 9.5px;
  letter-spacing: .15em;
  color: var(--muted);
  border: 1px solid var(--dim);
  padding: 4px 9px;
  border-radius: 2px;
  margin-left: 16px;
  transition: all .2s;
}
.nav-lang:hover { color: var(--white); border-color: rgba(255,255,255,.4); }

/* ─── LOGO (desktop nav center) ─── */
.nav-logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo-badge {
  height: 70px;
  width: auto;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE NAV
   ═══════════════════════════════════════════════════════════ */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0 0 auto;
  z-index: 900;
  height: var(--mob-nav-h);
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(6,9,16,.9) 0%, rgba(6,9,16,0) 100%);
}

.mob-logo-link { display: flex; align-items: center; }
.mob-logo-img {
  height: 44px;
  width: auto;
}

.mob-nav-actions { display: flex; align-items: center; gap: 18px; }
.mob-search-btn { color: rgba(255,255,255,.8); display: flex; }
.mob-search-btn svg { width: 20px; height: 20px; }

.mob-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 26px;
}
.mob-hamburger span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .3s;
}
.mob-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.mob-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU OVERLAY ─── */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.mob-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mob-menu-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0 28px 36px;
}

.mob-menu-bar {
  height: var(--mob-nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.mob-menu-nav {
  display: flex;
  flex-direction: column;
  margin-top: 28px;
  flex: 1;
}

.mob-nav-link {
  font-size: 21px;
  font-weight: 400;
  letter-spacing: .13em;
  color: rgba(232,228,219,.65);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: center;
  transition: color .2s;
}
.mob-nav-link:hover,
.mob-nav-link.active { color: var(--white); }
.mob-nav-link.active { color: var(--red); }

.mob-menu-social {
  display: flex;
  gap: 26px;
  justify-content: center;
  margin: 30px 0 18px;
}
.mob-menu-social a { color: rgba(232,228,219,.65); transition: color .2s; }
.mob-menu-social a:hover { color: var(--white); }

.mob-menu-home {
  font-size: 9.5px;
  letter-spacing: .22em;
  color: var(--muted);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 18px;
}

/* ═══════════════════════════════════════════════════════════
   PAGES
   ═══════════════════════════════════════════════════════════ */
.page { display: none; min-height: 100vh; }
.page.active { display: block; animation: pagein .45s var(--ease) both; }
@keyframes pagein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   HOME / HERO
   ═══════════════════════════════════════════════════════════ */
.page-home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-track {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-slide.active { opacity: 1; }

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* multi-layer: dark top for nav, transparent mid, dark bottom for copy */
  background:
    linear-gradient(180deg,
      rgba(6,9,16,.55)  0%,
      rgba(6,9,16,.05) 30%,
      rgba(6,9,16,.05) 50%,
      rgba(6,9,16,.72) 75%,
      rgba(6,9,16,.96) 100%
    );
}
/* ambient side glows matching original */
.hero-veil::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 0% 60%,  rgba(60,30,180,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 40%, rgba(200,17,42,.14) 0%, transparent 70%);
}

.hero-body {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 40px 96px;
  text-align: center;
}

/* Badge — visible only on mobile in hero */
.hero-badge-mob { display: none; margin-bottom: 40px; }
.hero-logo-badge { height: 130px; width: auto; display: block; }

.hero-copy {}

.hero-line1 {
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--white);
  text-transform: uppercase;
  line-height: 1.35;
  text-shadow: 0 2px 24px rgba(0,0,0,.7);
  transition: opacity .35s;
}

.hero-dots {
  display: flex;
  gap: 9px;
  justify-content: center;
  margin: 20px 0;
}
.hero-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  transition: background .4s, transform .3s;
  cursor: pointer;
}
.hero-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.hero-line2 {
  font-size: clamp(13px, 1.7vw, 22px);
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 20px rgba(0,0,0,.7);
}

.hero-since {
  margin-top: 10px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0,0,0,.7);
}

/* Social — bottom left on desktop, centered below hero copy on mobile */
.hero-social {
  position: absolute;
  z-index: 2;
  bottom: 28px;
  left: 40px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.hero-social a { color: rgba(255,255,255,.6); transition: color .2s; }
.hero-social a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   INNER PAGES — SHARED
   ═══════════════════════════════════════════════════════════ */
.page-inner {
  padding-top: var(--nav-h);
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 60%);
  padding-bottom: 100px;
}

/* Page header */
.page-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 40px 40px;
}
.page-hero--slim { padding: 52px 40px 32px; }

.page-3d-icon {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.page-3d-icon svg { height: 130px; width: auto; }

.page-eyebrow {
  font-size: 10.5px;
  letter-spacing: .24em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-title {
  font-size: clamp(34px, 5.5vw, 70px);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
}
.page-title--display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(40px, 7vw, 88px);
  letter-spacing: .03em;
}

.page-rule {
  width: min(680px, 100%);
  height: 1px;
  background: var(--rule);
  margin-top: 28px;
}

/* ─── Menu artwork ─── */
.menu-artwork-wrap {
  width: min(680px, 100%);
  height: 180px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.menu-artwork-img {
  max-height: 165px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .8;
}

/* ═══════════════════════════════════════════════════════════
   ACCORDION
   ═══════════════════════════════════════════════════════════ */
.accordion {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

.acc-item {
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 19px 0;
  font-size: 12.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(232,228,219,.72);
  transition: color .22s;
  font-family: var(--font);
  font-weight: 400;
}
.acc-trigger:hover { color: var(--white); }
.acc-trigger--red { color: var(--red); }
.acc-trigger--red:hover { color: var(--red-hi); }

/* Chevron arrow */
.acc-chevron {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.acc-item.acc-open .acc-chevron {
  transform: rotate(-135deg) translateY(-2px);
}
.acc-item.acc-open > .acc-trigger { color: var(--red); }

/* Accordion body — slide open/close via max-height */
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s var(--ease);
}
.acc-item.acc-open > .acc-body { max-height: 1200px; }

/* ─── Guest shift layout ─── */
.guest-row {
  display: flex;
  gap: 36px;
  padding: 4px 0 32px;
  align-items: flex-start;
}
.guest-text { flex: 1; min-width: 0; }
.guest-name {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  margin-bottom: 5px;
}
.guest-role {
  font-size: 9px;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 3px;
}
.guest-bar {
  font-size: 11px;
  letter-spacing: .15em;
  color: var(--cream);
  margin-bottom: 8px;
}
.guest-meta {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 14px;
}
.guest-desc {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,.55);
}
.guest-imgs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
  width: 190px;
}
.guest-imgs img {
  width: 100%;
  height: 125px;
  object-fit: cover;
  cursor: zoom-in;
  transition: opacity .25s;
}
.guest-imgs img:hover { opacity: .8; }

/* ─── Cocktail layout ─── */
.cocktail-row {
  display: flex;
  gap: 32px;
  padding: 4px 0 28px;
  align-items: flex-start;
}
.cocktail-text { flex: 1; min-width: 0; }
.cocktail-ing {
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 13px;
  line-height: 1.7;
}
.cocktail-desc {
  font-size: 13.5px;
  line-height: 1.82;
  color: rgba(255,255,255,.55);
  font-family: var(--serif);
}
.cocktail-img {
  width: 170px;
  height: 210px;
  object-fit: cover;
  flex-shrink: 0;
  cursor: zoom-in;
  transition: opacity .25s;
}
.cocktail-img:hover { opacity: .82; }

/* ─── About text ─── */
.about-text { padding: 4px 0 28px; }
.about-text p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255,255,255,.58);
  margin-bottom: 16px;
}
.about-text p strong { color: var(--cream); font-weight: 700; }
.about-text p em { font-family: var(--serif); font-style: italic; }
.about-award {
  border-left: 2px solid var(--red);
  padding: 14px 18px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
  background: rgba(200,17,42,.06);
  margin-top: 4px;
}
.about-award strong { color: var(--white); }
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.about-photo-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  cursor: zoom-in;
}

/* ─── Ventures logos ─── */
.ventures-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 24px;
  margin-top: 24px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.07);
}
.ventures-grid img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .5;
  transition: opacity .25s;
}
.ventures-grid img:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   GOING PLACES
   ═══════════════════════════════════════════════════════════ */
.going-places-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.going-places-intro {
  text-align: center;
  margin-bottom: 48px;
}
.going-places-intro p {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255,255,255,.55);
  max-width: 600px;
  margin: 0 auto;
}
.going-places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.gp-card { background: var(--bg3); border: 1px solid rgba(255,255,255,.07); }
.gp-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: opacity .25s;
}
.gp-card img:hover { opacity: .85; }
.gp-card-body { padding: 20px; }
.gp-card-body h3 {
  font-size: 11px;
  letter-spacing: .18em;
  margin-bottom: 6px;
}
.gp-meta {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 10px;
}
.gp-card-body p:last-child {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════════════════════
   GALLERY / MASONRY
   ═══════════════════════════════════════════════════════════ */
.masonry {
  columns: 3;
  column-gap: 8px;
  padding: 0 40px 80px;
  max-width: 1440px;
  margin: 0 auto;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  cursor: zoom-in;
}
.masonry-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s var(--ease), opacity .3s;
}
.masonry-item:hover img {
  transform: scale(1.04);
  opacity: .84;
}
.masonry-item--tall img  { min-height: 360px; }

/* ═══════════════════════════════════════════════════════════
   COMING SOON
   ═══════════════════════════════════════════════════════════ */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 40px 100px;
  gap: 18px;
  text-align: center;
}
.coming-soon-label {
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: .3em;
  color: rgba(255,255,255,.12);
}
.coming-soon-sub {
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--muted);
}
.coming-soon-social { margin-top: 8px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border: 1px solid var(--rule);
  font-size: 10.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cream);
  font-family: var(--font);
  transition: all .28s;
  cursor: pointer;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.5);
  color: var(--white);
  background: rgba(255,255,255,.04);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-layout {
  max-width: 900px;
  margin: 0 auto;
  padding: 8px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 28px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field-label {
  font-size: 9.5px;
  letter-spacing: .2em;
  color: var(--muted);
  text-transform: uppercase;
}
.field-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  font-family: var(--font);
  font-size: 13.5px;
  padding: 11px 0;
  width: 100%;
  outline: none;
  transition: border-color .25s;
  border-radius: 0;
  -webkit-appearance: none;
}
.field-input::placeholder { color: rgba(255,255,255,.2); }
.field-input:focus { border-color: rgba(255,255,255,.55); }
.field-textarea { resize: none; line-height: 1.65; }

.contact-submit {
  padding: 15px 40px;
  border: 1px solid rgba(255,255,255,.22);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--white);
  font-family: var(--font);
  border-radius: 50px;
  transition: all .28s;
  align-self: stretch;
  margin-top: 6px;
}
.contact-submit:hover { background: var(--white); color: var(--bg); }

.contact-info-col { display: flex; flex-direction: column; gap: 32px; padding-top: 4px; }
.contact-block-label {
  font-size: 9px;
  letter-spacing: .25em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-block p { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); }
.contact-link { font-size: 13px; color: rgba(255,255,255,.55); transition: color .2s; }
.contact-link:hover { color: var(--white); }
.contact-social { display: flex; gap: 18px; margin-top: 6px; }
.contact-social-link { color: rgba(255,255,255,.55); transition: color .2s; }
.contact-social-link:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(6,9,16,.98);
  gap: 20px;
}
.site-footer.hidden { display: none; }

.footer-left { display: flex; align-items: center; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-link {
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color .2s;
}
.footer-link:hover { color: var(--white); }

.footer-center { display: flex; justify-content: center; }
.footer-logo {
  height: 40px;
  width: auto;
  opacity: .45;
  transition: opacity .25s;
}
.footer-logo:hover { opacity: .75; }

.footer-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-copy, .footer-credit {
  font-size: 9px;
  letter-spacing: .1em;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 88vw;
  max-height: 86vh;
  object-fit: contain;
  user-select: none;
}
.lightbox-close {
  position: absolute;
  top: 18px; right: 22px;
  font-size: 36px;
  line-height: 1;
  color: rgba(255,255,255,.65);
  transition: color .2s;
  z-index: 1;
}
.lightbox-close:hover { color: var(--white); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  font-size: 48px;
  line-height: 1;
  color: rgba(255,255,255,.4);
  padding: 0 24px;
  transition: color .2s;
  z-index: 1;
}
.lightbox-prev { left: 0; }
.lightbox-next { right: 0; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET ≤1024px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-left, .nav-right { gap: 18px; }
  .nav-link { font-size: 9.5px; letter-spacing: .13em; }
  .going-places-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE ≤768px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 0px; }

  .nav-desktop { display: none; }
  .nav-mobile  { display: flex; }

  /* Home */
  .page-home { height: 100svh; }
  .hero-body { padding: 0 24px 72px; }
  .hero-badge-mob { display: flex; justify-content: center; }
  .hero-social {
    position: static;
    justify-content: center;
    margin-top: 20px;
  }
  .hero-line1 { font-size: 17px; }
  .hero-line2 { font-size: 15px; }
  .hero-since { font-size: 22px; }

  /* Inner pages */
  .page-inner { padding-top: var(--mob-nav-h); }
  .page-hero { padding: 36px 24px 28px; }
  .page-hero--slim { padding: 36px 24px 24px; }
  .page-3d-icon { height: 110px; }
  .page-3d-icon svg { height: 95px; }
  .page-title { font-size: 34px; }
  .page-title--display { font-size: 42px; }

  /* Accordion */
  .accordion { padding: 0 20px 48px; }
  .acc-trigger { font-size: 11.5px; letter-spacing: .13em; padding: 15px 0; }

  /* Guest */
  .guest-row { flex-direction: column; gap: 18px; }
  .guest-imgs { width: 100%; flex-direction: row; }
  .guest-imgs img { flex: 1; height: 130px; }

  /* Cocktail */
  .cocktail-row { flex-direction: column; gap: 14px; }
  .cocktail-img { width: 100%; height: 220px; }

  /* About */
  .about-photo-grid { grid-template-columns: 1fr; }
  .ventures-grid { justify-content: center; }

  /* Going places */
  .going-places-content { padding: 0 20px 48px; }
  .going-places-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Gallery */
  .masonry { columns: 2; column-gap: 6px; padding: 0 16px 60px; }
  .masonry-item { margin-bottom: 6px; }
  .masonry-item--tall img { min-height: 240px; }

  /* Contact */
  .contact-layout { padding: 8px 24px 60px; }
  .contact-info-col { flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .contact-block { min-width: 140px; }

  /* Menu artwork */
  .menu-artwork-wrap { height: 120px; }
  .menu-artwork-img { max-height: 110px; }

  /* Footer */
  .site-footer {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    text-align: center;
    padding: 24px 20px;
    gap: 16px;
  }
  .footer-left, .footer-right { justify-content: center; }
  .footer-nav { justify-content: center; gap: 14px; }
  .footer-center { order: -1; }

  /* Lightbox nav hidden on touch */
  .lightbox-prev, .lightbox-next { display: none; }

  /* Coming soon */
  .coming-soon { padding: 60px 24px 80px; }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE ≤420px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 420px) {
  .masonry { columns: 1; }
  .mob-nav-link { font-size: 18px; }
  .hero-line1 { font-size: 14px; }
  .going-places-grid { grid-template-columns: 1fr; }
}
