/* ?????? 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); }

    .btn-book {
      font-family: var(--font-body); font-weight: 800; font-size: 0.9rem;
      letter-spacing: 0.06em; background: var(--fire-bright); color: #fff;
      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(255,124,42,0.35);
    }
    .btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,124,42,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 { gap: 18px; }
    .mobile-menu a { font-family: var(--font-body); font-weight: 800; font-size: 1.35rem; 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(--fire-bright);
      color: #fff; 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(255,124,42,0.4);
    }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 40px rgba(255,124,42,0.6); filter: brightness(1.08); }

    .btn-secondary {
      display: inline-block; font-family: var(--font-body); font-weight: 800;
      font-size: 1.05rem; letter-spacing: 0.04em; background: transparent;
      color: var(--bone); padding: 15px 36px; border-radius: 6px;
      text-decoration: none; border: 2px solid rgba(232,213,163,0.25);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-secondary:hover { border-color: var(--bone); background: rgba(232,213,163,0.06); transform: translateY(-2px); }

    .divider-down { line-height: 0; overflow: hidden; }
    .divider-down svg { display: block; width: 100%; }

    /* ?????? HERO ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden; padding: 120px 20px 100px;
      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%),
        radial-gradient(ellipse 60% 40% at 50% 100%, rgba(12,31,14,0.9) 0%, transparent 60%),
        linear-gradient(180deg, #1a0a02 0%, #0c1a0e 45%, #060e07 100%);
    }

    .hero-video {
      position: absolute; inset: 0; width: 100%; height: 100%;
      object-fit: cover; opacity: 0.3; z-index: 0;
    }

    .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%;  }
    .spore:nth-child(9)  { width:3px;height:3px; left:23%; animation-duration:17s; animation-delay:8s;   bottom:20%; background:var(--fire-bright); }
    .spore:nth-child(10) { width:2px;height:2px; left:63%; animation-duration:12s; animation-delay:2s;   bottom:14%; background:var(--gold-light); }
    .spore:nth-child(11) { width:3px;height:3px; left:38%; animation-duration:19s; animation-delay:9s;   bottom:6%;  }
    .spore:nth-child(12) { width:2px;height:2px; left:92%; animation-duration:14s; animation-delay:1.5s; bottom:22%; background:var(--fire-bright); }

    @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-bg-grid {
      position: absolute; inset: 0; pointer-events: none; z-index: 1;
      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;
    }

    .dino-silhouette { position: absolute; fill: rgba(232,213,163,0.04); }
    .dino-left-wrap  { position: absolute; left:-40px; bottom:40px; width:400px; z-index:1; animation: dinoBreath 6s ease-in-out infinite; transform-origin: bottom center; }
    .dino-right-wrap { position: absolute; right:-20px; bottom:20px; width:360px; z-index:1; transform: scaleX(-1); transform-origin: bottom center; }
    .dino-right-wrap svg { animation: dinoBreath 7s ease-in-out infinite reverse; transform-origin: bottom center; }
    .dino-mid { left:50%; transform:translateX(-50%) scaleX(-1); bottom:0; width:460px; opacity:0.03; }
    @keyframes dinoBreath { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }

    .hero-content {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; align-items: center;
      max-width: 820px;
    }

    .hero-eyebrow {
      font-size: 0.72rem; font-weight: 900; letter-spacing: 5px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 10px;
    }

    .hero-featuring {
      font-family: var(--font-body); font-weight: 700;
      font-size: clamp(0.9rem, 2.5vw, 1.1rem);
      color: var(--bone-dim); letter-spacing: 2px;
      text-transform: uppercase; margin-bottom: 16px;
    }

    .hero-logo-img { width: min(520px, 85vw); height: auto; display: block; margin: 0 auto; filter: drop-shadow(0 0 30px rgba(240,180,41,0.25)); }

    .hero-brand {
      font-family: var(--font-display); line-height: 0.95; margin-bottom: 20px;
    }
    .brand-dinos { display: block; font-size: clamp(2.4rem, 8.5vw, 5.5rem); color: var(--bone); letter-spacing: -0.02em; text-shadow: 0 0 60px rgba(232,213,163,0.1); }
    .brand-roar  { display: block; font-size: clamp(2.4rem, 8.5vw, 5.5rem); 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: 620px; text-align: center;
      margin-bottom: 36px;
    }

    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 52px; }

    .hero-price-pill {
      display: inline-flex; align-items: center; gap: 10px;
      background: rgba(240,180,41,0.08);
      border: 1px solid rgba(240,180,41,0.25);
      border-radius: 50px; padding: 10px 22px;
      font-size: 0.88rem; font-weight: 800; color: var(--bone);
    }
    .hero-price-pill strong { color: var(--gold); font-family: var(--font-body); font-weight: 800; font-size: 1.1rem; }

    .hero-scroll {
      position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: var(--bone-dim); font-size: 0.72rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; z-index: 2;
      animation: scrollBob 2s ease-in-out infinite;
    }
    @keyframes scrollBob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }
    .hero-scroll svg { width: 22px; height: 22px; }

    /* ?????? INTRO ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #intro {
      padding: 100px 40px;
      background: var(--jungle-dark);
      position: relative;
    }

    .intro-inner {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }

    .intro-text .section-divider { margin-bottom: 28px; }

    .intro-text p {
      font-size: 1rem; color: var(--bone-dim); line-height: 1.8; margin-bottom: 20px;
    }

    .intro-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }

    .intro-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(6,14,7,0.7); border: 1px solid rgba(240,180,41,0.15);
      border-radius: 8px; padding: 10px 16px;
      font-size: 0.83rem; font-weight: 700; color: var(--bone-dim);
    }

    .intro-photo {
      width: 100%; border-radius: 16px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.55);
      display: block; object-fit: cover;
    }

    /* ?????? WHAT'S INCLUDED ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #included {
      padding: 100px 40px;
      background: var(--jungle-deep);
      position: relative;
    }

    #included::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 60% 60% at 50% 30%, rgba(58,31,11,0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .included-header { text-align: center; max-width: 640px; margin: 0 auto 70px; }
    .included-header .section-divider { margin: 18px auto 0; }

    .included-grid {
      max-width: 1100px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .include-card {
      background: var(--jungle-dark);
      border: 1px solid rgba(240,180,41,0.1);
      border-radius: 18px; padding: 36px 32px;
      position: relative; overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
    }

    .include-card:hover {
      transform: translateY(-6px);
      border-color: rgba(240,180,41,0.25);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }

    .include-card.span-2 { grid-column: span 2; }

    .include-card::before {
      content: ''; position: absolute; top:0; left:0; right:0; height:3px;
      background: linear-gradient(90deg, var(--gold), var(--fire-bright));
    }

    .include-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }

    .include-title {
      font-family: var(--font-body); font-weight: 800; font-size: 1.4rem;
      color: var(--bone); margin-bottom: 16px; line-height: 1.1;
    }

    .include-list { list-style: none; }
    .include-list li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 0.9rem; color: var(--bone-dim); line-height: 1.5;
      padding: 7px 0; border-bottom: 1px solid rgba(232,213,163,0.05);
    }
    .include-list li:last-child { border-bottom: none; }
    .include-list .dot { color: var(--gold); flex-shrink: 0; margin-top: 2px; font-size: 0.8rem; }
    .include-list strong { color: var(--bone); }

    .include-note {
      margin-top: 16px; padding: 12px 16px;
      background: rgba(240,180,41,0.06);
      border: 1px solid rgba(240,180,41,0.15);
      border-radius: 8px;
      font-size: 0.82rem; color: var(--bone-dim); line-height: 1.6;
    }

    .food-photo {
      width: 100%; height: 220px;
      object-fit: cover; border-radius: 10px;
      margin-bottom: 20px; display: block;
    }

    /* ?????? GALLERY STRIP ??????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #gallery {
      padding: 0;
      display: grid; grid-template-columns: repeat(3,1fr);
      height: 360px;
    }

    .gallery-img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.4s ease, filter 0.4s ease;
      filter: brightness(0.85);
    }

    .gallery-img:hover { transform: scale(1.03); filter: brightness(1); }

    /* ?????? PRICING ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
.pricing-title {
      font-weight: 400 !important;
      font-family: var(--font-body) !important;
      font-size: clamp(1.4rem, 3.5vw, 2.2rem) !important;
      letter-spacing: 0.08em;
    }

    #pricing {
      padding: 100px 40px;
      background: var(--jungle-dark);
      position: relative;
    }

    #pricing::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(58,31,11,0.25) 0%, transparent 70%);
      pointer-events: none;
    }

    .pricing-header { text-align: center; max-width: 620px; margin: 0 auto 70px; }
    .pricing-header .section-divider { margin: 18px auto 0; }

    .pricing-inner { max-width: 1000px; margin: 0 auto; }

    /* Main price card */
    .main-price-card {
      background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(240,180,41,0.1) 0%, transparent 55%),
        linear-gradient(160deg, #1a0a02 0%, #0c1f0e 100%);
      border: 2px solid var(--gold);
      border-radius: 24px; padding: 56px 56px 48px;
      text-align: center; position: relative; overflow: hidden;
      box-shadow: 0 0 60px rgba(240,180,41,0.12);
      margin-bottom: 24px;
    }

    .main-price-card::before {
      content: '????'; position: absolute;
      font-size: 11rem; opacity: 0.04;
      bottom: -20px; right: -20px; pointer-events: none;
    }

    .main-price-card::after {
      content: '????'; position: absolute;
      font-size: 9rem; opacity: 0.04;
      top: -15px; left: -15px; pointer-events: none;
    }

    .package-label {
      display: inline-block; background: var(--fire-bright); color: #fff;
      font-size: 0.68rem; font-weight: 900; letter-spacing: 3px;
      text-transform: uppercase; padding: 6px 18px; border-radius: 4px;
      margin-bottom: 20px;
      animation: pulseBadge 2.5s ease-in-out infinite;
    }
    @keyframes pulseBadge {
      0%,100% { box-shadow: 0 0 0 0 rgba(255,124,42,0.5); }
      50%      { box-shadow: 0 0 0 10px rgba(255,124,42,0); }
    }

    .package-name {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--bone);
      margin-bottom: 6px; line-height: 1.1;
    }

    .package-capacity {
      font-size: 0.88rem; color: var(--bone-dim); font-weight: 700;
      margin-bottom: 32px; letter-spacing: 1px;
    }

    .price-display {
      display: flex; align-items: flex-start; justify-content: center;
      gap: 4px; margin-bottom: 8px;
    }

    .price-currency {
      font-family: var(--font-display); font-size: 2rem;
      color: var(--gold); margin-top: 10px;
    }

    .price-amount-big {
      font-family: var(--font-display);
      font-size: clamp(4rem, 12vw, 7rem); color: var(--gold); line-height: 1;
      text-shadow: 0 0 40px rgba(240,180,41,0.4);
    }

    .price-gst {
      font-size: 0.88rem; color: var(--bone-dim);
      align-self: flex-end; margin-bottom: 12px; font-weight: 700;
    }

    .price-caption {
      font-size: 0.88rem; color: var(--bone-dim); margin-bottom: 36px;
    }

    .price-divider-line { height: 1px; background: rgba(232,213,163,0.08); margin: 32px 0; }

    .price-extras-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 16px; margin-bottom: 36px;
    }

    .price-extra {
      background: rgba(6,14,7,0.6);
      border: 1px solid rgba(240,180,41,0.12);
      border-radius: 12px; padding: 18px 20px; text-align: left;
    }

    .price-extra-label {
      font-size: 0.72rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--bone-dim); margin-bottom: 6px;
    }

    .price-extra-value {
      font-family: var(--font-display); font-size: 1.5rem; color: var(--gold);
      text-shadow: 0 0 15px rgba(240,180,41,0.3);
    }

    .price-extra-note {
      font-size: 0.75rem; color: var(--bone-dim); margin-top: 3px; line-height: 1.4;
    }

    .price-extra-value small { font-size: 0.9rem; }

    /* ?????? HOW TO BOOK ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #how {
      padding: 100px 40px;
      background: var(--jungle-deep);
      position: relative;
    }

    .how-header { text-align: center; max-width: 600px; margin: 0 auto 70px; }
    .how-header .section-divider { margin: 18px auto 0; }

    .steps-grid {
      max-width: 1000px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 20px; position: relative;
    }

    .steps-grid::before {
      content: ''; position: absolute;
      top: 44px; left: calc(12.5% + 10px); right: calc(12.5% + 10px);
      height: 2px; background: linear-gradient(90deg, var(--gold), var(--fire-bright), var(--gold));
      opacity: 0.2;
    }

    .step-card {
      background: rgba(6,14,7,0.7);
      border: 1px solid rgba(240,180,41,0.1);
      border-radius: 16px; padding: 32px 20px 28px;
      text-align: center;
      transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), border-color 0.3s, box-shadow 0.3s;
    }
    .step-card:hover { transform: translateY(-6px); border-color: rgba(240,180,41,0.3); box-shadow: 0 16px 44px rgba(0,0,0,0.5); }

    .step-number {
      font-family: var(--font-display); font-size: 3.5rem; line-height: 1;
      color: var(--gold); text-shadow: 0 0 20px rgba(240,180,41,0.3);
      margin-bottom: 12px; display: block;
    }

    .step-title {
      font-family: var(--font-body); font-weight: 800; font-size: 1.1rem;
      color: var(--bone); margin-bottom: 8px; line-height: 1.15;
    }

    .step-desc { font-size: 0.83rem; color: var(--bone-dim); line-height: 1.6; }

    /* ?????? ADDITIONAL INFO ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #info {
      padding: 90px 40px;
      background: var(--jungle-dark);
      position: relative; overflow: hidden;
    }

    #info::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(58,31,11,0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .info-inner { max-width: 860px; margin: 0 auto; position: relative; }

    .info-header { text-align: center; margin-bottom: 50px; }
    .info-header .section-divider { margin: 18px auto 0; }

    .info-list {
      display: flex; flex-direction: column; gap: 12px;
    }

    .info-item {
      display: flex; align-items: flex-start; gap: 16px;
      background: rgba(6,14,7,0.6);
      border: 1px solid rgba(240,180,41,0.1);
      border-radius: 12px; padding: 18px 22px;
      transition: border-color 0.2s;
    }
    .info-item:hover { border-color: rgba(240,180,41,0.25); }

    .info-item-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }

    .info-item-text {
      font-size: 0.92rem; color: var(--bone-dim); line-height: 1.65;
    }
    .info-item-text strong { color: var(--bone); }

    /* ?????? BOOKING CTA ????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    #booking {
      padding: 100px 40px;
      background: var(--jungle-deep);
    }

    .booking-card {
      max-width: 860px; margin: 0 auto;
      background:
        radial-gradient(ellipse 80% 60% at 50% 20%, rgba(240,180,41,0.1) 0%, transparent 60%),
        linear-gradient(135deg, #1a0a02 0%, #0c1f0e 100%);
      border: 2px solid rgba(240,180,41,0.3);
      border-radius: 24px; padding: 64px 60px;
      text-align: center; position: relative; overflow: hidden;
    }

    .booking-card::after {
      content: '????'; position: absolute;
      font-size: 10rem; opacity: 0.04;
      bottom: -20px; right: -20px; pointer-events: none;
    }

    .booking-card .section-divider { margin: 16px auto 28px; }

    .booking-email {
      font-family: var(--font-display); font-size: clamp(1.2rem, 3vw, 1.8rem);
      color: var(--gold); margin-bottom: 12px;
      text-shadow: 0 0 20px rgba(240,180,41,0.3);
    }

    .booking-desc { font-size: 1rem; color: var(--bone-dim); line-height: 1.7; margin-bottom: 36px; }

    .booking-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

    .booking-note {
      margin-top: 20px; font-size: 0.8rem; color: var(--bone-dim); opacity: 0.55;
    }

    /* ?????? BOOKING FORM ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    .booking-form-inner {
      max-width: 780px; margin: 0 auto; position: relative; z-index: 1;
    }

    .bform-card {
      background: linear-gradient(145deg, rgba(18,32,20,0.9) 0%, rgba(10,20,12,0.97) 100%);
      border: 1px solid rgba(240,180,41,0.18);
      border-radius: 24px; padding: 48px 44px;
      box-shadow: 0 0 0 1px rgba(240,180,41,0.04), 0 32px 80px rgba(0,0,0,0.5);
      position: relative; overflow: hidden;
    }
    .bform-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, transparent, var(--fire-bright), var(--gold), var(--fire-bright), transparent);
    }

    .bform-section-title {
      display: flex; align-items: center; gap: 10px;
      font-weight: 900; font-size: 0.72rem; letter-spacing: 3.5px;
      text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
    }
    .bform-section-title::after {
      content: ''; flex: 1; height: 1px;
      background: linear-gradient(90deg, rgba(240,180,41,0.2), transparent);
    }

    .bform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .bform-group { margin-bottom: 20px; }
    .bform-label { display: block; font-weight: 800; font-size: 0.85rem; color: var(--bone); margin-bottom: 7px; }
    .bform-req { color: var(--fire-bright); }

    .bform-input {
      width: 100%; background: rgba(6,14,7,0.7);
      border: 1px solid rgba(232,213,163,0.12); border-radius: 10px;
      padding: 13px 16px; color: var(--bone);
      font-family: var(--font-body); font-size: 0.95rem;
      outline: none; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      appearance: none; -webkit-appearance: none;
    }
    .bform-input:focus {
      border-color: var(--gold); background: rgba(6,14,7,0.9);
      box-shadow: 0 0 0 3px rgba(240,180,41,0.1);
    }
    .bform-input::placeholder { color: rgba(232,213,163,0.2); }
    .bform-textarea { resize: vertical; min-height: 110px; }

    select.bform-input {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f0b429' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 14px center;
      padding-right: 38px; cursor: pointer;
    }
    select.bform-input option { background: #0c1f0e; color: var(--bone); }

    .bform-radio-group { display: flex; flex-direction: column; gap: 10px; }
    .bform-radio {
      display: flex; align-items: flex-start; gap: 14px;
      background: rgba(6,14,7,0.5); border: 1px solid rgba(232,213,163,0.1);
      border-radius: 10px; padding: 14px 16px; cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .bform-radio:has(input:checked) { border-color: rgba(240,180,41,0.45); background: rgba(240,180,41,0.07); }
    .bform-radio input[type="radio"] { accent-color: var(--gold); width: 17px; height: 17px; flex-shrink: 0; margin-top: 2px; }
    .bform-radio-title { font-weight: 800; font-size: 0.95rem; color: var(--bone); }
    .bform-radio-desc { font-size: 0.8rem; color: var(--bone-dim); margin-top: 3px; }

    .bform-check-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .bform-check {
      display: flex; align-items: center; gap: 11px;
      background: rgba(6,14,7,0.5); border: 1px solid rgba(232,213,163,0.1);
      border-radius: 8px; padding: 11px 14px; cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }
    .bform-check:has(input:checked) { border-color: rgba(240,180,41,0.4); background: rgba(240,180,41,0.06); }
    .bform-check input[type="checkbox"] { accent-color: var(--gold); width: 16px; height: 16px; flex-shrink: 0; }
    .bform-check-label { font-size: 0.88rem; color: var(--bone); font-weight: 600; line-height: 1.4; }
    .bform-price { display: block; font-size: 0.75rem; color: var(--gold); font-weight: 700; margin-top: 2px; }

    .bform-divider {
      height: 1px; background: linear-gradient(90deg, transparent, rgba(240,180,41,0.15), transparent);
      margin: 28px 0;
    }

    .bform-submit {
      width: 100%; margin-top: 28px;
      font-family: var(--font-display); font-size: 1.2rem; letter-spacing: 0.05em;
      background: linear-gradient(135deg, var(--gold) 0%, var(--fire-bright) 100%);
      color: var(--earth-deep); border: none; padding: 20px 32px;
      border-radius: 10px; cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
      box-shadow: 0 6px 30px rgba(240,180,41,0.35);
    }
    .bform-submit:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(240,180,41,0.55); filter: brightness(1.06); }
    .bform-submit:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

    .bform-msg {
      margin-top: 16px; padding: 15px 20px; border-radius: 10px;
      font-size: 0.92rem; font-weight: 700; display: none; text-align: center;
    }
    .bform-msg.success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.3); color: #86efac; display: block; }
    .bform-msg.error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.3);  color: #fca5a5; display: block; }
    .bform-note { text-align: center; font-size: 0.75rem; color: rgba(232,213,163,0.25); margin-top: 14px; line-height: 1.6; }

    /* ?????? 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; gap: 40px; align-items: center;
    }

    .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 {
      width: 40px; height: 40px; border-radius: 8px;
      background: rgba(232,213,163,0.05); border: 1px solid rgba(232,213,163,0.1);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; transition: background 0.2s, border-color 0.2s, transform 0.15s;
    }
    .social-link:hover { background: rgba(240,180,41,0.1); border-color: rgba(240,180,41,0.3); transform: translateY(-2px); }
    .social-link svg { width: 17px; height: 17px; fill: rgba(232,213,163,0.45); transition: fill 0.2s; }
    .social-link:hover svg { fill: var(--gold); }

    .footer-copy {
      font-size: 0.77rem; color: rgba(232,213,163,0.18); text-align: center;
      margin-top: 40px; max-width: 1100px; margin-left: auto; margin-right: auto;
      padding-top: 22px; border-top: 1px solid rgba(232,213,163,0.06);
    }
    .footer-copy a { color: rgba(232,213,163,0.2); text-decoration: none; }

    /* ?????? FLOATING CTA ?????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    .float-cta {
      display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
      padding: 12px 20px 16px; background: rgba(6,14,7,0.95);
      backdrop-filter: blur(12px); border-top: 1px solid rgba(240,180,41,0.2);
    }
    .float-cta a {
      display: block; width: 100%; text-align: center;
      font-family: var(--font-body); font-weight: 800; font-size: 1rem;
      letter-spacing: 0.05em; background: var(--fire-bright); color: #fff;
      padding: 15px; border-radius: 6px; text-decoration: none;
      box-shadow: 0 4px 20px rgba(255,124,42,0.4);
    }

    /* ?????? RESPONSIVE ???????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????????? */
    @media (max-width: 768px) {
      #header { padding: 12px 16px; }
      #header.scrolled { padding: 8px 16px; }
      nav { display: none; }
      .hamburger { display: flex; }
      .btn-book { display: none; }
    .header-logo { text-decoration: none; display: flex; align-items: center; }
    .header-logo .logo-img { height: 52px; width: auto; display: block; }

      .intro-inner { grid-template-columns: 1fr; gap: 40px; }
      .intro-photo { max-height: 320px; object-fit: cover; width: 100%; }
      .included-grid { grid-template-columns: 1fr; }
      .include-card.span-2 { grid-column: span 1; }
      #gallery { grid-template-columns: 1fr; height: auto; }
      .gallery-img { height: 240px; }
      .steps-grid { grid-template-columns: repeat(2,1fr); }
      .steps-grid::before { display: none; }
      .price-extras-grid { grid-template-columns: 1fr; }
      .main-price-card { padding: 36px 24px; }
      .booking-card { padding: 40px 24px; }
      .booking-btns { flex-direction: column; }
      .footer-inner { grid-template-columns: 1fr; }
      .footer-links { justify-content: flex-start; }

      #intro, #included, #pricing, #how, #info, #booking { padding: 70px 20px; }
      .bform-card { padding: 32px 20px; }
      .bform-row { grid-template-columns: 1fr; }
      .bform-check-group { grid-template-columns: 1fr; }
      .float-cta { display: block; }
      body { padding-bottom: 76px; }
    }

    @media (max-width: 480px) {
      .steps-grid { grid-template-columns: 1fr; }
      .hero-ctas { flex-direction: column; align-items: center; }
    }

    /* On mobile, float-cta bar is ~74px tall ??? lift scroll-top above it */
    @media (max-width: 768px) {
      #scroll-top { bottom: 88px; right: 16px; z-index: 950; }
    }

    /* ?????? 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; }