:root {
      --gold: #b8892a;
      --gold-light: #d4a843;
      --gold-dark: #8a6010;
      --gold-glow: rgba(184,137,42,0.2);
      --amber: #c8701a;
      --amber-soft: rgba(200,112,26,0.12);
      /* Light Theme */
      --bg: #fdfaf4;
      --bg2: #f5ede0;
      --bg3: #efe3cc;
      --surface: #ffffff;
      --surface2: #faf5ec;
      --cream: #faf5ea;
      --text: #1a1408;
      --text2: #3d2e14;
      --text-muted: #7a6540;
      --border: rgba(184,137,42,0.2);
      --border-strong: rgba(184,137,42,0.4);
      /* Keep dark for hero slides only */
      --deep: #080810;
      --dark: #10101a;
      --red-sacred: #7a1515;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'Raleway', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    ::selection { background: var(--gold-light); color: var(--surface); }
    .font-display { font-family: 'Cormorant Garamond', serif; }

    /* ─── SACRED STRIP ─── */
    .sacred-strip {
      background: linear-gradient(135deg, var(--red-sacred) 0%, #5a1010 50%, var(--red-sacred) 100%);
      padding: 11px 0;
      text-align: center;
      font-size: 0.68rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(250,245,234,0.85);
      border-bottom: 1px solid rgba(212,168,67,0.3);
    }
    .sacred-strip span { color: #f0cc70; margin: 0 14px; }

    /* ─── NAVBAR ─── */
    #mainNav {
      background: rgba(253,250,244,0.92);
      padding: 10px 0;
      transition: all 0.4s ease;
      z-index: 9999;
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }
    #mainNav.scrolled {
      background: rgba(253,250,244,0.98);
      padding: 10px 0;
      box-shadow: 0 2px 30px rgba(184,137,42,0.12);
      border-bottom: 1px solid var(--border-strong);
    }
    .navbar-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.85rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      color: var(--gold) !important;
    }
    .navbar-brand span { color: var(--text2); font-weight: 300; }
a.navbar-brand img {
    max-width: 70px;
}
    .nav-link {
      font-family: 'Raleway', sans-serif;
      font-size: 16px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text2) !important;
      padding: 8px 14px !important;
      transition: color 0.3s;
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 14px; right: 14px;
      height: 1px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .nav-link:hover { color: var(--gold) !important; }
    .nav-link:hover::after { transform: scaleX(1); }

    /* ─── DROPDOWN SUBMENU ─── */
    .nav-item.dropdown .nav-link::after { display: none; }
    .nav-item.dropdown > .nav-link .caret {
      font-size: 0.6rem;
      margin-left: 4px;
      transition: transform 0.3s;
      display: inline-block;
    }
    .nav-item.dropdown:hover > .nav-link .caret { transform: rotate(180deg); }

    .dropdown-menu {
      border: 1px solid var(--border-strong);
      border-radius: 0;
      background: var(--surface);
      box-shadow: 0 12px 40px rgba(0,0,0,0.1), 0 4px 16px rgba(184,137,42,0.08);
      padding: 12px 0;
      min-width: 220px;
      margin-top: 6px !important;
      animation: dropFade 0.2s ease;
    }
    @keyframes dropFade {
      from { opacity: 0; transform: translateY(-8px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .dropdown-item {
      font-family: 'Raleway', sans-serif;
      font-size: 0.76rem;
      font-weight: 500;
      letter-spacing: 0.06em;
      color: var(--text2);
      padding: 10px 20px;
      transition: all 0.25s;
      display: flex;
      align-items: center;
      gap: 10px;
      border: none;
      background: none;
    }
    .dropdown-item i {
      width: 16px;
      color: var(--gold);
      font-size: 0.75rem;
    }
    .dropdown-item:hover {
      color: var(--gold);
      background: rgba(184,137,42,0.06);
      padding-left: 26px;
    }
    .dropdown-divider { border-color: var(--border); margin: 6px 0; }

    /* Mega submenu for Rooms */
    .mega-menu {
      min-width: 520px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding: 20px;
      gap: 4px;
    }
    .mega-col-title {
      font-size: 0.6rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      padding: 4px 8px 10px;
      grid-column: 1 / -1;
    }
    .mega-item {
      padding: 10px 12px;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.25s;
      text-decoration: none;
      display: block;
    }
    .mega-item:hover { background: rgba(184,137,42,0.06); }
    .mega-item-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      display: block;
      transition: color 0.25s;
    }
    .mega-item:hover .mega-item-name { color: var(--gold); }
    .mega-item-sub {
      font-size: 0.7rem;
      color: var(--text-muted);
      display: block;
      margin-top: 2px;
    }
    .mega-item-price {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.85rem;
      color: var(--gold);
      font-weight: 600;
      display: block;
      margin-top: 3px;
    }

    .btn-book-nav {
      background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
      color: #fff !important;
      border-radius: 0;
      padding: 10px 24px !important;
      font-size: 15px !important;
      font-weight: 700 !important;
      letter-spacing: 0.15em;
      transition: all 0.3s;
      border: none;
      box-shadow: 0 3px 16px rgba(184,137,42,0.25);
    }
    .btn-book-nav:hover {
      background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
      box-shadow: 0 6px 24px rgba(184,137,42,0.4);
      transform: translateY(-1px);
      color: #fff !important;
    }
    .btn-book-nav::after { display: none !important; }

    .navbar-toggler { border-color: var(--gold); }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(184,137,42,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ══════════════════════════════════════
       ─── HERO SLIDER (stays dark) ───
    ══════════════════════════════════════ */
    #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 620px;
      overflow: hidden;
    }
    .slider-track { position: absolute; inset: 0; z-index: 0; }
    .slide {
      position: absolute; inset: 0;
      opacity: 0;
      transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
      pointer-events: none;
    }
    .slide.active { opacity: 1; pointer-events: auto; }
    .slide-bg {
      position: absolute; inset: 0;
      background-size: cover;
      background-position: center;
      transform: scale(1.08);
      transition: transform 8s ease;
    }
    .slide.active .slide-bg { transform: scale(1.0); }
    .slide-1 .slide-bg { background-image: url('../img/banner1.jpeg'); }
    .slide-1 .slide-color-overlay { background: linear-gradient(135deg, rgba(42,26,94,0.72) 0%, rgba(8,8,16,0.45) 50%, rgba(122,21,21,0.4) 100%); }
    .slide-2 .slide-bg { background-image: url('../img/banner1.jpeg'); }
    .slide-2 .slide-color-overlay { background: linear-gradient(135deg, rgba(8,8,16,0.8) 0%, rgba(26,107,107,0.25) 50%, rgba(212,168,67,0.2) 100%); }
    .slide-3 .slide-bg { background-image: url('../img/banner1.jpeg'); }
    .slide-3 .slide-color-overlay { background: linear-gradient(135deg, rgba(122,21,21,0.65) 0%, rgba(8,8,16,0.5) 50%, rgba(42,26,94,0.45) 100%); }
    .slide-4 .slide-bg { background-image: url('../img/banner1.jpeg'); }
    .slide-4 .slide-color-overlay { background: linear-gradient(135deg, rgba(8,8,16,0.75) 0%, rgba(212,168,67,0.15) 40%, rgba(42,26,94,0.55) 100%); }
    .slide-5 .slide-bg { background-image: url('../img/banner1.jpeg'); }
    .slide-5 .slide-color-overlay { background: linear-gradient(135deg, rgba(26,107,107,0.55) 0%, rgba(8,8,16,0.55) 50%, rgba(232,134,42,0.25) 100%); }
    .slide-color-overlay { position: absolute; inset: 0; }
    .slide-bottom-fade {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(8,8,16,0.95) 0%, rgba(8,8,16,0.3) 40%, rgba(8,8,16,0.15) 70%, transparent 100%);
    }
    .slide-content {
      position: absolute; inset: 0;
      display: flex;
      align-items: center;
      z-index: 5;
      padding: 0 0 80px;
    }
    .slide-tag {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 0.68rem; letter-spacing: 0.28em; text-transform: uppercase;
      color: #f0cc70; font-weight: 600;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.7s 0.4s ease, transform 0.7s 0.4s ease;
    }
    .slide-tag::before { content: ''; width: 36px; height: 1px; background: linear-gradient(to right, transparent, #d4a843); }
    .slide-tag::after  { content: ''; width: 36px; height: 1px; background: linear-gradient(to left, transparent, #d4a843); }
    .slide-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.8rem, 6.5vw, 6.2rem);
      font-weight: 300; line-height: 1.06;
      color: #faf5ea;
      opacity: 0; transform: translateY(28px);
      transition: opacity 0.8s 0.6s ease, transform 0.8s 0.6s ease;
    }
    .slide-title em {
      font-style: italic;
      background: linear-gradient(135deg, #f0cc70, #e8862a);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }
    .slide-sub {
      font-size: 0.88rem; letter-spacing: 0.06em;
      color: rgba(250,245,234,0.72); line-height: 1.85; max-width: 500px;
      opacity: 0; transform: translateY(20px);
      transition: opacity 0.7s 0.85s ease, transform 0.7s 0.85s ease;
    }
    .slide-btns {
      opacity: 0; transform: translateY(16px);
      transition: opacity 0.7s 1.05s ease, transform 0.7s 1.05s ease;
    }
    .slide.active .slide-tag, .slide.active .slide-title,
    .slide.active .slide-sub, .slide.active .slide-btns { opacity: 1; transform: translateY(0); }

    .slider-prev, .slider-next {
      position: absolute; top: 50%; transform: translateY(-50%);
      z-index: 20; width: 58px; height: 58px;
      background: rgba(8,8,16,0.5); border: 1px solid rgba(212,168,67,0.35);
      color: #d4a843; font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.35s; backdrop-filter: blur(8px);
    }
    .slider-prev { left: 32px; }
    .slider-next { right: 32px; }
    .slider-prev:hover, .slider-next:hover {
      background: #d4a843; color: #080810; border-color: #d4a843;
      transform: translateY(-50%) scale(1.06);
    }
    @media (max-width: 576px) {
      .slider-prev { left: 14px; width: 44px; height: 44px; }
      .slider-next { right: 14px; width: 44px; height: 44px; }
    }
    .slider-dots { position: absolute; bottom: 100px; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; gap: 10px; align-items: center; }
    .slider-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(212,168,67,0.3); border: 1px solid rgba(212,168,67,0.5); cursor: pointer; transition: all 0.3s; }
    .slider-dot.active { background: #d4a843; width: 28px; border-radius: 4px; box-shadow: 0 0 10px rgba(212,168,67,0.6); }
    .slider-progress { position: absolute; bottom: 0; left: 0; height: 3px; background: linear-gradient(to right, #d4a843, #e8862a); z-index: 20; width: 0%; transition: width linear; box-shadow: 0 0 8px rgba(212,168,67,0.5); }
    .slide-counter { position: absolute; right: 32px; bottom: 110px; z-index: 20; font-family: 'Cormorant Garamond', serif; font-size: 0.9rem; color: rgba(212,168,67,0.7); letter-spacing: 0.12em; }
    .slide-counter .current { font-size: 1.6rem; color: #d4a843; line-height: 1; }
    .hero-scroll { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(250,245,234,0.5); font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; z-index: 20; }
    .scroll-line { width: 1px; height: 38px; background: linear-gradient(to bottom, #d4a843, transparent); animation: scrollDrop 1.6s ease-in-out infinite; }
    @keyframes scrollDrop { 0%,100% { transform: scaleY(1); opacity: 1; } 50% { transform: scaleY(0.4); opacity: 0.3; } }

    .location-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(212,168,67,0.12); border: 1px solid rgba(212,168,67,0.3);
      padding: 6px 18px; font-size: 0.68rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: #f0cc70; margin-bottom: 18px; backdrop-filter: blur(4px);
    }

    /* ─── BUTTONS ─── */
    .btn-gold {
      background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
      color: #fff; border: none; border-radius: 0;
      padding: 15px 42px; font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      transition: all 0.35s; text-decoration: none; display: inline-block;
      box-shadow: 0 4px 20px rgba(184,137,42,0.25);
    }
    .btn-gold:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); color: #fff; transform: translateY(-3px); box-shadow: 0 10px 34px rgba(184,137,42,0.4); }
    .btn-outline-gold {
      background: rgba(255,255,255,0.06); color: #faf5ea;
      border: 1px solid rgba(250,245,234,0.4); border-radius: 0;
      padding: 15px 42px; font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      transition: all 0.35s; text-decoration: none; display: inline-block; backdrop-filter: blur(4px);
    }
    .btn-outline-gold:hover { border-color: #d4a843; color: #d4a843; background: rgba(212,168,67,0.1); }
    .btn-gold-light {
      background: transparent; color: var(--gold);
      border: 1.5px solid var(--gold); border-radius: 0;
      padding: 12px 32px; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase;
      transition: all 0.3s; text-decoration: none; display: inline-block;
    }
    .btn-gold-light:hover { background: var(--gold); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,137,42,0.3); }

    /* ─── BOOKING STRIP (light) ─── */
    #booking-strip {
      background: var(--surface);
      border-top: 2px solid var(--gold-light);
      border-bottom: 1px solid var(--border);
      padding: 28px 0;
      box-shadow: 0 4px 20px rgba(184,137,42,0.06);
    }
    .booking-strip-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px; font-weight: 700; }
    .booking-input {
      background: var(--bg);
      border: 1px solid var(--border-strong);
      border-radius: 0; color: var(--text) !important;
      padding: 10px 14px; font-size: 0.85rem;
      font-family: 'Raleway', sans-serif; width: 100%;
      outline: none; transition: border-color 0.3s;
    }
    .booking-input:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 3px rgba(184,137,42,0.08); }
    .booking-input option { background: #fff; color: var(--text); }
    .btn-check-avail {
      background: var(--gold); color: #fff; border: none; border-radius: 0;
      padding: 12px 28px; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.15em; text-transform: uppercase; width: 100%;
      cursor: pointer; transition: all 0.3s;
    }
    .btn-check-avail:hover { background: var(--gold-light); transform: translateY(-1px); }

    /* ─── SECTION COMMONS ─── */
    section { padding: 96px 0; }
    .section-tag {
      font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
      color: var(--gold); font-weight: 700;
      display: flex; align-items: center; gap: 12px;
    }
    .section-tag::before, .section-tag::after { content: ''; width: 30px; height: 1px; background: var(--gold); display: inline-block; }
    .section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 400; line-height: 1.1; color: var(--text); }
    .section-title span { color: var(--gold); font-style: italic; }
    .gold-line { width: 50px; height: 2px; background: var(--gold); }

    /* ─── ABOUT (light bg) ─── */
    #about { background: var(--surface); }
    .about-img-wrap { position: relative; }
    .about-img-main { width: 100%; height: 520px; object-fit: cover; display: block; }
    .about-img-accent { position: absolute; bottom: -30px; right: -30px; width: 55%; height: 280px; object-fit: cover; border: 4px solid var(--surface); box-shadow: 0 8px 30px rgba(0,0,0,0.12); }
    .about-stat { border-left: 2px solid var(--gold); padding-left: 20px; }
    .about-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 600; color: var(--gold); line-height: 1; }
    .about-stat-label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }
    .about-body { font-size: 0.92rem; line-height: 1.9; color: var(--text-muted); }

    /* ─── ROOMS (light bg) ─── */
    #rooms { background: var(--bg2); }
    .room-card { position: relative; overflow: hidden; cursor: pointer; }
    .room-card img { width: 100%; height: 380px; object-fit: cover; display: block; transition: transform 0.7s ease; }
    .room-card:hover img { transform: scale(1.08); }
    .room-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.92) 0%, transparent 55%); transition: background 0.4s; }
    .room-card:hover .room-card-overlay { background: linear-gradient(to top, rgba(13,13,13,0.96) 0%, rgba(13,13,13,0.3) 55%); }
    .room-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px 28px 32px; }
    .room-pill { display: inline-block; background: rgba(212,168,67,0.2); border: 1px solid rgba(212,168,67,0.5); color: #f0cc70; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; padding: 4px 12px; margin-bottom: 10px; }
    .room-name { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 500; color: #faf5ea; line-height: 1.2; }
    .room-meta { display: flex; gap: 18px; margin-top: 10px; flex-wrap: wrap; }
    .room-meta span { font-size: 0.72rem; color: rgba(247,242,232,0.6); letter-spacing: 0.05em; }
    .room-meta i { color: #d4a843; margin-right: 5px; }
    .room-price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: #d4a843; margin-top: 12px; }
    .room-price span { font-size: 0.75rem; color: rgba(247,242,232,0.55); font-family: 'Raleway', sans-serif; }
    .room-cta { display: inline-block; margin-top: 14px; font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: #d4a843; border-bottom: 1px solid #d4a843; padding-bottom: 2px; opacity: 0; transform: translateY(8px); transition: opacity 0.4s, transform 0.4s; text-decoration: none; }
    .room-card:hover .room-cta { opacity: 1; transform: translateY(0); }

    /* ─── SERVICES (light) ─── */
    #services { background: var(--surface); }
    .service-box { padding: 36px 30px; border: 1px solid var(--border); background: var(--bg); transition: all 0.4s; height: 100%; position: relative; overflow: hidden; }
    .service-box::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s; }
    .service-box:hover::before { transform: scaleX(1); }
    .service-box:hover { background: #fff; border-color: var(--border-strong); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(184,137,42,0.1); }
    .service-icon { width: 56px; height: 56px; border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.3rem; color: var(--gold); transition: all 0.3s; }
    .service-box:hover .service-icon { background: var(--gold); color: #fff; border-color: var(--gold); }
    .service-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--text); margin-bottom: 10px; }
    .service-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; }

    /* ─── GALLERY (light) ─── */
    #gallery { background: var(--bg); padding-bottom: 0; }
    .gallery-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: repeat(3, 200px); gap: 6px; }
    .gallery-item { overflow: hidden; position: relative; cursor: pointer; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(184,137,42,0); transition: background 0.3s; }
    .gallery-item:hover::after { background: rgba(184,137,42,0.1); }
    .g1 { grid-column: 1/5; grid-row: 1/3; }
    .g2 { grid-column: 5/9; grid-row: 1/2; }
    .g3 { grid-column: 9/13; grid-row: 1/2; }
    .g4 { grid-column: 5/7; grid-row: 2/3; }
    .g5 { grid-column: 7/9; grid-row: 2/3; }
    .g6 { grid-column: 9/13; grid-row: 2/3; }
    .g7 { grid-column: 1/4; grid-row: 3/4; }
    .g8 { grid-column: 4/8; grid-row: 3/4; }
    .g9 { grid-column: 8/13; grid-row: 3/4; }

    /* ─── TESTIMONIALS SLIDER ─── */
    #testimonials { background: var(--bg2); overflow: hidden; }
    .testi-slider-wrap { position: relative; }
    .testi-track-outer { overflow: hidden; }
    .testi-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
    }
    .testi-slide {
      min-width: 100%;
      padding: 0 12px;
    }
    @media (min-width: 992px) {
      .testi-slide { min-width: 33.333%; }
    }
    @media (min-width: 768px) and (max-width: 991px) {
      .testi-slide { min-width: 50%; }
    }

    .testi-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 36px 30px;
      position: relative;
      height: 100%;
      transition: all 0.35s;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    }
    .testi-card:hover { border-color: var(--border-strong); box-shadow: 0 8px 32px rgba(184,137,42,0.1); transform: translateY(-4px); }
    .testi-quote { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--gold); line-height: 0.5; opacity: 0.25; display: block; margin-bottom: 10px; }
    .testi-text { font-family: 'Cormorant Garamond', serif; font-size: 1.12rem; font-style: italic; color: var(--text); line-height: 1.8; }
    .testi-name { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-top: 20px; font-weight: 700; }
    .testi-origin { font-size: 0.72rem; color: var(--text-muted); }
    .testi-stars { color: var(--gold); font-size: 0.75rem; margin-top: 8px; }
    .testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-strong); margin-right: 12px; }

    /* Slider controls */
    .testi-slider-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 40px;
    }
    .testi-btn {
      width: 46px; height: 46px;
      background: var(--surface); border: 1.5px solid var(--border-strong);
      color: var(--gold); font-size: 0.85rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.3s; border-radius: 0;
    }
    .testi-btn:hover { background: var(--gold); color: #fff; border-color: var(--gold); }
    .testi-dots { display: flex; gap: 8px; align-items: center; }
    .testi-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--border-strong); cursor: pointer; transition: all 0.3s;
    }
    .testi-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

    /* ─── ENQUIRY (light) ─── */
    #enquiry { background: var(--surface); }
    .enquiry-wrap { background: var(--bg); border: 1px solid var(--border); padding: 56px 48px; }
    .enquiry-input {
      background: var(--surface); border: 1px solid var(--border-strong); border-radius: 0;
      color: var(--text) !important; padding: 13px 16px;
      font-family: 'Raleway', sans-serif; font-size: 0.85rem; width: 100%;
      outline: none; transition: border-color 0.3s;
    }
    .enquiry-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,137,42,0.08); }
    .enquiry-input::placeholder { color: var(--text-muted); opacity: 0.6; }
    .enquiry-input option { background: #fff; color: var(--text); }
    .enquiry-label { font-size: 0.67rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px; display: block; font-weight: 600; }

    /* ─── FOOTER (keep dark) ─── */
    footer { background: #0e0b06; border-top: 2px solid var(--gold); padding: 20px 0 20px; text-align: center;}
    .footer-brand { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--gold-light); font-weight: 600; }
    .footer-tagline { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(200,191,168,0.55); margin-top: 4px; }
    .footer-desc { font-size: 0.82rem; color: rgba(200,191,168,0.45); line-height: 1.9; margin-top: 16px; }
    .footer-heading { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 22px; font-weight: 700; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 0.83rem; color: rgba(200,191,168,0.45); text-decoration: none; transition: color 0.3s; letter-spacing: 0.03em; }
    .footer-links a:hover { color: var(--gold-light); }
    .footer-contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
    .footer-contact-icon { color: var(--gold-light); font-size: 0.85rem; margin-top: 3px; width: 16px; flex-shrink: 0; }
    .footer-contact-text { font-size: 0.82rem; color: rgba(200,191,168,0.45); line-height: 1.7; }
    .social-row { display: flex; gap: 10px; margin-top: 20px; }
    .social-btn { width: 36px; height: 36px; border: 1px solid rgba(212,168,67,0.3); display: flex; align-items: center; justify-content: center; color: rgba(200,191,168,0.55); text-decoration: none; font-size: 0.8rem; transition: all 0.3s; }
    .social-btn:hover { background: var(--gold-light); color: #0e0b06; border-color: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(212, 168, 67, 0.1);
}
    .footer-copy { font-size: 1rem; color:#fff; letter-spacing: 0.06em; }

    /* ─── ANIMATIONS ─── */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up-delay-1 { transition-delay: 0.1s; }
    .fade-up-delay-2 { transition-delay: 0.2s; }
    .fade-up-delay-3 { transition-delay: 0.3s; }
    .fade-up-delay-4 { transition-delay: 0.4s; }

    .modal-content { background: var(--surface); border: 1px solid var(--border); border-radius: 0; }
    .modal-header { border-bottom: 1px solid var(--border); }

    .ornament-divider { display: flex; align-items: center; gap: 16px; justify-content: center; }
    .ornament-divider::before { content: ''; flex: 1; max-width: 120px; height: 1px; background: linear-gradient(to right, transparent, var(--border-strong)); }
    .ornament-divider::after { content: ''; flex: 1; max-width: 120px; height: 1px; background: linear-gradient(to left, transparent, var(--border-strong)); }
    .ornament-icon { color: var(--gold); font-size: 0.9rem; }

    .whatsapp-float { position: fixed; bottom: 30px; right: 30px; z-index: 9000; width: 54px; height: 54px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.3s; }
    .whatsapp-float:hover { transform: scale(1.1); color: white; }

    @media (max-width: 768px) {
      .about-img-accent { display: none; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(5, 180px); }
      .g1 { grid-column: 1/3; grid-row: 1/2; }
      .g2 { grid-column: 1/2; grid-row: 2/3; }
      .g3 { grid-column: 2/3; grid-row: 2/3; }
      .g4 { grid-column: 1/2; grid-row: 3/4; }
      .g5 { grid-column: 2/3; grid-row: 3/4; }
      .g6 { grid-column: 1/3; grid-row: 4/5; }
      .g7 { grid-column: 1/2; grid-row: 5/6; }
      .g8 { grid-column: 2/3; grid-row: 5/6; }
      .g9 { display: none; }
      .enquiry-wrap { padding: 36px 22px; }
      .mega-menu { min-width: unset; grid-template-columns: 1fr; }
    }
    @media (max-width: 576px) { section { padding: 70px 0; } }
    /* ════════════════════════════════════════════
       ABOUT US PAGE STYLES
       Radha Nikunj Grand — about.html
    ════════════════════════════════════════════ */

    /* ─── ABOUT PAGE HERO ─── */
    .about-page-hero {
      min-height: 100vh;
      background: linear-gradient(160deg, #0e0a05 0%, #1a100a 40%, #0a0810 100%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 100px;
    }
    .about-hero-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(184,137,42,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 70%, rgba(122,21,21,0.18) 0%, transparent 55%);
    }
    .about-hero-pattern {
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(184,137,42,0.03) 60px, rgba(184,137,42,0.03) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(184,137,42,0.03) 60px, rgba(184,137,42,0.03) 61px);
    }
    .about-hero-content {
      padding: 80px 0 120px;
      text-align: center;
    }
    .about-hero-badge {
      display: inline-flex;
      align-items: center;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-light);
      border: 1px solid rgba(212,168,67,0.3);
      padding: 10px 22px;
      margin-bottom: 32px;
    }
    .about-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 8vw, 7rem);
      font-weight: 300;
      color: #faf5ea;
      line-height: 1.08;
      letter-spacing: -0.01em;
    }
    .about-hero-title em {
      font-style: italic;
      color: var(--gold-light);
    }
    .about-hero-sub {
      font-size: 1rem;
      color: rgba(250,245,234,0.5);
      line-height: 1.9;
      margin-top: 28px;
      font-weight: 300;
      letter-spacing: 0.04em;
    }
    .about-hero-scroll {
      position: absolute;
      bottom: 40px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(250,245,234,0.35);
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
    }
    .about-hero-scroll .scroll-line {
      width: 1px;
      height: 50px;
      background: linear-gradient(to bottom, rgba(184,137,42,0.6), transparent);
      animation: scrollPulse 2s infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(0.6); }
    }

    /* ─── BREADCRUMB ─── */
.about-breadcrumb {
    background: linear-gradient(160deg, #0e0a05 0%, #1a100a 40%, #0a0810 100%);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-top: 60px;
}
    .about-breadcrumb .breadcrumb {
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin: 0;
    }
    .about-breadcrumb .breadcrumb-item a {
      color: var(--gold);
      text-decoration: none;
    }
    .about-breadcrumb .breadcrumb-item.active {
      color: var(--text-muted);
    }
    .about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
      color: var(--border-strong);
      content: "✦";
      font-size: 0.5rem;
      vertical-align: middle;
    }

    /* ─── REUSABLE ABOUT TYPOGRAPHY ─── */
    .about-tag-line {
      font-size: 0.65rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 14px;
    }
    .about-section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 400;
      color: var(--text);
      line-height: 1.15;
    }
    .about-section-title em {
      font-style: italic;
      color: var(--gold);
    }
    .about-body-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.95;
    }

    /* ─── INTRO SECTION ─── */
    .about-intro-section {
      padding: 110px 0;
      background: var(--bg);
    }
    .about-img-wrapper {
      position: relative;
      padding-bottom: 30px;
      padding-right: 30px;
    }
    .about-img-main {
      position: relative;
      z-index: 2;
      overflow: hidden;
    }
    .about-img-main::before {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid rgba(184,137,42,0.2);
      z-index: 3;
      pointer-events: none;
    }
    .about-img-main img {
      width: 100%;
      height: 520px;
      object-fit: cover;
      display: block;
      transition: transform 0.8s ease;
    }
    .about-img-wrapper:hover .about-img-main img { transform: scale(1.04); }
    .about-img-accent-card {
      position: absolute;
      bottom: 0;
      right: 0;
      background: var(--gold);
      padding: 28px 32px;
      text-align: center;
      z-index: 4;
      min-width: 140px;
    }
    .about-accent-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 600;
      color: #fff;
      line-height: 1;
    }
    .about-accent-label {
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.8);
      margin-top: 6px;
      line-height: 1.5;
    }
    .about-img-badge-left {
      position: absolute;
      top: 30px;
      left: -20px;
      background: var(--surface);
      border: 1px solid var(--border-strong);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      z-index: 4;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    }
    .about-img-badge-left i {
      color: var(--gold);
      font-size: 1rem;
    }
    .about-img-badge-left span {
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text2);
      font-weight: 700;
    }
    .about-highlights-row {
      display: flex;
      gap: 0;
      border: 1px solid var(--border);
    }
    .about-highlight-item {
      flex: 1;
      padding: 22px 20px;
      text-align: center;
      border-right: 1px solid var(--border);
    }
    .about-highlight-item:last-child { border-right: none; }
    .about-highlight-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 600;
      color: var(--gold);
      line-height: 1;
    }
    .about-highlight-label {
      font-size: 0.63rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin-top: 6px;
      line-height: 1.4;
    }

    /* ─── PHILOSOPHY SECTION ─── */
    .about-philosophy-section {
      padding: 110px 0;
      background: var(--bg2);
      position: relative;
      overflow: hidden;
    }
    .about-philosophy-bg-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(8rem, 18vw, 18rem);
      font-weight: 700;
      color: rgba(184,137,42,0.04);
      pointer-events: none;
      white-space: nowrap;
      letter-spacing: 0.1em;
    }
    .philosophy-card {
      background: var(--surface);
      border: 1px solid var(--border);
      padding: 44px 36px;
      position: relative;
      height: 100%;
      transition: all 0.4s;
      overflow: hidden;
    }
    .philosophy-card::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
      transform: scaleX(0);
      transition: transform 0.4s;
    }
    .philosophy-card:hover::after { transform: scaleX(1); }
    .philosophy-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(184,137,42,0.1);
      border-color: var(--border-strong);
    }
    .philosophy-card--featured {
      background: linear-gradient(160deg, var(--gold-dark) 0%, var(--gold) 100%);
      border-color: var(--gold);
    }
    .philosophy-card--featured::after { display: none; }
    .philosophy-card--featured .philosophy-title,
    .philosophy-card--featured .philosophy-num { color: #fff; }
    .philosophy-card--featured .philosophy-desc { color: rgba(255,255,255,0.82); }
    .philosophy-card--featured .philosophy-icon { color: #fff; border-color: rgba(255,255,255,0.3); }
    .philosophy-card--featured:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(138,96,16,0.4); }
    .philosophy-icon {
      width: 60px;
      height: 60px;
      border: 1px solid var(--border-strong);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--gold);
      margin-bottom: 24px;
    }
    .philosophy-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 4rem;
      font-weight: 700;
      color: rgba(184,137,42,0.12);
      line-height: 1;
      position: absolute;
      top: 20px;
      right: 28px;
    }
    .philosophy-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.55rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 14px;
    }
    .philosophy-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.9;
    }

    /* ─── TIMELINE SECTION ─── */
    .about-timeline-section {
      padding: 110px 0;
      background: var(--bg);
    }
    .timeline-wrapper {
      position: relative;
      margin-top: 20px;
    }
    .timeline-line {
      position: absolute;
      left: 50%;
      top: 0; bottom: 0;
      width: 1px;
      background: linear-gradient(to bottom, transparent, var(--border-strong) 10%, var(--border-strong) 90%, transparent);
      transform: translateX(-50%);
    }
    .timeline-left {
      padding-right: 60px;
      text-align: right;
      margin-bottom: 48px;
    }
    .timeline-right {
      padding-left: 60px;
      text-align: left;
      margin-bottom: 48px;
      margin-top: 60px;
    }
    .timeline-item {
      position: relative;
    }
    .timeline-dot {
      position: absolute;
      width: 14px;
      height: 14px;
      background: var(--gold);
      border: 3px solid var(--bg);
      border-radius: 50%;
      top: 6px;
      box-shadow: 0 0 0 1px var(--gold);
    }
    .timeline-left .timeline-dot {
      right: -67px;
    }
    .timeline-right .timeline-dot {
      left: -67px;
    }
    .timeline-dot--gold {
      background: var(--gold-light);
      box-shadow: 0 0 0 4px rgba(184,137,42,0.2);
      width: 18px;
      height: 18px;
    }
    .timeline-left .timeline-dot--gold { right: -69px; }
    .timeline-right .timeline-dot--gold { left: -69px; }
    .timeline-year {
      font-size: 0.62rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 8px;
    }
    .timeline-event-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 10px;
    }
    .timeline-event-desc {
      font-size: 0.83rem;
      color: var(--text-muted);
      line-height: 1.8;
    }

    /* ─── TEAM SECTION ─── */
    .about-team-section {
      padding: 110px 0;
      background: var(--bg2);
    }
    .team-card {
      background: var(--surface);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: all 0.4s;
    }
    .team-card:hover {
      border-color: var(--border-strong);
      box-shadow: 0 16px 50px rgba(184,137,42,0.1);
      transform: translateY(-5px);
    }
    .team-img-wrap {
      position: relative;
      overflow: hidden;
      height: 280px;
    }
    .team-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      transition: transform 0.6s ease;
      filter: grayscale(20%);
    }
    .team-card:hover .team-img-wrap img { transform: scale(1.06); filter: grayscale(0%); }
    .team-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,8,5,0.7) 0%, transparent 50%);
      display: flex;
      align-items: flex-end;
      justify-content: flex-end;
      padding: 16px;
      opacity: 0;
      transition: opacity 0.4s;
    }
    .team-card:hover .team-overlay { opacity: 1; }
    .team-om {
      width: 44px;
      height: 44px;
      background: var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1rem;
    }
    .team-info {
      padding: 28px 24px 30px;
    }
    .team-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 4px;
    }
    .team-role {
      font-size: 0.65rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 16px;
    }
    .team-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 0.98rem;
      font-style: italic;
      color: var(--text-muted);
      line-height: 1.75;
      border-left: 2px solid var(--border-strong);
      padding-left: 14px;
      margin: 0;
    }

    /* ─── AWARDS SECTION ─── */
    .about-awards-section {
      padding: 110px 0;
      background: var(--surface);
    }
    .award-card {
      border: 1px solid var(--border);
      padding: 40px 28px;
      text-align: center;
      background: var(--bg);
      transition: all 0.4s;
      position: relative;
      overflow: hidden;
      height: 100%;
    }
    .award-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(to right, var(--gold-dark), var(--gold-light));
      transform: scaleX(0);
      transition: transform 0.4s;
    }
    .award-card:hover::before { transform: scaleX(1); }
    .award-card:hover {
      border-color: var(--border-strong);
      background: var(--surface);
      transform: translateY(-5px);
      box-shadow: 0 16px 50px rgba(184,137,42,0.09);
    }
    .award-icon {
      font-size: 2rem;
      color: var(--gold);
      margin-bottom: 20px;
      display: block;
    }
    .award-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 8px;
    }
    .award-org {
      font-size: 0.72rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 12px;
    }
    .award-year {
      font-size: 0.63rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
    }

    /* ─── CTA SECTION ─── */
    .about-cta-section {
      padding: 130px 0;
      background: linear-gradient(160deg, #0e0a05 0%, #1c1208 50%, #080810 100%);
      position: relative;
      overflow: hidden;
    }
    .about-cta-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(184,137,42,0.1) 0%, transparent 65%);
    }
    .about-cta-om {
      font-size: 3rem;
      color: var(--gold);
      margin-bottom: 32px;
      opacity: 0.6;
    }
    .about-cta-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.5rem, 5vw, 4.5rem);
      font-weight: 300;
      color: #faf5ea;
      line-height: 1.1;
      margin-bottom: 24px;
    }
    .about-cta-title em {
      font-style: italic;
      color: var(--gold-light);
    }
    .about-cta-sub {
      font-size: 0.95rem;
      color: rgba(250,245,234,0.45);
      line-height: 1.9;
      font-weight: 300;
    }

    /* ─── BTN STYLES (ensure available on about page) ─── */
    .btn-gold {
      display: inline-flex;
      align-items: center;
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
      color: #fff !important;
      font-size: 0.72rem;
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      border: none;
      transition: all 0.3s;
    }
    .btn-gold:hover {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      box-shadow: 0 8px 30px rgba(184,137,42,0.35);
      transform: translateY(-2px);
    }
    .btn-outline-gold {
      display: inline-flex;
      align-items: center;
      padding: 13px 32px;
      background: transparent;
      color: var(--gold-light) !important;
      font-size: 0.72rem;
      font-family: 'Raleway', sans-serif;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      text-decoration: none;
      border: 1px solid rgba(212,168,67,0.5);
      transition: all 0.3s;
    }
    .btn-outline-gold:hover {
      background: rgba(184,137,42,0.1);
      border-color: var(--gold-light);
    }
    .btn-book-nav {
      background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
      color: #fff !important;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      padding: 9px 22px !important;
      transition: all 0.3s;
    }
    .btn-book-nav:hover { opacity: 0.9; transform: translateY(-1px); }
    .btn-book-nav::after { display: none !important; }

    /* ─── ABOUT PAGE RESPONSIVE ─── */
    @media (max-width: 991px) {
      .timeline-line { display: none; }
      .timeline-left,
      .timeline-right {
        padding: 0 0 0 30px;
        text-align: left;
        margin-top: 0;
        border-left: 2px solid var(--border-strong);
        position: relative;
      }
      .timeline-left .timeline-dot,
      .timeline-right .timeline-dot {
        left: -22px;
        right: auto;
        top: 4px;
      }
      .timeline-left .timeline-dot--gold,
      .timeline-right .timeline-dot--gold {
        left: -24px;
        right: auto;
      }
    }
    @media (max-width: 768px) {
      .about-img-badge-left { display: none; }
      .about-img-main img { height: 320px; }
      .about-img-wrapper { padding-right: 20px; padding-bottom: 20px; }
      .about-highlights-row { flex-direction: column; border: 1px solid var(--border); }
      .about-highlight-item { border-right: none; border-bottom: 1px solid var(--border); }
      .about-highlight-item:last-child { border-bottom: none; }
      .about-page-hero { min-height: 80vh; }
    }

    /* ════════════════════════════════════════════
       GALLERY PAGE STYLES
       Radha Nikunj Grand — gallery.html
    ════════════════════════════════════════════ */

    /* ─── GALLERY PAGE HERO ─── */
    .gal-page-hero {
      min-height: 70vh;
      background: linear-gradient(160deg, #0e0a05 0%, #1a100a 40%, #0a0810 100%);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding-top: 100px;
    }
    .gal-hero-overlay {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(184,137,42,0.1) 0%, transparent 65%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(122,21,21,0.15) 0%, transparent 55%);
    }
    .gal-hero-pattern {
      position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(184,137,42,0.025) 60px, rgba(184,137,42,0.025) 61px),
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(184,137,42,0.025) 60px, rgba(184,137,42,0.025) 61px);
    }
    .gal-hero-content {
      padding: 60px 0 100px;
    }
    .gal-hero-badge {
      display: inline-flex;
      align-items: center;
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-light);
      border: 1px solid rgba(212,168,67,0.3);
      padding: 10px 22px;
      margin-bottom: 28px;
    }
    .gal-hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 7vw, 6rem);
      font-weight: 300;
      color: #faf5ea;
      line-height: 1.1;
    }
    .gal-hero-title em { font-style: italic; color: var(--gold-light); }
    .gal-hero-sub {
      font-size: 1rem;
      color: rgba(250,245,234,0.45);
      line-height: 1.8;
      margin-top: 20px;
      letter-spacing: 0.05em;
    }
    .gal-hero-scroll {
      position: absolute; bottom: 36px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(250,245,234,0.3);
      font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
    }
    .gal-hero-scroll .scroll-line {
      width: 1px; height: 46px;
      background: linear-gradient(to bottom, rgba(184,137,42,0.5), transparent);
      animation: scrollPulse 2s infinite;
    }

    /* ─── GALLERY SECTION ─── */
    .gal-section {
      padding: 100px 0 120px;
      background: var(--bg);
    }

    /* ─── FILTER TABS ─── */
    .gal-filter-wrap {
      margin-bottom: 60px;
    }
    .gal-filters {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .gal-filter-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 22px;
      font-family: 'Raleway', sans-serif;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      background: var(--surface);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: all 0.3s;
      position: relative;
      white-space: nowrap;
    }
    .gal-filter-btn:hover {
      color: var(--gold);
      border-color: var(--border-strong);
      background: var(--bg2);
    }
    .gal-filter-btn.active {
      background: var(--gold);
      border-color: var(--gold);
      color: #fff;
    }
    .gal-filter-btn.active .gal-filter-count {
      background: rgba(255,255,255,0.25);
      color: #fff;
    }
    .gal-filter-count {
      background: var(--bg2);
      color: var(--text-muted);
      font-size: 0.6rem;
      padding: 2px 7px;
      border-radius: 20px;
      font-weight: 700;
      letter-spacing: 0;
      transition: all 0.3s;
    }

    /* ─── MASONRY GRID ─── */
    .gal-masonry {
      columns: 4;
      column-gap: 10px;
    }
    @media (max-width: 1199px) { .gal-masonry { columns: 3; } }
    @media (max-width: 767px)  { .gal-masonry { columns: 2; } }
    @media (max-width: 480px)  { .gal-masonry { columns: 1; } }

    .gal-item {
      break-inside: avoid;
      margin-bottom: 10px;
      cursor: pointer;
      overflow: hidden;
      position: relative;
      border: 1px solid var(--border);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .gal-item.gal-hidden {
      opacity: 0;
      transform: scale(0.95);
      pointer-events: none;
    }
    .gal-item.gal-visible {
      opacity: 1;
      transform: scale(1);
    }

    /* Tall items (show taller) */
    .gal-item.gal-tall .gal-img-wrap img {
      aspect-ratio: 3/4;
    }
    /* Wide items (shorter) */
    .gal-item.gal-wide .gal-img-wrap img {
      aspect-ratio: 16/7;
    }

    .gal-img-wrap {
      position: relative;
      overflow: hidden;
      display: block;
    }
    .gal-img-wrap img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .gal-item:hover .gal-img-wrap img { transform: scale(1.06); }

    /* Overlay */
    .gal-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(10,8,5,0.85) 0%, rgba(10,8,5,0.3) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .gal-item:hover .gal-overlay { opacity: 1; }
    .gal-overlay-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.6);
      width: 52px; height: 52px;
      background: rgba(184,137,42,0.85);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-size: 1rem;
      transition: transform 0.35s ease;
    }
    .gal-item:hover .gal-overlay-icon { transform: translate(-50%, -50%) scale(1); }
    .gal-overlay-label {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 500;
      color: #faf5ea;
      line-height: 1.2;
    }
    .gal-overlay-cat {
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-light);
      font-weight: 600;
      margin-top: 4px;
    }

    /* No results */
    .gal-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 80px 20px;
      gap: 16px;
      color: var(--text-muted);
    }
    .gal-empty i { font-size: 3rem; opacity: 0.3; }
    .gal-empty p { font-size: 0.9rem; letter-spacing: 0.05em; }

    /* ─── LIGHTBOX ─── */
    .lb-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(5,4,2,0.97);
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
      backdrop-filter: blur(6px);
    }
    .lb-backdrop.lb-open {
      opacity: 1;
      pointer-events: all;
    }
    .lb-container {
      position: relative;
      width: 100%;
      max-width: 1100px;
      padding: 0 70px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0;
    }
    .lb-img-wrap {
      position: relative;
      width: 100%;
      max-height: 75vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lb-img {
      max-width: 100%;
      max-height: 75vh;
      object-fit: contain;
      display: block;
      border: 1px solid rgba(184,137,42,0.2);
      transition: opacity 0.3s ease;
      box-shadow: 0 30px 100px rgba(0,0,0,0.8);
    }
    .lb-loader {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .lb-spinner {
      width: 40px; height: 40px;
      border: 2px solid rgba(184,137,42,0.2);
      border-top-color: var(--gold);
      border-radius: 50%;
      animation: lbSpin 0.8s linear infinite;
    }
    @keyframes lbSpin { to { transform: rotate(360deg); } }

    /* Info bar */
    .lb-info {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 18px 0 0;
      gap: 20px;
      border-top: 1px solid rgba(184,137,42,0.15);
      margin-top: 16px;
    }
    .lb-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 500;
      color: #faf5ea;
      line-height: 1.2;
      margin-bottom: 6px;
    }
    .lb-caption {
      font-size: 0.8rem;
      color: rgba(250,245,234,0.4);
      line-height: 1.7;
      max-width: 600px;
    }
    .lb-right {
      text-align: right;
      flex-shrink: 0;
    }
    .lb-cat {
      font-size: 0.62rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 6px;
    }
    .lb-counter {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      color: rgba(250,245,234,0.3);
    }
    .lb-counter span:first-child { color: var(--gold-light); font-size: 1.4rem; }

    /* Close / Prev / Next buttons */
    .lb-close {
      position: fixed;
      top: 24px; right: 30px;
      width: 48px; height: 48px;
      background: rgba(184,137,42,0.12);
      border: 1px solid rgba(184,137,42,0.25);
      color: rgba(250,245,234,0.7);
      font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      z-index: 100001;
    }
    .lb-close:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

    .lb-prev, .lb-next {
      position: fixed;
      top: 50%;
      transform: translateY(-50%);
      width: 52px; height: 52px;
      background: rgba(184,137,42,0.12);
      border: 1px solid rgba(184,137,42,0.25);
      color: rgba(250,245,234,0.7);
      font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      z-index: 100001;
    }
    .lb-prev { left: 20px; }
    .lb-next { right: 20px; }
    .lb-prev:hover, .lb-next:hover { background: var(--gold); color: #fff; border-color: var(--gold); }

    /* ─── GALLERY RESPONSIVE ─── */
    @media (max-width: 767px) {
      .gal-filters { gap: 6px; }
      .gal-filter-btn { padding: 9px 14px; font-size: 0.65rem; }
      .lb-container { padding: 0 50px; }
      .lb-caption { display: none; }
      .lb-info { flex-direction: column; align-items: flex-start; gap: 8px; }
      .lb-right { text-align: left; }
    }
    @media (max-width: 480px) {
      .lb-container { padding: 0 40px; }
      .lb-prev { left: 8px; }
      .lb-next { right: 8px; }
    }
