/* ?????? RESET & VARIABLES ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --jungle-deep:  #060e07;
      --jungle-dark:  #0c1f0e;
      --jungle-mid:   #122014;
      --bone:         #e8d5a3;
      --bone-dim:     rgba(232,213,163,0.6);
      --gold:         #f0b429;
      --gold-light:   #ffe080;
      --fire-bright:  #ff7c2a;
      --earth:        #5c3317;
      --earth-dark:   #3a1f0b;
      --earth-deep:   #1a0a02;
      --font-display: 'Titan One', cursive;
      --font-body:    'Nunito', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--jungle-deep);
      color: var(--bone);
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--jungle-deep); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ?????? SCROLL PROGRESS ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #scroll-progress {
      position: fixed; top: 0; left: 0;
      height: 3px; background: var(--gold); width: 0%;
      z-index: 10001; box-shadow: 0 0 10px rgba(240,180,41,0.8);
      transition: width 0.08s linear;
    }

    /* ?????? HEADER ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 40px;
      background: rgba(6,14,7,0.88); backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(240,180,41,0.12);
      transition: padding 0.3s, background 0.3s;
    }
    #header.scrolled { padding: 10px 40px; background: rgba(6,14,7,0.97); }

    .header-logo { text-decoration: none; display: flex; align-items: center; }
    .header-logo .logo-img { height: 52px; width: auto; display: block; }

    nav { display: flex; align-items: center; gap: 22px; }
    nav a {
      font-family: var(--font-body); font-weight: 800; font-size: 0.82rem;
      letter-spacing: 1px; text-transform: uppercase;
      color: var(--bone-dim); text-decoration: none;
      transition: color 0.2s; position: relative;
    }
    nav a::after {
      content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
      height: 2px; background: var(--gold);
      transform: scaleX(0); transition: transform 0.2s;
    }
    nav a:hover { color: var(--gold); }
    nav a:hover::after { transform: scaleX(1); }
    nav a.active { color: var(--gold); }
    nav a.active::after { transform: scaleX(1); }

    .btn-book {
      font-family: var(--font-body); font-weight: 800; font-size: 0.9rem;
      letter-spacing: 0.06em; background: var(--gold); color: var(--earth-deep);
      border: none; padding: 11px 26px; border-radius: 6px; cursor: pointer;
      text-decoration: none; display: inline-block;
      transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      box-shadow: 0 4px 20px rgba(240,180,41,0.35);
    }
    .btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(240,180,41,0.55); filter: brightness(1.08); }

    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; background: none; border: none; padding: 4px;
    }
    .hamburger span { display: block; width: 26px; height: 2px; background: var(--gold); transition: all 0.3s; border-radius: 2px; }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none; position: fixed; inset: 0;
      background: rgba(6,14,7,0.98); z-index: 1100;
      flex-direction: column; align-items: center; justify-content: center; gap: 28px;
    }
    @keyframes menu-open {
      from { opacity: 0; transform: translateX(50px); }
      to   { opacity: 1; transform: translateX(0); }
    }
    .mobile-menu.open { display: flex; animation: menu-open 0.35s cubic-bezier(0.22,1,0.36,1) both; }
    .mobile-menu a { font-family: var(--font-display); font-size: 2rem; color: var(--bone); text-decoration: none; transition: color 0.2s; }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close { position: absolute; top: 20px; right: 28px; background: none; border: none; color: var(--bone); font-size: 2rem; cursor: pointer; font-family: var(--font-display); }

    /* ?????? SHARED ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s cubic-bezier(0.22,1,0.36,1), transform 0.65s cubic-bezier(0.22,1,0.36,1); }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    .section-label { display: inline-block; font-size: 0.7rem; font-weight: 900; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
    .section-title { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.6rem); color: var(--bone); line-height: 1.05; }
    .accent { color: var(--gold); text-shadow: 0 0 20px rgba(240,180,41,0.4); }
    .section-divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--fire-bright)); border-radius: 2px; margin-top: 18px; }

    .btn-primary {
      display: inline-block; font-family: var(--font-body); font-weight: 800;
      font-size: 1.05rem; letter-spacing: 0.04em; background: var(--gold);
      color: var(--earth-deep); padding: 17px 38px; border-radius: 6px;
      text-decoration: none; transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      box-shadow: 0 4px 24px rgba(240,180,41,0.4);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(240,180,41,0.6); filter: brightness(1.08); }

    /* ?????? HERO ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #hero {
      position: relative; min-height: 52vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden; padding: 140px 20px 80px;
      background:
        radial-gradient(ellipse 80% 55% at 50% 0%, #3d1a04 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 50% 20%, rgba(240,180,41,0.12) 0%, transparent 55%),
        linear-gradient(180deg, #1a0a02 0%, #0c1a0e 45%, #060e07 100%);
    }

    .hero-bg-grid {
      position: absolute; inset: 0; pointer-events: none; z-index: 0;
      background-image: linear-gradient(rgba(240,180,41,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(240,180,41,0.03) 1px, transparent 1px);
      background-size: 70px 70px;
    }

    .spores { position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 1; }
    .spore { position: absolute; border-radius: 50%; background: var(--gold); opacity: 0; animation: sporeFloat linear infinite; }
    .spore:nth-child(1)  { width:3px;height:3px; left:8%;  animation-duration:12s; animation-delay:0s;   bottom:10%; }
    .spore:nth-child(2)  { width:2px;height:2px; left:18%; animation-duration:16s; animation-delay:2.5s; bottom:8%;  }
    .spore:nth-child(3)  { width:4px;height:4px; left:30%; animation-duration:10s; animation-delay:5s;   bottom:15%; }
    .spore:nth-child(4)  { width:2px;height:2px; left:44%; animation-duration:18s; animation-delay:1s;   bottom:5%;  }
    .spore:nth-child(5)  { width:3px;height:3px; left:57%; animation-duration:14s; animation-delay:7s;   bottom:12%; }
    .spore:nth-child(6)  { width:2px;height:2px; left:68%; animation-duration:11s; animation-delay:3s;   bottom:9%;  }
    .spore:nth-child(7)  { width:4px;height:4px; left:78%; animation-duration:15s; animation-delay:4.5s; bottom:18%; }
    .spore:nth-child(8)  { width:2px;height:2px; left:88%; animation-duration:13s; animation-delay:6s;   bottom:7%;  }

    @keyframes sporeFloat {
      0%   { opacity:0;   transform: translateY(0) scale(1); }
      10%  { opacity:0.7; }
      75%  { opacity:0.4; }
      100% { opacity:0;   transform: translateY(-65vh) translateX(15px) scale(0.2); }
    }

    .hero-content { position: relative; z-index: 2; max-width: 820px; }

    .hero-eyebrow {
      font-size: 0.72rem; font-weight: 900; letter-spacing: 5px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
      opacity: 0; animation: fadeUp 0.7s ease 0.2s forwards;
    }

    .hero-brand {
      font-family: var(--font-display); line-height: 0.95; margin-bottom: 20px;
      opacity: 0; animation: fadeUp 0.7s ease 0.35s forwards;
    }
    .brand-main { display: block; font-size: clamp(2.4rem, 8vw, 5.5rem); color: var(--bone); letter-spacing: -0.02em; }
    .brand-sub  { display: block; font-size: clamp(1.6rem, 5vw, 3.2rem); color: var(--gold); text-shadow: 0 0 40px rgba(240,180,41,0.5); letter-spacing: 0.04em; }

    .hero-sub {
      font-size: clamp(0.95rem, 2vw, 1.1rem); color: var(--bone-dim);
      line-height: 1.75; max-width: 560px; margin: 0 auto;
      opacity: 0; animation: fadeUp 0.7s ease 0.5s forwards;
    }

    @keyframes fadeUp {
      from { opacity:0; transform: translateY(20px); }
      to   { opacity:1; transform: translateY(0); }
    }

    /* ?????? CATEGORY TABS ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #faq-tabs {
      padding: 60px 40px 0;
      background: var(--jungle-dark);
    }

    .tabs-inner { max-width: 900px; margin: 0 auto; }

    .tab-list {
      display: flex; flex-wrap: wrap; gap: 10px;
      justify-content: center; margin-bottom: 0;
    }

    .tab-btn {
      font-family: var(--font-body); font-weight: 800; font-size: 0.78rem;
      letter-spacing: 1px; text-transform: uppercase;
      background: rgba(232,213,163,0.05);
      border: 1px solid rgba(232,213,163,0.15);
      color: var(--bone-dim); padding: 10px 18px; border-radius: 6px;
      cursor: pointer; transition: all 0.2s;
    }
    .tab-btn:hover { color: var(--gold); border-color: rgba(240,180,41,0.3); background: rgba(240,180,41,0.06); }
    .tab-btn.active { color: var(--earth-deep); background: var(--gold); border-color: var(--gold); }

    /* ?????? FAQ SECTIONS ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #faq-body {
      padding: 0 40px 80px;
      background: var(--jungle-dark);
    }

    .faq-body-inner { max-width: 900px; margin: 0 auto; padding-top: 50px; }

    .faq-category { margin-bottom: 60px; }
    .faq-category:last-child { margin-bottom: 0; }

    .faq-category-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 24px; padding-bottom: 16px;
      border-bottom: 1px solid rgba(240,180,41,0.12);
    }

    .faq-cat-icon {
      font-size: 1.6rem; line-height: 1;
      background: rgba(240,180,41,0.08);
      border: 1px solid rgba(240,180,41,0.2);
      border-radius: 10px; padding: 10px 12px;
    }

    .faq-cat-title {
      font-family: var(--font-body); font-weight: 800;
      font-size: clamp(1.1rem, 3vw, 1.5rem);
      color: var(--gold);
    }

    .faq-item {
      border: 1px solid rgba(232,213,163,0.1);
      border-radius: 10px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item.open { border-color: rgba(240,180,41,0.3); }

    .faq-question {
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      padding: 18px 22px; cursor: pointer;
      font-weight: 700; font-size: 0.97rem; color: var(--bone);
      transition: background 0.2s, color 0.2s;
      user-select: none; list-style: none;
    }
    .faq-question:hover { background: rgba(240,180,41,0.05); color: var(--gold); }
    .faq-item.open .faq-question { color: var(--gold); background: rgba(240,180,41,0.06); }

    .faq-icon {
      font-size: 1.3rem; line-height: 1; color: var(--gold);
      transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
      flex-shrink: 0;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0; overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.22,1,0.36,1);
    }
    .faq-item.open .faq-answer { max-height: 800px; }

    .faq-answer-inner {
      padding: 0 22px 20px;
      font-size: 0.93rem; color: var(--bone-dim); line-height: 1.8;
    }
    .faq-answer-inner a { color: var(--gold); text-decoration: none; }
    .faq-answer-inner a:hover { text-decoration: underline; }
    .faq-answer-inner strong { color: var(--bone); }
    .faq-answer-inner ul { margin: 10px 0 0 20px; }
    .faq-answer-inner li { margin-bottom: 6px; }

    /* ?????? CTA STRIP ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #cta-strip {
      padding: 80px 40px;
      background: var(--jungle-deep);
      text-align: center;
      position: relative;
    }
    #cta-strip::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(58,31,11,0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    .cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
    .cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3.2vw, 2rem); color: var(--bone); margin-bottom: 14px; }
    .cta-inner p { color: var(--bone-dim); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }

    /* ?????? FOOTER ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    footer { background: var(--earth-deep); border-top: 1px solid rgba(240,180,41,0.12); padding: 60px 40px; }

    .footer-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: auto 1fr auto;
      align-items: center; gap: 40px;
    }

    .footer-logo { text-decoration: none; display: flex; align-items: center; }
    .footer-logo .logo-img { height: 48px; width: auto; display: block; }

    .footer-links { display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; }
    .footer-links a { font-size: 0.82rem; font-weight: 700; color: rgba(232,213,163,0.4); text-decoration: none; letter-spacing: 1px; transition: color 0.2s; }
    .footer-links a:hover { color: var(--gold); }

    .footer-socials { display: flex; gap: 12px; align-items: center; }
    .social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(232,213,163,0.05); border: 1px solid rgba(232,213,163,0.1); transition: background 0.2s, border-color 0.2s; }
    .social-link:hover { background: rgba(240,180,41,0.12); border-color: rgba(240,180,41,0.3); }
    .social-link svg { width: 16px; height: 16px; fill: var(--bone-dim); }

    .footer-copy {
      max-width: 1100px; margin: 32px auto 0;
      font-size: 0.75rem; color: rgba(232,213,163,0.2);
      text-align: center; padding-top: 28px;
      border-top: 1px solid rgba(232,213,163,0.06);
    }
    .footer-copy a { color: rgba(232,213,163,0.2); text-decoration: none; }

    /* ?????? FLOAT CTA ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    .float-cta {
      position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
      z-index: 500; pointer-events: none;
      opacity: 0; transition: opacity 0.4s;
    }
    .float-cta.visible { opacity: 1; pointer-events: auto; }
    .float-cta a {
      display: inline-block; font-family: var(--font-body); font-weight: 800;
      font-size: 0.9rem; background: var(--gold); color: var(--earth-deep);
      padding: 14px 28px; border-radius: 50px; text-decoration: none;
      box-shadow: 0 8px 32px rgba(240,180,41,0.5);
      white-space: nowrap; transition: transform 0.15s, box-shadow 0.15s;
    }
    .float-cta a:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(240,180,41,0.65); }

    /* ?????? RESPONSIVE ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    @media (max-width: 768px) {
      #header { padding: 14px 20px; }
      nav { display: none; }
      .btn-book { display: none; }
      .hamburger { display: flex; }
      #faq-tabs, #faq-body { padding-left: 20px; padding-right: 20px; }
      .footer-inner { grid-template-columns: 1fr; text-align: center; }
      .footer-links { justify-content: center; }
      .footer-socials { justify-content: center; }
      #cta-strip { padding: 60px 20px; }
    }

    @media (max-width: 480px) {
      .tab-btn { padding: 8px 12px; font-size: 0.72rem; }
      #faq-tabs { padding-top: 40px; }
      footer { padding: 40px 20px; }
    }

    /* ?????? SCROLL TO TOP ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #scroll-top {
      position: fixed; bottom: 28px; right: 28px; z-index: 600;
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--gold); border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(240,180,41,0.45);
      opacity: 0; transform: translateY(12px);
      transition: opacity 0.3s, transform 0.3s, box-shadow 0.2s, filter 0.2s;
      pointer-events: none;
    }
    #scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    #scroll-top:hover { box-shadow: 0 8px 32px rgba(240,180,41,0.65); filter: brightness(1.1); }
    #scroll-top svg { width: 18px; height: 18px; fill: none; stroke: #1a0a02; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
    @media (max-width: 768px) {
      #scroll-top { bottom: 76px; right: 16px; z-index: 950; }
    }