/* =============================================
       PHANTOM NAV BAR
       ============================================= */
    .phantom-nav {
      position: fixed; top: 0; left: 0; right: 0;
      z-index: 1000; padding: 1.5rem 5rem;
      display: flex; justify-content: space-between; align-items: center;
      transition: padding 0.5s ease, box-shadow 0.5s ease;
      background: rgba(255,228,217,0.97);
      border-bottom: 1px solid rgba(26,16,8,0.08);
      backdrop-filter: blur(12px);
    }
    .phantom-nav.scrolled {
      padding: 1rem 5rem;
      box-shadow: 0 4px 40px rgba(26,16,8,0.1);
    }
    .phantom-logo img { height: 3.5rem; transition: transform 0.3s ease; }
    .phantom-nav.scrolled .phantom-logo img { transform: scale(0.9); }
    
    .nav-side {
      flex: 1; display: flex; align-items: center; gap: 2.5rem;
    }
    .nav-left { justify-content: flex-end; padding-right: 3rem; }
    .nav-right { justify-content: flex-start; padding-left: 3rem; }

    .phantom-link {
      font-family: 'Lora', Georgia, serif;
      font-size: 0.85rem; letter-spacing: 0.1em;
      color: var(--bark);
      font-weight: 500;
      text-transform: uppercase;
      position: relative;
      padding-bottom: 5px;
    }
    .phantom-link::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0%; height: 1px; background: var(--gold);
      transition: width 0.3s ease;
    }
    .phantom-link:hover { color: var(--gold); }
    .phantom-link:hover::after { width: 100%; }
    
    .phantom-cta {
      background: var(--night); color: var(--amber); border: 1px solid rgba(200,134,10,0.3);
      padding: 0.7rem 1.8rem; border-radius: 4px; transition: all 0.3s ease;
      font-family: 'Lora', Georgia, serif; font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 500;
    }
    .phantom-cta:hover { background: var(--gold); color: #fff; box-shadow: 0 6px 25px rgba(200,134,10,0.25); }

    .phantom-hamburger { display: none; background: none; border: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 10000; }
    .phantom-hamburger span {
      display: block; width: 30px; height: 2px; background: #1a1008 !important; transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1); transform-origin: center;
    }
    .phantom-nav.scrolled .phantom-hamburger span,
    .scrolled .phantom-hamburger span {
      background: #1a1008 !important;
    }
    .phantom-hamburger.open span,
    #nav-toggle.open span {
      background: var(--gold) !important;
    }
    .phantom-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .phantom-hamburger.open span:nth-child(2) { opacity: 0; }
    .phantom-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    /* =============================================
       PHANTOM DROPDOWNS
       ============================================= */
    .phantom-dropdown { position: relative; display: inline-block; padding: 1.5rem 0; margin: -1.5rem 0; cursor: pointer; }
    .phantom-dropdown-menu {
      position: absolute; top: 120%; left: 50%; transform: translateX(-50%) translateY(15px);
      background: rgba(255, 245, 240, 0.98);
      backdrop-filter: blur(15px);
      min-width: 240px;
      border-radius: 8px;
      box-shadow: 0 10px 40px rgba(26,16,8,0.15);
      padding: 1rem 0;
      opacity: 0; pointer-events: none;
      transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
      border: 1px solid rgba(26,16,8,0.05);
      z-index: 1000;
    }
    .phantom-dropdown:hover .phantom-dropdown-menu {
      opacity: 1; pointer-events: all; transform: translateX(-50%) translateY(0); top: 100%;
    }
    .phantom-dropdown-menu a {
      display: block; padding: 0.8rem 1.8rem;
      font-family: 'Lora', serif; font-size: 0.9rem;
      color: var(--bark); text-decoration: none;
      transition: all 0.3s ease; text-transform: capitalize;
      letter-spacing: 0.05em; font-weight: 500;
      position: relative; overflow: hidden;
    }
    .phantom-dropdown-menu a::before {
      content: ''; position: absolute; left: 0; top: 0; bottom: 0;
      width: 3px; background: var(--gold);
      transform: scaleY(0); transition: transform 0.3s ease; transform-origin: center;
    }
    .phantom-dropdown-menu a:hover {
      background: rgba(200,134,10,0.03);
      color: var(--gold); padding-left: 2.2rem;
    }
    .phantom-dropdown-menu a:hover::before { transform: scaleY(1); }

    /* =============================================
       LUXURY MOBILE MENU SLIDE DRAWER
       ============================================= */
    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      height: 100dvh;
      background: rgba(17,19,24,0.6);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      opacity: 0;
      visibility: hidden;
      z-index: 99998;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .mobile-menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .phantom-mobile-menu {
      position: fixed;
      top: 0;
      right: -340px; /* Hidden offscreen */
      width: 340px;
      max-width: 100%;
      height: 100vh;
      height: 100dvh; /* Dynamic viewport height prevents Safari bottom bar overlaps */
      background: linear-gradient(135deg, rgba(26,16,8,0.99) 0%, rgba(15,10,5,0.99) 100%); /* Warm luxury safari gradient */
      backdrop-filter: blur(30px);
      -webkit-backdrop-filter: blur(30px);
      z-index: 99999;
      box-shadow: -20px 0 50px rgba(0,0,0,0.5), -10px 0 30px rgba(200, 134, 10, 0.05); /* Soft gold undertone glow */
      border-left: 2px solid var(--gold); /* Thin vertical luxury gold border strip */
      display: flex;
      flex-direction: column;
      padding: 5rem 2.2rem 3rem;
      transition: right 0.6s cubic-bezier(0.77, 0, 0.175, 1); /* Elastic-feel curve */
      opacity: 1 !important;
      pointer-events: all !important;
      perspective: 1000px; /* Enable 3D rendering */
      overflow-y: auto; /* Fully scrollable container if height is too small */
      -webkit-overflow-scrolling: touch;
    }
    .phantom-mobile-menu.open {
      right: 0; /* Slide in! */
    }

    .mobile-menu-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--gold) !important;
      font-size: 2rem;
      font-weight: 300;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
      line-height: 1;
      z-index: 100000;
    }
    .mobile-menu-close:hover {
      background: var(--gold);
      color: var(--night) !important;
      border-color: var(--gold);
      transform: rotate(90deg) scale(1.05);
    }

    .phantom-mobile-menu a {
      color: rgba(255,255,255,0.85) !important;
      font-family: 'Playfair Display', serif;
      font-size: 1.7rem !important;
      font-style: normal;
      font-weight: 500;
      text-decoration: none;
      margin-bottom: 1.6rem !important;
      display: block;
      transform: translateY(35px) rotateX(-25deg) scale(0.92); /* Elite 3D dynamic stance */
      transform-origin: left center;
      opacity: 0;
      transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .phantom-mobile-menu.open a {
      transform: translateY(0) rotateX(0) scale(1);
      opacity: 1;
    }
    .phantom-mobile-menu.open a:nth-child(1) { transition-delay: 0.12s; }
    .phantom-mobile-menu.open a:nth-child(2) { transition-delay: 0.18s; }
    .phantom-mobile-menu.open a:nth-child(3) { transition-delay: 0.24s; }
    .phantom-mobile-menu.open a:nth-child(4) { transition-delay: 0.3s; }
    .phantom-mobile-menu.open a:nth-child(5) { transition-delay: 0.36s; }
    .phantom-mobile-menu.open a:nth-child(6) { transition-delay: 0.42s; }

    .phantom-mobile-menu a:hover {
      color: var(--gold) !important;
      transform: translateX(8px) scale(1.03);
      letter-spacing: 0.05em;
    }

    .btn-mobile-book {
      display: block;
      width: 100%;
      padding: 1.1rem 1.5rem;
      background: var(--gold) !important;
      color: var(--night) !important;
      font-family: 'Lora', serif;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      text-align: center;
      border-radius: 4px;
      font-size: 0.85rem !important;
      transition: all 0.3s ease;
      opacity: 1 !important;
      transform: none !important;
      margin-top: 1rem;
    }
    .btn-mobile-book:hover {
      background: #fff !important;
      color: var(--night) !important;
    }

    @media (max-width: 991px) {
      .nav-side { display: none; }
      .phantom-hamburger { display: flex; }
      .phantom-nav { padding: 1.5rem 2rem; }
      .phantom-nav.scrolled { padding: 1rem 2rem; }
    }

    /* =============================================
       PROLOGUE BENTO BOX
       ============================================= */
    .prologue-section {
      background: var(--night); padding: 8rem 0 6rem;
      color: #fff;
    }
    .prologue-quote {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      line-height: 1.2; font-style: italic;
      max-width: 800px; margin: 0 auto;
      color: rgba(255,255,255,0.9);
    }
    .bento-container { margin-top: 5rem; }
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: repeat(2, 300px);
      gap: 1.5rem;
    }
    .bento-item {
      position: relative; border-radius: 12px; overflow: hidden;
      cursor: pointer;
    }
    .bento-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.8s ease, filter 0.5s ease;
      filter: brightness(0.7);
    }
    .bento-item:hover img { transform: scale(1.05); filter: brightness(0.4); }
    .item-large { grid-column: 1 / 3; grid-row: 1 / 3; }
    .item-tall { grid-column: 3 / 4; grid-row: 1 / 3; }
    
    .bento-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 2.5rem;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      transform: translateY(20px); opacity: 0;
      transition: all 0.4s ease;
    }
    .bento-item:hover .bento-overlay { transform: translateY(0); opacity: 1; }
    .bento-overlay h3 {
      font-family: 'Playfair Display', serif; font-size: 1.8rem;
      margin: 0.5rem 0 1rem; color: #fff;
    }
    .bento-link {
      color: var(--gold); font-size: 0.85rem; letter-spacing: 0.1em;
      text-transform: uppercase; font-family: 'Lora', serif;
    }

    @media (max-width: 991px) {
      .bento-grid {
        grid-template-columns: 1fr; grid-template-rows: auto;
      }
      .item-large, .item-tall { grid-column: span 1; grid-row: auto; height: 350px; }
    }

    /* =============================================
       EXPANDING GALLERY
       ============================================= */
    .expanding-gallery {
      display: flex; gap: 1rem; width: 100%; height: 60vh;
      max-width: 1400px; margin: 0 auto; padding: 0 1rem;
    }
    .expanding-card {
      flex: 1; position: relative; border-radius: 16px; overflow: hidden;
      cursor: pointer; transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .expanding-card img {
      width: 100%; height: 100%; object-fit: cover;
      filter: brightness(0.5); transition: filter 0.6s ease;
      position: absolute; inset: 0;
    }
    .expanding-card:hover, .expanding-card.active {
      flex: 4;
    }
    .expanding-card:hover img, .expanding-card.active img {
      filter: brightness(0.8);
    }
    .expanding-content {
      position: absolute; inset: 0; padding: 2rem;
      display: flex; align-items: flex-end;
    }
    .expanding-title-vertical {
      position: absolute; left: 1.5rem; bottom: 2rem;
      font-family: 'Playfair Display', serif; color: #fff;
      font-size: 1.5rem; white-space: nowrap;
      transform: rotate(-90deg); transform-origin: left bottom;
      transition: opacity 0.3s ease; opacity: 1;
    }
    .expanding-card:hover .expanding-title-vertical,
    .expanding-card.active .expanding-title-vertical { opacity: 0; pointer-events: none; }
    
    .expanding-details {
      opacity: 0; transform: translateY(20px);
      transition: all 0.5s ease; transition-delay: 0.1s;
      max-width: 400px;
    }
    .expanding-card:hover .expanding-details,
    .expanding-card.active .expanding-details {
      opacity: 1; transform: translateY(0); pointer-events: all;
    }
    .expanding-details h3 {
      font-family: 'Playfair Display', serif; font-size: 2.2rem;
      color: #fff; margin: 0.5rem 0 1rem; line-height: 1.1;
    }
    .expanding-details p { color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }

    @media (max-width: 768px) {
      .expanding-gallery { flex-direction: column; height: auto !important; gap: 1rem; }
      .expanding-card { flex: none !important; height: 130px !important; width: 100% !important; transition: height 0.5s cubic-bezier(0.25, 1, 0.5, 1) !important; }
      .expanding-card:hover, .expanding-card.active { height: 280px !important; }
      .expanding-title-vertical { transform: none !important; bottom: auto !important; top: 1.5rem !important; left: 1.5rem !important; font-size: 1.25rem !important; }
    }

    /* =============================================
       DUAL WORLDS
       ============================================= */
    .dual-worlds-section {
      display: flex; height: 85vh; width: 100%;
    }
    .dual-world {
      flex: 1; position: relative; overflow: hidden;
      cursor: pointer; transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    }
    .dual-world img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 1s ease;
    }
    .dual-overlay {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.4); transition: background 0.6s ease;
    }
    .dual-world:hover { flex: 1.5; }
    .dual-world:hover img { transform: scale(1.05); }
    .dual-world:hover .dual-overlay { background: rgba(0,0,0,0.2); }
    
    .dual-content {
      position: absolute; inset: 0; display: flex;
      flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 2rem; z-index: 2;
    }
    .dual-content h2 {
      font-family: 'Playfair Display', serif; font-size: clamp(3rem, 5vw, 5rem);
      color: #fff; line-height: 1; margin: 1rem 0 2rem; text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }
    @media (max-width: 768px) {
      .dual-worlds-section { flex-direction: column; height: 90vh !important; }
      .dual-world { flex: 1 !important; height: 50% !important; }
      .dual-world:hover { flex: 1 !important; }
    }

    /* =============================================
       CLASSIC LUXURY FOOTER
       ============================================= */
    .classic-footer {
      background: var(--night) !important; /* Deep safari brown/black */
      padding: 5rem 0 2rem;
      color: rgba(255,255,255,0.7) !important;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .classic-footer p,
    .classic-footer li,
    .classic-footer span,
    .classic-footer div {
      color: rgba(255,255,255,0.7) !important;
    }
    .classic-footer a {
      color: rgba(255,255,255,0.7) !important;
      transition: color 0.3s ease !important;
      text-decoration: none;
    }
    .classic-footer a:hover {
      color: var(--gold) !important;
    }
    .classic-footer .footer-col-title {
      color: var(--gold) !important;
    }
    .classic-footer .footer-newsletter-clean h2 {
      color: #fff !important;
    }
    .classic-footer .gold-text {
      color: var(--gold) !important;
    }
    .classic-footer strong {
      color: #fff !important;
    }
    
    .footer-newsletter-clean {
      text-align: center; max-width: 600px; margin: 0 auto 4rem;
    }
    .footer-newsletter-clean h2 {
      font-family: 'Playfair Display', serif; font-size: 2.2rem;
      color: #fff; margin-bottom: 1rem;
    }
    .footer-newsletter-clean p {
      color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; font-family: 'Lora', serif; font-size: 0.95rem;
    }
    
    .newsletter-form-clean {
      display: flex; gap: 0.5rem; justify-content: center;
    }
    .newsletter-form-clean input {
      width: 100%; max-width: 300px; padding: 0.8rem 1.2rem; background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,228,217,0.15); border-radius: 4px;
      font-family: 'Lora', serif; color: #fff;
    }
    .newsletter-form-clean input:focus { outline: none; border-color: var(--gold); }
    .newsletter-form-clean button {
      background: var(--gold); color: var(--night); border: none;
      padding: 0 1.5rem; font-family: 'Lora', serif; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer;
      transition: all 0.3s ease; border-radius: 4px;
    }
    .newsletter-form-clean button:hover { background: #fff; color: var(--night); }

    .clean-social-links {
      display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem;
    }
    .clean-social-link {
      display: flex; align-items: center; justify-content: center;
      padding: 0.6rem 1.5rem; border-radius: 30px; border: 1px solid rgba(255,255,255,0.15);
      background: transparent; color: #fff;
      transition: all 0.3s ease; text-decoration: none;
      font-family: 'Lora', serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 600;
    }
    .clean-social-link:hover {
      background: var(--gold); color: #fff; border-color: var(--gold); transform: translateY(-2px);
    }

    .footer-rule-clean { height: 1px; background: rgba(255,255,255,0.1); margin: 3rem 0; }

    .classic-footer .footer-col-title {
      font-family: 'Lora', serif; font-size: 0.75rem; letter-spacing: 0.25em;
      text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 2rem; font-weight: 600;
    }
    .classic-footer .footer-links { list-style: none; padding: 0; margin: 0; }
    .classic-footer .footer-links li { margin-bottom: 1.2rem; }
    .classic-footer .footer-links a { color: rgba(255,255,255,0.7); transition: color 0.3s ease; font-family: 'Lora', serif; font-size: 0.95rem; text-decoration: none; }
    .classic-footer .footer-links a:hover { color: var(--gold); }
    
    .classic-footer .contact-list li { color: rgba(255,255,255,0.7); font-family: 'Lora', serif; font-size: 0.95rem; margin-bottom: 1.5rem; line-height: 1.6; }
    .classic-footer .contact-list strong { color: #fff; font-weight: 600; display: block; margin-bottom: 0.1rem; font-size: 0.9rem; letter-spacing: 0.05em; text-transform: uppercase; }

    .classic-footer .footer-tagline {
      font-family: 'Playfair Display', serif; font-size: 1.2rem; color: #fff;
      line-height: 1.4; margin-top: 1.5rem; font-style: italic;
    }

    .classic-footer .footer-bottom {
      display: flex; justify-content: space-between; align-items: center;
      margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08);
      font-family: 'Lora', serif; font-size: 0.8rem; color: rgba(255,255,255,0.4);
      text-transform: uppercase; letter-spacing: 0.1em;
    }
    .classic-footer .bottom-links { display: flex; gap: 2rem; }
    .classic-footer .bottom-links a { color: inherit; transition: color 0.3s ease; text-decoration: none; }
    .classic-footer .bottom-links a:hover { color: var(--gold); }

    @media (max-width: 991px) {
      .newsletter-form-clean { flex-direction: column; align-items: center; }
      .newsletter-form-clean input { max-width: 100%; margin-bottom: 0.5rem; }
      .newsletter-form-clean button { width: 100%; max-width: 300px; padding: 1rem; }
      .classic-footer .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
      .clean-social-links { flex-direction: column; align-items: center; gap: 1rem; }
      .clean-social-link { width: 100%; max-width: 250px; }
      
      /* Centered mobile luxury alignments */
      .classic-footer { text-align: center !important; }
      .classic-footer .row > div { margin-bottom: 2.5rem !important; text-align: center !important; }
      .classic-footer .footer-logo-area { display: flex; justify-content: center; margin-bottom: 1rem; }
      .classic-footer .footer-logo-area img { filter: brightness(0) invert(1) !important; opacity: 0.9; }
      .classic-footer .footer-links { padding: 0 !important; display: flex; flex-direction: column; align-items: center; }
      .classic-footer .bottom-links { justify-content: center; gap: 1.5rem; }
      
      /* Fallback scroll reveals to prevent mobile invisible columns */
      .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
    }
