/* ============================================================
   HOTEL MAHEK — Premium Luxury Stylesheet
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --navy:        #08192e;
  --navy-mid:    #0f2542;
  --navy-light:  #1a3a5c;
  --ocean:       #1a6fa8;
  --ocean-light: #2e90d1;
  --gold:        #c9952a;
  --gold-light:  #e2b55a;
  --gold-pale:   #f5e6c8;
  --sand:        #f7f3ec;
  --sand-mid:    #ede7da;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --gray:        #6b7280;
  --gray-light:  #e8e8e8;
  --dark:        #060e1a;

  --glass:       rgba(255,255,255,0.07);
  --glass-b:     rgba(255,255,255,0.13);
  --shadow-sm:   0 2px 12px rgba(8,25,46,0.08);
  --shadow:      0 8px 32px rgba(8,25,46,0.12);
  --shadow-lg:   0 20px 60px rgba(8,25,46,0.18);
  --shadow-xl:   0 40px 100px rgba(8,25,46,0.22);

  --radius-sm:   8px;
  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-out:    cubic-bezier(0,0,0.2,1);
  --t:           0.4s var(--ease);

  --topbar-h:    32px;
  --navbar-h:    60px;
  --header-h:    calc(var(--topbar-h) + var(--navbar-h));
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html {
  scroll-behavior:smooth;
  scroll-padding-top:var(--header-h);
  font-size:16px;
  width:100%;
  max-width:100%;
  overflow-x:hidden;
}
body {
  font-family:'Inter', system-ui, sans-serif;
  color:#1c2a3a;
  background:var(--off-white);
  width:100%;
  max-width:100%;
  overflow-x:hidden;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  position:relative;
}
body.pl-lock {
  overflow:hidden;
  overscroll-behavior:contain;
  touch-action:none;
}
img { max-width:100%; display:block; object-fit:cover; }
a { text-decoration:none; color:inherit; }

main,
section,
footer {
  max-width:100%;
  overflow-x:hidden;
  overflow-x:clip;
}

:where(.fa, .fas, .far, .fab) {
  line-height:1;
}

/* ---- TYPOGRAPHY ---- */
.serif { font-family:'Cormorant Garamond', Georgia, serif; }
h1,h2,h3 { font-family:'Cormorant Garamond', Georgia, serif; line-height:1.15; font-weight:600; }
h4,h5,h6 { font-family:'Inter', sans-serif; font-weight:600; }

/* ---- UTILITIES ---- */
.container { max-width:1240px; margin:0 auto; padding:0 28px; }
.sec { padding:100px 0; }
.sec-sm { padding:70px 0; }

.tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:600; letter-spacing:4px; text-transform:uppercase;
  color:var(--gold); padding:5px 18px;
  border:1px solid rgba(201,149,42,0.35);
  border-radius:30px; margin-bottom:14px;
}
.tag::before { content:''; width:16px; height:1px; background:var(--gold); }

.sec-title { font-size:clamp(30px,4vw,52px); color:var(--navy); margin-bottom:16px; }
.sec-sub { font-size:17px; color:var(--gray); max-width:580px; line-height:1.75; }
.center { text-align:center; }
.center .sec-sub { margin:0 auto; }

/* ---- BUTTONS ---- */
.btn {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:15px 36px; border-radius:50px;
  font-family:'Inter',sans-serif; font-size:14px; font-weight:600;
  letter-spacing:0.5px; cursor:pointer; border:none;
  transition:var(--t); white-space:nowrap;
  line-height:1.2;
  min-width:0;
}
.btn > i,
.nav-phone > i,
.top-bar-left a > i,
.top-bar-center > i,
.top-bar-right a > i {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1em;
  height:1em;
  flex:0 0 auto;
  line-height:1;
}
.btn-gold {
  background:linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color:var(--navy);
  box-shadow:0 4px 24px rgba(201,149,42,0.38);
}
.btn-gold:hover { transform:translateY(-3px); box-shadow:0 12px 36px rgba(201,149,42,0.45); }
.btn-ghost {
  background:transparent;
  color:var(--white);
  border:1.5px solid rgba(255,255,255,0.45);
  backdrop-filter:blur(6px);
}
.btn-ghost:hover { background:var(--white); color:var(--navy); border-color:var(--white); }
.btn-navy { background:var(--navy); color:var(--white); }
.btn-navy:hover { background:var(--navy-light); transform:translateY(-2px); box-shadow:var(--shadow); }
.btn-outline-gold {
  background:transparent; color:var(--gold);
  border:1.5px solid var(--gold);
}
.btn-outline-gold:hover { background:var(--gold); color:var(--navy); }
.btn-sm { padding:11px 26px; font-size:13px; }
.btn-icon { width:48px; height:48px; padding:0; border-radius:50%; justify-content:center; font-size:18px; }

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position:fixed; top:var(--topbar-h); left:0; width:100%; z-index:1000;
  padding:12px 5%;
  transition:background 0.5s var(--ease), padding 0.4s var(--ease), box-shadow 0.4s, top 0.35s var(--ease);
}
.navbar.scrolled {
  top:0;
  background:rgba(8,25,46,0.96);
  backdrop-filter:blur(24px) saturate(180%);
  -webkit-backdrop-filter:blur(24px) saturate(180%);
  padding:10px 5%;
  box-shadow:0 4px 40px rgba(0,0,0,0.25);
}
/* nav-solid: dark background only, no position change
   Applied by JS on inner pages before scroll, removed once scrolled kicks in */
.navbar.nav-solid {
  background: rgba(8,25,46,0.96);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 40px rgba(0,0,0,0.25);
}
/* GLightbox: images resize to natural size */
.glightbox-container .gslide-image img {
  max-width: min(95vw,1400px) !important;
  max-height: 90vh !important;
  width: auto !important; height: auto !important;
  object-fit: contain !important;
}
.glightbox-container .gslide-media { width:auto !important; max-width:95vw !important; }
.nav-inner {
  max-width:1240px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  gap:12px;
}
.nav-logo {
  font-family:'Cormorant Garamond', serif;
  font-size:24px; font-weight:700; color:var(--white);
  display:flex; flex-direction:row; align-items:center; line-height:1; gap:9px;
  min-width:max-content;
}
.nav-logo span,
.nav-logo-text span,
.drawer-logo-text span { color:var(--gold); }
.nav-logo .nav-logo-text,
.drawer-logo .drawer-logo-text { color:var(--white); }
.nav-logo-img { display:block; width:44px; height:44px; object-fit:contain; flex-shrink:0; }
.nav-logo-text { white-space:nowrap; }
.nav-logo small { font-family:'Inter',sans-serif; font-size:8.5px; font-weight:500; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.45); padding-left:10px; border-left:1px solid rgba(255,255,255,0.22); }

.nav-links { display:flex; align-items:center; gap:36px; list-style:none; }
.nav-links > li > a {
  font-size:13px; font-weight:500; letter-spacing:0.7px;
  color:rgba(255,255,255,0.75);
  position:relative; padding-bottom:3px;
  transition:color 0.3s;
}
.nav-links > li > a::after {
  content:''; position:absolute; left:0; bottom:0;
  width:0; height:1.5px;
  background:var(--gold);
  transition:width 0.35s var(--ease-out);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color:var(--white); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width:100%; }

.nav-cta {
  display:flex; align-items:center; gap:14px;
}
.nav-phone {
  font-size:13px; color:rgba(255,255,255,0.6);
  display:flex; align-items:center; gap:6px;
  transition:color 0.3s;
}
.nav-phone i { color:var(--gold); }
.nav-phone:hover { color:var(--white); }

/* ── Hamburger button ── */
.hamburger {
  appearance:none;
  -webkit-appearance:none;
  display:none;
  align-items:center; justify-content:center;
  flex-direction:column; gap:4px;
  cursor:pointer;
  width:36px; height:36px;
  min-width:36px;
  background:rgba(201,149,42,0.15);
  border:1px solid rgba(201,149,42,0.4);
  border-radius:8px;
  padding:0;
  line-height:1;
  transition:background 0.22s, border-color 0.22s;
  flex-shrink:0;
}
.hamburger:hover {
  background:rgba(201,149,42,0.28);
  border-color:rgba(201,149,42,0.7);
}
.hb-bar {
  display:block;
  height:1.5px; border-radius:2px;
  background:var(--gold);
  transition:transform 0.28s ease, opacity 0.22s ease, width 0.22s ease;
  transform-origin:center;
  flex:0 0 auto;
}
.hb-bar:nth-child(1) { width:16px; }
.hb-bar:nth-child(2) { width:12px; } /* shorter middle */
.hb-bar:nth-child(3) { width:16px; }
/* Open → compact X */
.hamburger.open .hb-bar:nth-child(1) { transform:translateY(5.5px) rotate(45deg); width:16px; }
.hamburger.open .hb-bar:nth-child(2) { opacity:0; width:0; }
.hamburger.open .hb-bar:nth-child(3) { transform:translateY(-5.5px) rotate(-45deg); width:16px; }

/* ── Mobile scrim ── */
.mobile-scrim {
  position:fixed; inset:0;
  background:rgba(4,12,24,0.72);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  z-index:1099; opacity:0; visibility:hidden;
  pointer-events:none;
  transition:opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-scrim.open { opacity:1; visibility:visible; pointer-events:auto; }

/* ── Mobile drawer ── */
.mobile-drawer {
  position:fixed; top:0; right:0; bottom:0;
  width:min(320px,92vw);
  max-width:100%;
  height:100dvh;
  background:linear-gradient(160deg, #0d2040 0%, #08192e 60%, #061428 100%);
  border-left:1px solid rgba(201,149,42,0.18);
  z-index:1100;
  display:flex; flex-direction:column;
  transform:translateX(105%);
  opacity:0;
  pointer-events:none;
  transition:transform 0.42s cubic-bezier(0.76,0,0.24,1), opacity 0.25s ease, visibility 0.42s;
  overflow-y:auto; overflow-x:hidden;
  visibility:hidden;
  padding-bottom:env(safe-area-inset-bottom);
  -webkit-overflow-scrolling:touch;
}
.mobile-drawer.open {
  transform:translateX(0);
  opacity:1;
  pointer-events:auto;
  visibility:visible;
}

/* Drawer header */
.drawer-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:20px 22px 18px;
  border-bottom:1px solid rgba(201,149,42,0.15);
  flex-shrink:0;
}
.drawer-logo {
  font-family:'Cormorant Garamond',serif;
  font-size:20px; font-weight:600;
  color:var(--white); letter-spacing:0.05em;
  display:flex; flex-direction:column; gap:2px;
}
.drawer-logo-name { display:flex; align-items:center; gap:10px; white-space:nowrap; }
.drawer-logo span { font-style:italic; }
.drawer-logo-text { font-style:normal; }
.drawer-logo-text span { font-style:italic; }
.drawer-logo-img { display:block; width:48px; height:48px; object-fit:contain; flex-shrink:0; }
.drawer-logo small {
  font-family:'Inter',sans-serif;
  font-size:8px; font-weight:700;
  letter-spacing:0.2em; color:rgba(201,149,42,0.6);
  text-transform:uppercase;
}
.drawer-close {
  appearance:none;
  -webkit-appearance:none;
  width:36px; height:36px; border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.6); font-size:16px;
  cursor:pointer; transition:all 0.22s;
  flex-shrink:0;
  line-height:1;
}
.drawer-close > i {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1em;
  height:1em;
  line-height:1;
}
.drawer-close:hover { background:rgba(255,255,255,0.12); color:var(--white); }

/* Nav list */
.drawer-nav { list-style:none; padding:12px 0; flex:1; }
.drawer-nav li { border-bottom:1px solid rgba(255,255,255,0.05); }
.drawer-link {
  display:flex; align-items:center; justify-content:space-between;
  padding:15px 22px;
  font-family:'Cormorant Garamond',serif;
  font-size:20px; font-weight:400; color:rgba(255,255,255,0.8);
  text-decoration:none;
  transition:all 0.22s;
}
.drawer-link i { font-size:10px; color:rgba(201,149,42,0.4); transition:all 0.22s; }
.drawer-link i,
.drawer-note i {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:1em;
  height:1em;
  flex:0 0 auto;
  line-height:1;
}
.drawer-link:hover {
  color:var(--gold);
  padding-left:28px;
  background:rgba(201,149,42,0.05);
}
.drawer-link:hover i { color:var(--gold); transform:translateX(3px); }

/* Divider */
.drawer-divider {
  height:1px; margin:4px 22px;
  background:linear-gradient(90deg,transparent,rgba(201,149,42,0.3),transparent);
  flex-shrink:0;
}

/* CTA buttons */
.drawer-ctas {
  padding:16px 22px 12px;
  display:flex; flex-direction:column; gap:10px;
  flex-shrink:0;
}
.drawer-btn {
  display:flex; align-items:center; justify-content:center; gap:11px;
  padding:13px 18px;
  border-radius:12px;
  font-family:'Inter',sans-serif;
  font-size:13.5px; font-weight:600;
  text-decoration:none;
  transition:all 0.25s;
  line-height:1.2;
  min-width:0;
}
.drawer-btn i {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  font-size:16px;
  flex:0 0 18px;
  line-height:1;
}
.drawer-btn span {
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.drawer-btn-call {
  background:rgba(201,149,42,0.12);
  border:1.5px solid rgba(201,149,42,0.35);
  color:var(--gold);
}
.drawer-btn-call:hover { background:var(--gold); color:var(--navy); border-color:var(--gold); }
.drawer-btn-wa {
  background:#25d366;
  border:1.5px solid #1db954;
  color:#fff;
}
.drawer-btn-wa:hover { background:#1db954; box-shadow:0 4px 16px rgba(37,211,102,0.35); }

/* Footer note */
.drawer-note {
  padding:12px 22px 20px;
  font-size:11px; color:rgba(255,255,255,0.25);
  display:flex; align-items:center; gap:6px;
  flex-shrink:0;
}
.drawer-note i { color:rgba(201,149,42,0.4); font-size:10px; }

/* ============================
   TOP BAR
   ============================ */
.top-bar {
  position:fixed; top:0; left:0; width:100%; z-index:1001;
  height:var(--topbar-h);
  background:var(--navy);
  border-bottom:1px solid rgba(255,255,255,0.09);
  transition:transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.top-bar.hide {
  transform:translateY(-100%);
  opacity:0;
  pointer-events:none;
}
.top-bar-inner {
  max-width:1240px; margin:0 auto; padding:0 28px;
  height:100%;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,auto) max-content;
  gap:18px;
  align-items:center;
  overflow:hidden;
}
.top-bar-left {
  display:flex; align-items:center; gap:16px;
  justify-self:start;
  min-width:0;
}
.top-bar-left a {
  font-size:11px; color:rgba(255,255,255,0.6);
  display:flex; align-items:center; gap:5px;
  transition:color 0.3s;
  min-width:0;
  white-space:nowrap;
}
.top-bar-left a i { color:var(--gold); font-size:10px; }
.top-bar-left a:hover { color:var(--white); }

/* Center address */
.top-bar-center {
  display:flex; align-items:center; gap:6px;
  font-size:10.5px; color:rgba(255,255,255,0.5);
  min-width:0;
  max-width:100%;
  justify-self:center;
}
.top-bar-center i { color:var(--gold); font-size:9px; flex-shrink:0; }
.top-bar-center span {
  letter-spacing:0.02em;
  min-width:0;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.top-bar-right {
  display:flex; align-items:center; gap:8px;
  justify-self:end;
  width:max-content;
  flex-shrink:0;
}
.top-bar-right a {
  font-size:10px; color:rgba(255,255,255,0.45);
  transition:color 0.3s;
  line-height:1;
  width:18px; height:20px;
  flex:0 0 18px;
  display:flex; align-items:center; justify-content:center;
}
.top-bar-right a:hover { color:var(--gold); }

/* ============================
   HERO — CINEMATIC FULLSCREEN
   ============================ */
.hero {
  position:relative; height:100svh; min-height:680px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  padding-top:var(--header-h);
}
.hero-slides {
  position:absolute; inset:0;
  display:grid; grid-template-columns:1fr;
}
.hero-slide {
  position:absolute; inset:0;
  opacity:0; transition:opacity 1.5s ease-in-out;
}
.hero-slide.active { opacity:1; }
.hero-slide img { width:100%; height:100%; object-fit:cover; transform:scale(1.08); animation:heroZoom 9s ease-out forwards; }
@keyframes heroZoom {
  0%   { transform:scale(1.08); filter:brightness(0.78); }
  100% { transform:scale(1.0);  filter:brightness(1); }
}

/* Multi-layer gradient overlay */
.hero-overlay {
  position:absolute; inset:0; z-index:1;
  background:
    linear-gradient(to right, rgba(8,25,46,0.72) 0%, rgba(8,25,46,0.25) 60%, transparent 100%),
    linear-gradient(to top, rgba(8,25,46,0.65) 0%, transparent 55%);
}

.hero-body {
  position:relative; z-index:2;
  width:100%; max-width:1240px; padding:0 28px;
  display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:center;
}
.hero-left { max-width:600px; }

.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  font-family:'Inter',sans-serif; font-size:11px; font-weight:600;
  letter-spacing:4px; text-transform:uppercase; color:var(--gold);
  margin-bottom:12px;
}
.hero-eyebrow span { width:40px; height:1px; background:var(--gold); }

.hero-title {
  font-size:clamp(38px,5.5vw,70px);
  color:var(--white); line-height:1.05;
  margin-bottom:14px;
}
.hero-title em { color:var(--gold); font-style:normal; display:block; }

.hero-desc {
  font-size:clamp(14px,1.3vw,16px);
  color:rgba(255,255,255,0.78);
  line-height:1.75; max-width:520px;
  margin-bottom:22px;
}
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-bottom:24px; }
.hero-actions .btn { padding:11px 26px; font-size:13px; }

.hero-trust {
  display:flex; flex-wrap:wrap; gap:8px;
}
.trust-pill {
  display:flex; align-items:center; gap:6px;
  padding:7px 14px;
  background:rgba(255,255,255,0.08);
  backdrop-filter:blur(12px);
  border:1px solid rgba(255,255,255,0.14);
  border-radius:50px;
  color:rgba(255,255,255,0.88); font-size:11px; font-weight:500;
  transition:background 0.3s, border 0.3s;
}
.trust-pill i { color:var(--gold); font-size:13px; }
.trust-pill:hover { background:rgba(255,255,255,0.14); border-color:rgba(255,255,255,0.25); }

/* Booking card — right side */
.hero-card {
  background:rgba(255,255,255,0.07);
  backdrop-filter:blur(28px) saturate(180%);
  -webkit-backdrop-filter:blur(28px) saturate(180%);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:var(--radius-lg);
  padding:26px 24px;
  box-shadow:0 30px 80px rgba(0,0,0,0.35);
}
.hero-card h3 {
  font-family:'Cormorant Garamond',serif;
  font-size:22px; color:var(--white);
  margin-bottom:4px;
}
.hero-card p { font-size:12px; color:rgba(255,255,255,0.55); margin-bottom:16px; }
.card-field { margin-bottom:12px; }
.card-field label {
  display:block; font-size:10px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase;
  color:rgba(255,255,255,0.45); margin-bottom:7px;
}
.card-field input, .card-field select {
  width:100%; padding:10px 14px;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.15);
  border-radius:10px; color:var(--white);
  font-family:'Inter',sans-serif; font-size:14px; outline:none;
  transition:border 0.3s, background 0.3s;
  appearance:none;
}
.card-field input:focus, .card-field select:focus {
  border-color:var(--gold); background:rgba(255,255,255,0.13);
}
.card-field select option { background:var(--navy); color:var(--white); }
.card-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.card-note { font-size:11px; color:rgba(255,255,255,0.38); text-align:center; margin-top:12px; }

/* Scroll indicator */
.scroll-cue {
  position:absolute; bottom:32px; left:50%; transform:translateX(-50%);
  z-index:2; display:flex; flex-direction:column; align-items:center; gap:8px;
  animation:floatY 2.5s ease-in-out infinite;
}
.scroll-cue span { font-size:9px; letter-spacing:3px; text-transform:uppercase; color:rgba(255,255,255,0.45); }
.scroll-cue .mouse {
  width:22px; height:36px;
  border:1.5px solid rgba(255,255,255,0.3); border-radius:11px;
  position:relative;
}
.scroll-cue .mouse::after {
  content:''; position:absolute; top:6px; left:50%; transform:translateX(-50%);
  width:3px; height:7px; background:var(--gold); border-radius:2px;
  animation:scrollDot 2s var(--ease) infinite;
}
@keyframes floatY { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
@keyframes scrollDot { 0%{opacity:1;top:6px} 80%{opacity:0;top:18px} 100%{opacity:0;top:6px} }

/* Slide dots */
.hero-dots {
  position:absolute; bottom:36px; right:36px; z-index:2;
  display:flex; gap:8px;
}
.hero-dot {
  width:6px; height:6px; border-radius:50%;
  background:rgba(255,255,255,0.3); cursor:pointer;
  transition:var(--t); border:none;
}
.hero-dot.active { width:24px; border-radius:3px; background:var(--gold); }

/* ---- RESPONSIVE HEADER ---- */
@media(max-width:1100px) {
  .navbar { padding:10px 24px; }
  .navbar.scrolled { padding:8px 24px; }
  .nav-links,
  .nav-phone { display:none; }
  .hamburger { display:flex; }
  .nav-inner { padding:0; }
}

@media(max-width:900px) {
  .nav-cta .btn-gold { display:none; }
}

@media(max-width:768px) {
  .top-bar { display:none; }
  .navbar { top:0; padding:10px 16px; }
  .navbar.scrolled { padding:8px 16px; }
  html { scroll-padding-top:60px; }
  .hero { padding-top:60px; }

  /* Logo — compact on mobile */
  .nav-logo { font-size:20px; gap:6px; }
  .nav-logo small { display:none; }

  /* CTA — hide Book Now, tighten gap, show hamburger */
  .nav-cta { gap:8px; }
  .nav-cta .btn-gold { display:none; }
  .hamburger { display:flex; }

  /* nav-inner — no extra padding (navbar handles it) */
  .nav-inner { padding:0; }
}
@media(max-width:960px) {
  .top-bar-left a:last-child { display:none; }
  .top-bar-center { display:none; }
}

/* ── GLightbox: responsive auto-sizing ─────────────────────────── */
.glightbox-container .gslide-image img {
  max-width:  min(95vw, 1400px) !important;
  max-height: 90vh !important;
  width:  auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 6px;
}
.glightbox-container .gcontainer {
  max-width: none !important;
}
.glightbox-container .gslide-image {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
/* ── Navbar always dark on non-hero pages (fallback for no-JS) ─── */
