/* Wild Gaze – global navbar (synced from index) */
/* Scoped reset: only affects elements inside the navbar component,
     NOT the whole document/body, so it won't fight with other page styles. */
  .navbar-wrap,
  .navbar-wrap *, .navbar-wrap *::before, .navbar-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .navbar-wrap,
	.navbar-wrap * {
	font-family: 'Raleway', sans-serif;
	}

  /* ─── MAIN NAV WRAPPER ────────────────────────────────────── */
  .navbar-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: none;
    overflow: visible;
    transition: background .45s ease, border-color .45s ease, box-shadow .45s ease, backdrop-filter .45s ease;
  }
  .navbar-wrap.scrolled {
    background: rgba(26,20,8,.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(184,148,26,.55);
    box-shadow: 0 8px 32px rgba(0,0,0,.45);
  }
  .navbar-wrap.nav-over-content {
    background: var(--dark2);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 24px rgba(0,0,0,.55);
  }

  /* ─── LOGO + NAV ROW ──────────────────────────────────────── */
  .navbar {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height: var(--nav-h);
    padding: 0 32px;
    gap: 0;
    overflow: visible;   /* ← KEY FIX */
    position: relative;  /* establishes stacking context cleanly */
  }

  .logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; margin-right: auto; }
  .logo-wrap img { height: 40px; width: 40px; object-fit: contain; filter: drop-shadow(0 0 6px rgba(232,176,32,.4)); }
  .logo-text { display: flex; flex-direction: column; line-height: 1; }
  .logo-text .name { font-family: 'Cinzel', serif; font-size: .95rem; font-weight: 700; letter-spacing: .1em; }
  .logo-text .name .logo-wild    { color: #ffffff; }
  .logo-text .name .logo-gaze    { color: var(--gold-lt); }
  .logo-text .name .logo-safaris { color: #d4c48a; }
  .logo-text .sub  { font-family: 'Raleway', sans-serif; color: rgba(255,255,255,.55); font-size: .55rem; letter-spacing: .22em; text-transform: uppercase; margin-top: 2px; }
  .logo-wrap { transition: transform .3s ease, filter .3s ease; }
  .logo-wrap:hover { transform: translateY(-1px); filter: drop-shadow(0 4px 12px rgba(232,176,32,.25)); }

  /* ─── NAV LINKS ───────────────────────────────────────────── */
  .nav-list {
    list-style: none;
    display: flex;
    align-items: stretch;
    height: 100%;
  }

  .nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    height: 100%;
    padding: 0 14px;
    color: rgba(255,255,255,.9);
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: .6875rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    transition: color .22s ease;
  }
  .nav-link::before { display: none; }
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-lt), transparent);
    transform: translateX(-50%);
    transition: width .32s cubic-bezier(.4,0,.2,1);
  }
  .nav-link svg { transition: transform .3s ease, opacity .3s ease; opacity: .65; }
  .nav-item:hover > .nav-link {
    color: var(--gold-lt);
    text-shadow: none;
  }
  .nav-item:hover > .nav-link::after { width: 70%; }
  .nav-item:hover > .nav-link svg,
  .nav-item.is-open > .nav-link svg { transform: rotate(180deg); opacity: 1; }
  .navbar-wrap.scrolled .nav-link { color: #e0d4a8; }
  .navbar-wrap.scrolled .nav-item:hover > .nav-link { color: var(--gold-lt); }

  /* ─── DROPDOWN / MEGA SHARED ─────────────────────────────── */
  /* Invisible bridge – keeps menu open while moving cursor down */
  .nav-item:has(.dropdown-panel) {
    position: relative;
  }
  .nav-item:has(.dropdown-panel)::before {
    content: '';
    position: absolute;
    left: -8px;
    right: -8px;
    top: 100%;
    height: 20px;
    z-index: 9998;
  }

  .dropdown-panel {
    display: block;
    position: absolute;
    top: calc(100% - 2px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(255, 252, 246, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 148, 26, 0.2);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(26, 20, 8, 0.14);
    z-index: 9999;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    transform: translateY(-6px);
    overflow: hidden;
  }

  /* Hover-first: open while pointer is over item or panel; close on leave */
  @media (hover: hover) and (pointer: fine) {
    .nav-item:hover > .dropdown-panel:not(.trek-compact-drop):not(.beach-compact-drop):not(.mega-panel),
    .nav-item:focus-within > .dropdown-panel:not(.trek-compact-drop):not(.beach-compact-drop):not(.mega-panel) {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    .nav-item:hover > .trek-compact-drop,
    .nav-item:focus-within > .trek-compact-drop,
    .nav-item:hover > .beach-compact-drop,
    .nav-item:focus-within > .beach-compact-drop {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .nav-item:hover > .mega-panel,
    .nav-item:focus-within > .mega-panel {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
  }

  .nav-item.is-open > .dropdown-panel:not(.trek-compact-drop):not(.beach-compact-drop):not(.mega-panel) {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-item.is-open > .trek-compact-drop,
  .nav-item.is-open > .beach-compact-drop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-item.is-open > .mega-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* ─── SIMPLE DROPDOWN ─────────────────────────────────────── */
  .simple-drop {
    left: 0;
    min-width: 200px;
    max-width: 240px;
    padding: 5px;
  }
  .simple-drop a {
    display: block;
    padding: 8px 12px;
    color: #3a3220;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    border-radius: 6px;
    line-height: 1.35;
    transition: color 0.14s ease, background 0.14s ease, padding-left 0.14s ease;
  }
  .simple-drop a:hover {
    color: #1a1408;
    background: rgba(184, 148, 26, 0.12);
    padding-left: 16px;
  }

  /* ─── MEGA PANEL ──────────────────────────────────────────── */
  .mega-panel {
    left: 50%;
    transform: translateX(-50%);
    width: min(720px, calc(100vw - 40px));
    padding: 16px 18px 14px;
  }
  .mega-panel.wide {
    width: min(800px, calc(100vw - 40px));
  }

  .nav-item:last-child .mega-panel,
  .nav-item:nth-last-child(2) .mega-panel {
    left: auto;
    right: 0;
    transform: none;
  }

  .mega-cols { display: grid; gap: 16px; }
  .mega-cols.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .mega-cols.cols-4 { grid-template-columns: repeat(4, 1fr); }
  .mega-cols.cols-2-1 { grid-template-columns: 2fr 1fr; }

  .mega-col-title {
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: #9a7b28;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
  }
  .mega-col-title::after { display: none; }

  .mega-links { list-style: none; display: flex; flex-direction: column; gap: 1px; }
  .mega-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    color: #3a3220;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0;
    text-decoration: none;
    border-radius: 7px;
    transition: color 0.15s ease, background 0.15s ease;
  }
  .mega-links a .dot { display: none; }
  .mega-links a:hover {
    color: #1a1408;
    background: rgba(184, 148, 26, 0.1);
  }

  /* ─── MEGA HIGHLIGHT CARD ─────────────────────────────────── */
  .mega-highlight {
    background: rgba(184, 148, 26, 0.07);
    border: 1px solid rgba(184, 148, 26, 0.16);
    border-radius: 10px;
    padding: 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }
  .mega-highlight:hover {
    background: rgba(184, 148, 26, 0.11);
    border-color: rgba(184, 148, 26, 0.28);
  }
  .mega-highlight .hl-tag {
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--orange);
    text-transform: uppercase;
  }
  .mega-highlight .hl-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1408;
    line-height: 1.35;
  }
  .mega-highlight .hl-text {
    font-size: 0.75rem;
    color: #524630;
    line-height: 1.5;
    margin-top: 1px;
  }
  .mega-highlight .hl-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin-top: 6px;
    border-radius: 50%;
    border: 1px solid rgba(184, 148, 26, 0.35);
    color: var(--gold);
    text-decoration: none;
    font-size: 0;
    overflow: hidden;
    transition: background 0.15s ease, border-color 0.15s ease;
  }
  .mega-highlight .hl-link svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    color: var(--gold);
  }
  .mega-highlight .hl-link:hover {
    background: rgba(184, 148, 26, 0.15);
    border-color: var(--gold);
  }
  .mega-highlight .hl-link:hover svg {
    color: #1a1408;
  }

  /* divider between mega columns */
  .mega-divider {
    width: 1px;
    background: rgba(184, 148, 26, 0.12);
    margin: 0 4px;
  }

  /* ─── NAV ACTIONS (search + hamburger) ───────────────────── */
  .nav-actions {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 8px;
  }
  .nav-search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    color: rgba(255, 255, 255, 0.92);
    font-size: .82rem;
    cursor: pointer;
    transition: all .35s cubic-bezier(.34, 1.2, .64, 1);
  }
  .nav-search-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
  }
  .navbar-wrap.scrolled .nav-search-btn,
  .navbar-wrap.nav-over-content .nav-search-btn {
    border-color: rgba(232, 176, 32, 0.3);
    background: rgba(232, 176, 32, 0.08);
    color: var(--gold-lt);
  }

  /* ─── SEARCH OVERLAY (Wild Gaze branded) ─────────────────── */
  .wg-search-overlay {
    position: fixed;
    inset: 0;
    z-index: 1200;
    background: rgba(10, 8, 4, 0.68);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: max(10vh, 72px) 20px 40px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .wg-search-overlay.open { opacity: 1; visibility: visible; }

  .wg-search-panel {
    position: relative;
    width: min(520px, 100%);
    background: linear-gradient(165deg, rgba(30, 24, 10, 0.97) 0%, rgba(18, 14, 6, 0.98) 100%);
    border: 1px solid rgba(184, 148, 26, 0.32);
    border-radius: 12px;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transform: translateY(-12px);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    padding: 24px 24px 18px;
  }
  .wg-search-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.05;
    background-image: url('../pattern%20overlay.jpg');
    background-repeat: repeat;
    background-size: 360px auto;
    mix-blend-mode: soft-light;
  }
  .wg-search-panel > * { position: relative; z-index: 1; }
  .wg-search-overlay.open .wg-search-panel {
    transform: translateY(0);
  }

  .wg-search-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
  }
  .wg-search-heading { flex: 1; min-width: 0; }
  .wg-search-eyebrow {
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-lt, #e8b020);
    margin: 0 0 4px;
  }
  .wg-search-title {
    font-family: var(--font-display, 'Playfair Display', serif);
    font-size: clamp(1.2rem, 3vw, 1.45rem);
    font-weight: 600;
    color: #f5eed8;
    letter-spacing: 0.01em;
    margin: 0;
    line-height: 1.2;
  }
  .wg-search-close {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(184, 148, 26, 0.35);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    transition: all .22s ease;
    flex-shrink: 0;
  }
  .wg-search-close:hover {
    background: rgba(184, 148, 26, 0.12);
    border-color: var(--gold-lt);
    color: #fff;
  }

  .wg-search-field-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(184, 148, 26, 0.45);
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.35);
    transition: border-color .25s, box-shadow .25s;
  }
  .wg-search-field-wrap:focus-within {
    border-color: var(--gold-lt);
    box-shadow: 0 0 0 3px rgba(184, 148, 26, 0.15);
  }
  .wg-search-field-wrap > i {
    color: var(--gold-lt);
    font-size: .9rem;
    opacity: .85;
    flex-shrink: 0;
  }
  .wg-search-field-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #e8dfc8;
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.9375rem;
    font-weight: 400;
    letter-spacing: 0.01em;
  }
  .wg-search-field-wrap input::placeholder {
    color: rgba(232, 220, 188, 0.45);
  }

  .wg-search-kbd-hint { display: none; }

  .wg-search-results {
    max-height: min(42vh, 320px);
    overflow-y: auto;
    padding: 4px 0 0;
    margin-top: 14px;
    scrollbar-width: thin;
    scrollbar-color: rgba(184, 148, 26, 0.35) transparent;
  }
  .wg-search-hint,
  .wg-search-empty {
    padding: 16px 4px 8px;
    text-align: left;
    color: rgba(255, 255, 255, 0.42);
    font-family: var(--font-body, 'Montserrat', sans-serif);
    font-size: 0.8125rem;
    line-height: 1.5;
    margin: 0;
  }
  .wg-search-hint i,
  .wg-search-empty i { display: none; }
  .wg-search-result {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 2px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid transparent;
    opacity: 0;
    animation: wgSearchResultIn .32s ease forwards;
    animation-delay: calc(var(--i, 0) * 40ms);
    transition: background .2s, border-color .2s;
  }
  @keyframes wgSearchResultIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .wg-search-result:hover {
    background: rgba(184, 148, 26, 0.1);
    border-color: rgba(184, 148, 26, 0.22);
  }
  .wg-search-result-cat {
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-lt);
    min-width: 68px;
    opacity: .8;
  }
  .wg-search-result-title {
    flex: 1;
    color: rgba(255, 255, 255, 0.88);
    font-size: .86rem;
    font-weight: 500;
    line-height: 1.35;
  }
  .wg-search-result-title mark {
    background: rgba(232, 176, 32, 0.2);
    color: var(--gold-pale);
    border-radius: 2px;
    padding: 0 2px;
  }
  .wg-search-result-arrow {
    color: var(--gold-lt);
    font-size: .65rem;
    opacity: 0;
    transition: opacity .2s;
  }
  .wg-search-result:hover .wg-search-result-arrow { opacity: .7; }
  body.wg-search-open,
  body.wg-nav-open { overflow: hidden; }

  /* ─── HAMBURGER (MOBILE) ──────────────────────────────────── */
  .hamburger-btn {
    display: none;
    background: rgba(184, 148, 26, 0.18);
    border: 1px solid rgba(232, 176, 32, 0.52);
    border-radius: 10px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 8px 18px rgba(26, 20, 8, 0.24);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
  }
  .hamburger-btn:hover {
    background: rgba(232, 176, 32, 0.28);
    border-color: rgba(232, 176, 32, 0.78);
    box-shadow: 0 10px 22px rgba(26, 20, 8, 0.28);
  }
  .hamburger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff7df;
    border-radius: 2px;
    box-shadow: 0 1px 0 rgba(26, 20, 8, 0.28);
    transition: transform .2s ease, opacity .18s ease;
  }
  .navbar-wrap.scrolled .hamburger-btn span,
  .navbar-wrap.nav-over-content .hamburger-btn span {
    background: #fff3cf;
  }
  .hamburger-btn.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .hamburger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger-btn.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

  /* ─── MOBILE BACKDROP ─────────────────────────────────────── */
  .mobile-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(10, 8, 4, 0.48);
    z-index: 1190;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    -webkit-backdrop-filter: blur(2px);
    backdrop-filter: blur(2px);
    touch-action: none;
  }
  .mobile-backdrop.open {
    opacity: 1;
    visibility: visible;
  }

  /* Keep navbar + hamburger above the side drawer */
  body.wg-nav-open .navbar-wrap {
    z-index: 1210;
  }

  /* ─── MOBILE DRAWER (slides in from right, ~half screen) ─── */
  .mobile-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: clamp(270px, 50vw, 380px);
    height: 100%;
    height: 100dvh;
    max-height: none;
    z-index: 1200;
    background: #f6efdf;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border-left: 1px solid rgba(184, 148, 26, 0.28);
    border-bottom: none;
    box-shadow: -16px 0 48px rgba(26, 20, 8, 0.22);
    transform: translate3d(105%, 0, 0);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    padding-top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    transition:
      transform .34s cubic-bezier(0.22, 1, 0.36, 1),
      visibility .34s;
    will-change: transform;
  }
  .mobile-drawer.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    pointer-events: auto;
  }
  .mobile-drawer.is-dragging {
    transition: none;
  }

  .mob-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px 12px;
    border-bottom: 1px solid rgba(184, 148, 26, 0.18);
    position: sticky;
    top: 0;
    background: #f6efdf;
    z-index: 2;
  }
  .mob-drawer-brand {
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #2c2310;
  }
  .mob-drawer-close {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(184, 148, 26, 0.35);
    border-radius: 10px;
    background: rgba(184, 148, 26, 0.1);
    color: #2c2310;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
  }
  .mob-drawer-close:hover,
  .mob-drawer-close:focus-visible {
    background: rgba(184, 148, 26, 0.2);
    border-color: rgba(184, 148, 26, 0.55);
    outline: none;
  }
  .mob-drawer-close:active {
    transform: scale(0.96);
  }
  .mob-item { border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
  .mob-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    color: #2c2310;
    font-family: 'Raleway', sans-serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: color .25s, background .25s, padding-left .25s;
  }
  .mob-top:hover { color: var(--gold); background: rgba(184, 148, 26, 0.08); padding-left: 24px; }
  .mob-top svg { transition: transform .25s; opacity: .5; color: var(--gold); }
  .mob-top.expanded svg { transform: rotate(180deg); opacity: 1; }
  .mob-top.expanded { color: var(--gold); background: rgba(184, 148, 26, 0.12); }

  .mob-sub {
    display: none;
    flex-direction: column;
    background: rgba(184, 148, 26, 0.06);
    padding: 4px 0 10px;
  }
  .mob-sub.open { display: flex; }
  .mob-sub a {
    padding: 10px 24px;
    color: rgba(44, 35, 16, 0.75);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: all .15s;
  }
  .mob-sub a:hover {
    color: #1a1408;
    border-left-color: var(--gold);
    background: rgba(184, 148, 26, 0.1);
    padding-left: 30px;
  }

  .mob-sub-title {
    padding: 8px 20px 4px 24px;
    color: var(--gold);
    font-family: 'Cinzel', serif;
    font-size: .56rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .75;
  }

  .mob-book {
    margin: 14px 18px;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, var(--gold-lt), var(--orange));
    color: #1a1408;
    font-family: 'Cinzel', serif;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 14px 20px;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(184, 148, 26, 0.25);
    transition: transform .25s, box-shadow .25s;
  }
  .mob-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(184, 148, 26, 0.35);
  }
  .mob-contact {
    padding: 10px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mob-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(58, 50, 32, 0.65);
    font-size: .68rem;
  }
  .mob-contact-item svg,
  .mob-contact-item i { color: var(--gold); flex-shrink: 0; }
  .mob-contact-item span { color: #2c2310; font-weight: 600; }

  /* ─── WHATSAPP FLOAT ─────────────────────────────────────── */
  .wg-wa-float {
    position: fixed;
    bottom: max(24px, env(safe-area-inset-bottom, 0px));
    right: max(24px, env(safe-area-inset-right, 0px));
    z-index: 1100;
    font-family: 'Raleway', sans-serif;
  }
  .wg-wa-toggle {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    color: #fff;
    background: linear-gradient(145deg, #25d366 0%, #128c47 100%);
    box-shadow:
      0 8px 28px rgba(37,211,102,.45),
      0 0 0 0 rgba(37,211,102,.35);
    transition: transform .35s cubic-bezier(.34,1.56,.64,1), box-shadow .35s ease;
    animation: wg-wa-pulse 2.8s ease-in-out infinite;
  }
  .wg-wa-toggle:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 12px 36px rgba(37,211,102,.55);
    animation: none;
  }
  .wg-wa-float.open .wg-wa-toggle {
    background: linear-gradient(145deg, #1a1408, #26200e);
    border: 1px solid rgba(184,148,26,.4);
    animation: none;
  }
  @keyframes wg-wa-pulse {
    0%, 100% { box-shadow: 0 8px 28px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.3); }
    50%      { box-shadow: 0 8px 28px rgba(37,211,102,.5), 0 0 0 12px rgba(37,211,102,0); }
  }
  .wg-wa-panel {
    position: absolute;
    bottom: calc(100% + 14px);
    right: 0;
    width: 270px;
    background: rgba(26,20,8,.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184,148,26,.28);
    border-radius: 6px;
    padding: 18px 16px 14px;
    box-shadow: 0 20px 56px rgba(0,0,0,.55);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(.96);
    transform-origin: bottom right;
    transition: opacity .32s ease, transform .32s cubic-bezier(.34,1.2,.64,1), visibility .32s;
    pointer-events: none;
  }
  .wg-wa-float.open .wg-wa-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .wg-wa-panel-head {
    font-family: 'Cinzel', serif;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(184,148,26,.2);
  }
  .wg-wa-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    margin-bottom: 8px;
    border-radius: 4px;
    text-decoration: none;
    color: #fff;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    background: rgba(37,211,102,.1);
    border: 1px solid rgba(37,211,102,.22);
    transition: background .25s, border-color .25s, transform .25s;
  }
  .wg-wa-link i { font-size: 1.2rem; color: #25d366; }
  .wg-wa-link:hover {
    background: rgba(37,211,102,.2);
    border-color: rgba(37,211,102,.45);
    transform: translateX(4px);
  }
  .wg-wa-hours {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(184,148,26,.15);
    font-size: .68rem;
    color: rgba(255,255,255,.45);
    letter-spacing: .06em;
  }
  .wg-wa-hours i { color: var(--gold); font-size: .75rem; }

  /* ─── RESPONSIVE ──────────────────────────────────────────── */
  @media (max-width: 1100px) {
    .navbar-wrap { --nav-h: 56px; }
    .nav-list { display: none; }
    .hamburger-btn { display: flex; }
    .nav-actions { margin-left: auto; gap: 8px; }
    .mobile-backdrop { display: block; }
    .logo-wrap { margin-right: 0; }
    .navbar {
      justify-content: space-between;
      padding: 0 max(16px, env(safe-area-inset-right)) 0 max(16px, env(safe-area-inset-left));
      height: 56px;
    }
    .navbar-wrap {
      background: rgba(26, 20, 8, 0.72);
      border-bottom: 1px solid rgba(232, 176, 32, 0.22);
    }
    .navbar-wrap.scrolled,
    .navbar-wrap.nav-over-content {
      background: rgba(26, 20, 8, 0.88);
    }
    .logo-wrap img {
      height: 34px;
      width: 34px;
      border-radius: 50%;
      border: 1.5px solid rgba(232, 176, 32, 0.35);
      object-fit: cover;
      padding: 1px;
      background: rgba(255, 255, 255, 0.06);
    }
    .logo-text .name { font-size: .82rem; }
    .logo-text .sub { font-size: .48rem; letter-spacing: .16em; opacity: .8; }
    .wg-search-overlay {
      padding: max(6vh, 56px) 14px 20px;
    }
    .wg-search-panel {
      padding: 22px 20px 16px;
      border-radius: 12px;
    }
    .wg-search-title { font-size: 1.1rem; }
  }
  @media (max-width: 380px) {
    .logo-text .sub { display: none; }
    .logo-text .name { font-size: .76rem; }
  }
  @media (min-width: 1101px) {
    .mobile-drawer,
    .mobile-backdrop { display: none !important; }
  }
