/* ?????? 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); }

    /* ?????? HERO ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #hero {
      position: relative; min-height: 42vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden; padding: 140px 20px 70px;
      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(2rem, 6.5vw, 4.4rem); color: var(--bone); letter-spacing: -0.02em; }
    .brand-sub  { display: block; font-size: clamp(1.3rem, 4vw, 2.4rem); 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.05rem); 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); }
    }

    /* ?????? TERMS BODY ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #terms-body {
      background: var(--jungle-dark);
      padding: 60px 40px 100px;
    }

    .terms-inner {
      max-width: 860px;
      margin: 0 auto;
    }

    /* Table of contents */
    .toc {
      background: rgba(240,180,41,0.05);
      border: 1px solid rgba(240,180,41,0.18);
      border-radius: 12px;
      padding: 32px 36px;
      margin-bottom: 60px;
    }
    .toc-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      color: var(--gold);
      margin-bottom: 16px;
      letter-spacing: 0.05em;
    }
    .toc-list {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 32px;
    }
    .toc-list li a {
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--bone-dim);
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: color 0.2s;
    }
    .toc-list li a:hover { color: var(--gold); }
    .toc-list li::before {
      content: '??? ';
      color: var(--gold);
      opacity: 0.6;
    }

    /* Section blocks */
    .terms-section {
      margin-bottom: 52px;
      scroll-margin-top: 100px;
    }

    .terms-section-header {
      display: flex; align-items: center; gap: 14px;
      margin-bottom: 20px; padding-bottom: 14px;
      border-bottom: 1px solid rgba(240,180,41,0.12);
    }

    .terms-section-num {
      font-family: var(--font-display);
      font-size: 0.75rem;
      color: var(--gold);
      background: rgba(240,180,41,0.1);
      border: 1px solid rgba(240,180,41,0.2);
      border-radius: 6px;
      padding: 4px 10px;
      flex-shrink: 0;
      letter-spacing: 1px;
    }

    .terms-section-title {
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 2.5vw, 1.35rem);
      color: var(--bone);
    }

    .terms-prose {
      font-size: 0.95rem;
      color: var(--bone-dim);
      line-height: 1.85;
    }

    .terms-prose p { margin-bottom: 14px; }
    .terms-prose p:last-child { margin-bottom: 0; }

    .terms-prose ul {
      margin: 10px 0 16px 0;
      padding-left: 0;
      list-style: none;
    }

    .terms-prose ul li {
      position: relative;
      padding-left: 20px;
      margin-bottom: 8px;
      font-size: 0.93rem;
    }

    .terms-prose ul li::before {
      content: '???';
      position: absolute;
      left: 0;
      color: var(--gold);
      opacity: 0.7;
      font-size: 0.75rem;
      top: 3px;
    }

    .terms-prose strong { color: var(--bone); font-weight: 800; }

    /* Sub-section (within a section) */
    .terms-subsection {
      background: rgba(232,213,163,0.03);
      border: 1px solid rgba(232,213,163,0.08);
      border-left: 3px solid rgba(240,180,41,0.35);
      border-radius: 0 8px 8px 0;
      padding: 20px 24px;
      margin: 20px 0;
    }

    .terms-subsection-title {
      font-family: var(--font-display);
      font-size: 0.95rem;
      color: var(--gold);
      margin-bottom: 10px;
      letter-spacing: 0.04em;
    }

    /* Notice box */
    .terms-notice {
      background: rgba(240,180,41,0.06);
      border: 1px solid rgba(240,180,41,0.22);
      border-radius: 10px;
      padding: 18px 22px;
      margin: 20px 0;
      font-size: 0.9rem;
      color: var(--bone-dim);
      line-height: 1.7;
    }
    .terms-notice strong { color: var(--gold); }

    /* Inline badge */
    .badge {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 900;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      background: rgba(240,180,41,0.12);
      color: var(--gold);
      border: 1px solid rgba(240,180,41,0.3);
      border-radius: 4px;
      padding: 2px 8px;
      margin-right: 6px;
      vertical-align: middle;
    }

    /* Divider between major parts */
    .part-divider {
      display: flex; align-items: center; gap: 16px;
      margin: 60px 0 52px;
    }
    .part-divider::before, .part-divider::after {
      content: ''; flex: 1;
      height: 1px; background: rgba(240,180,41,0.15);
    }
    .part-divider-label {
      font-family: var(--font-display);
      font-size: 0.85rem;
      color: var(--gold);
      letter-spacing: 3px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    /* Reveal animation */
    .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); }

    /* ?????? 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: 22px; 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);
      line-height: 1.8;
    }
    .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; }
      #terms-body { padding: 40px 20px 80px; }
      .toc-list { grid-template-columns: 1fr; }
      .footer-inner { grid-template-columns: 1fr; text-align: center; }
      .footer-links { justify-content: center; }
      .footer-socials { justify-content: center; }
    }

    @media (max-width: 480px) {
      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; }
    }