:root {
    --amber: #c8922a;
    --amber-light: #f3d98a;
    --amber-dim: rgba(200,146,42,0.15);
    --cream: #f5f0e8;
    --white: #ffffff;
    --dark: #12110e;
    --dark2: #1a1814;
    --dark3: #0d0c09;
    --gold: #c8922a;
    --gold-dim: #8a6010;
    --gold-light: #e6b24a;
    --gold-bright: #f5c842;
    --bg0: #0e0c07;
  }
  *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }

  /* ══════════════ CORNER PHOTO POPUPS ══════════════ */
  .corner-popup {
    position: fixed;
    z-index: 9998;
    pointer-events: none;
    opacity: 0;
    transform: scale(0) rotate(-8deg);
  }
  .corner-popup.left {
    left: -60px;
    bottom: -60px;
    transform-origin: bottom left;
  }
  .corner-popup.right {
    right: -25px;
    bottom: -25px;
    transform-origin: bottom right;
  }
  .corner-popup img {
    width: 420px;
    height: 420px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  @keyframes cornerPopIn {
    0% {
      opacity: 0;
      transform: scale(0) rotate(-25deg) translateY(80px);
      filter: blur(8px);
    }
    20% {
      opacity: 0.6;
      filter: blur(3px);
    }
    45% {
      opacity: 1;
      transform: scale(1.18) rotate(6deg) translateY(-15px);
      filter: blur(0);
    }
    60% {
      transform: scale(0.92) rotate(-4deg) translateY(8px);
    }
    75% {
      transform: scale(1.06) rotate(2deg) translateY(-5px);
    }
    88% {
      transform: scale(0.98) rotate(-1deg) translateY(2px);
    }
    100% {
      opacity: 1;
      transform: scale(1) rotate(0deg) translateY(0);
      filter: blur(0);
    }
  }

  @keyframes cornerPopOut {
    0% {
      opacity: 1;
      transform: scale(1) rotate(0deg) translateY(0);
      filter: blur(0);
    }
    15% {
      opacity: 1;
      transform: scale(1.15) rotate(8deg) translateY(-20px);
    }
    40% {
      opacity: 0.8;
      filter: blur(2px);
    }
    100% {
      opacity: 0;
      transform: scale(0) rotate(-30deg) translateY(100px);
      filter: blur(10px);
    }
  }

  @keyframes dinoIdle {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-6px) rotate(1deg);
    }
  }

  .corner-popup.pop-in {
    animation: cornerPopIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .corner-popup.pop-in img {
    animation: dinoIdle 2.5s ease-in-out infinite;
    animation-delay: 1.4s;
  }

  .corner-popup.pop-out {
    animation: cornerPopOut 1s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards;
  }

  .corner-popup.pop-out img {
    animation: none;
  }

  html { scroll-snap-type: y mandatory; overflow-y: scroll; scroll-behavior: smooth; }
  body { font-family:'DM Sans',sans-serif; background:var(--dark); color:var(--cream); overflow-x:hidden; }

  nav {
    position:fixed; top:0; left:0; right:0; z-index:1000;
    display:flex; align-items:center; justify-content:space-between;
    padding:0 52px; height:72px;
    background: linear-gradient(180deg, rgba(8,7,5,0.97) 0%, transparent 100%);
    backdrop-filter: blur(8px);
    animation: navDrop 0.7s 0.1s cubic-bezier(0.25,0.46,0.45,0.94) both;
  }
  @keyframes navDrop { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
  .nav-logo { display:flex; align-items:center; gap:14px; text-decoration:none; }
  .logo-icon { width:46px; height:46px; background:var(--amber); border-radius:50%; overflow:hidden; box-shadow: 0 0 20px rgba(200,146,42,0.45); animation: pulse-logo 3s ease-in-out infinite; }
  .logo-icon img { width:100%; height:100%; object-fit:cover; }
  @keyframes pulse-logo { 0%,100%{box-shadow:0 0 20px rgba(200,146,42,0.45)} 50%{box-shadow:0 0 42px rgba(200,146,42,0.8)} }
  .logo-text { display:flex; flex-direction:column; line-height:1; }
  .logo-main { font-family:'Playfair Display',serif; font-size:20px; font-weight:700; letter-spacing:3px; color:var(--cream); }
  .logo-sub  { font-size:9px; letter-spacing:5px; text-transform:uppercase; color:var(--amber); font-weight:500; margin-top:2px; }
  .nav-links { display:flex; gap:36px; list-style:none; align-items:center; }

  .nav-links a {
    font-size:11px; letter-spacing:3px; text-transform:uppercase;
    color:var(--cream); text-decoration:none; font-weight:500;
    position:relative; transition:none;
  }
  .nav-links a::after {
    content:''; position:absolute; bottom:-4px; left:0;
    width:0; height:1px;
    background: linear-gradient(to right, #f5c842, #7aba82, #a87040);
    transition:width 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .nav-links a.nav-active {
    color: var(--amber-light);
  }
  .nav-links a:hover::after { width:100%; }

  .nav-cta { background:var(--amber); color:#12110e !important; padding:10px 28px; font-weight:700 !important; position:relative; overflow:hidden; transition: box-shadow 0.3s, transform 0.2s !important; }
  .nav-cta::before { content:''; position:absolute; inset:0; background:var(--amber-light); transform:scaleX(0); transform-origin:left; transition:transform 0.3s ease; }
  .nav-cta:hover::before { transform:scaleX(1); }
  .nav-cta:hover { box-shadow: 0 6px 30px rgba(200,146,42,0.5); transform:translateY(-2px); }
  .nav-cta::after { display:none !important; }
  .nav-cta span { position:relative; z-index:1; }

  section { scroll-snap-align:start; min-height:100vh; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }

  /* HERO */
  #hero { display:flex; align-items:stretch; justify-content:center; overflow:hidden; position:relative; }
  #hero::before { content:''; position:absolute; inset:0; z-index:1; pointer-events:none; background: linear-gradient(180deg, rgba(8,7,5,0.6) 0%, rgba(8,7,5,0.3) 50%, rgba(8,7,5,0.7) 100%); }
  .hero-bg { position:absolute; inset:0; background-image:url('img/bg.jpg'); background-size:cover; background-position:center; filter:brightness(0.55) saturate(0.6); z-index:0; animation: bgZoom 1.8s cubic-bezier(0.25,0.46,0.45,0.94) both; }
  @keyframes bgZoom { from{opacity:0;transform:scale(1.15)} to{opacity:1;transform:scale(1.07)} }
  .hero-layout { position:absolute; inset:0; display:grid; grid-template-columns:1fr 2fr 1fr; z-index:2; }
  .photo-col { overflow:hidden; position:relative; }
  .photo-col:first-child { animation: colLeft  1s 0.4s cubic-bezier(0.25,0.46,0.45,0.94) both; }
  .photo-col:last-child  { animation: colRight 1s 0.4s cubic-bezier(0.25,0.46,0.45,0.94) both; }
  @keyframes colLeft  { from{opacity:0;clip-path:inset(0 100% 0 0)} to{opacity:1;clip-path:inset(0 0% 0 0)} }
  @keyframes colRight { from{opacity:0;clip-path:inset(0 0 0 100%)} to{opacity:1;clip-path:inset(0 0 0 0%)} }
  .photo-col-inner { display:flex; flex-direction:column; gap:12px; padding:12px; will-change:transform; }
  .photo-col-inner.scroll-up   { animation: scrollUp   36s linear infinite; }
  .photo-col-inner.scroll-down { animation: scrollDown 36s linear infinite; }
  @keyframes scrollUp   { 0%{transform:translateY(0)} 100%{transform:translateY(-50%)} }
  @keyframes scrollDown { 0%{transform:translateY(-50%)} 100%{transform:translateY(0)} }
  .photo-col-inner img { width:100%; height:320px; object-fit:cover; display:block; flex-shrink:0; filter:brightness(0.7) saturate(0.85); }
  .photo-col::before,.photo-col::after { content:''; position:absolute; left:0; right:0; height:140px; z-index:5; pointer-events:none; }
  .photo-col::before { top:0; background:linear-gradient(180deg,#12110e 0%,transparent 100%); }
  .photo-col::after  { bottom:0; background:linear-gradient(0deg,#12110e 0%,transparent 100%); }
  .hero-center { position:relative; z-index:10; display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center; padding:0 40px; background:linear-gradient(180deg,rgba(8,7,5,0.55) 0%,rgba(8,7,5,0.25) 50%,rgba(8,7,5,0.6) 100%); }
  .hero-badge { display:inline-flex; align-items:center; gap:12px; font-size:10px; letter-spacing:6px; text-transform:uppercase; color:var(--amber); font-weight:500; margin-bottom:28px; animation:fadeUp 0.7s 0.7s ease both; }
  .hero-badge::before,.hero-badge::after { content:''; display:block; width:32px; height:1px; background:var(--amber); opacity:0.6; }
  .hero-title { font-family:'Playfair Display',serif; font-size:clamp(52px,10vw,124px); font-weight:900; line-height:1; letter-spacing:-1px; color:var(--white); }
  .hero-title .word-george {
    display: block;
    animation: dropIn 0.8s 0.9s cubic-bezier(0.34,1.4,0.64,1) both,
              georgeShine 4s 1.7s ease-in-out infinite;
    background:
      linear-gradient(180deg,
        #ffffff  0%,
        #f8f2e4  8%,
        #e8dcc0 20%,
        #d4c090 34%,
        #c4aa78 46%,
        #b89660 56%,
        #cdb07a 66%,
        #e2cfa0 76%,
        #f0e2c0 84%,
        #a07840 100%
      ),
      linear-gradient(105deg,
        transparent 0%,
        transparent 35%,
        rgba(255,220,80,0)    38%,
        rgba(255,210,60,0.55) 42%,
        rgba(255,235,120,0.7) 45%,
        rgba(255,210,60,0.55) 48%,
        rgba(255,220,80,0)    51%,
        transparent 100%
      );
    background-blend-mode: screen;
    background-size: 100% 100%, 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 0.1em;
  }

  @keyframes georgeShine {
    0%   { background-position: 0% 0%, 160% center; }
    55%  { background-position: 0% 0%, -60% center; }
    100% { background-position: 0% 0%, -60% center; }
  }
  .hero-title .accent {
    font-style: italic; font-weight: 400; display: block;
    font-size: clamp(64px,12vw,148px); letter-spacing: -2px;
    line-height: 0.7;
    padding-bottom: 0.2em;
    margin-bottom: -0.1em;
    overflow: visible;
    background:
      linear-gradient(
        to bottom,
        #fffbe8  0%,
        #fde878  8%,
        #f5c842 20%,
        #dfa030 38%,
        #b87820 55%,
        #8a5810 72%,
        #6a3e08 88%,
        #3e2204 100%
      ),
      linear-gradient(105deg,
        transparent 0%,
        transparent 28%,
        rgba(255,210,50,0)     34%,
        rgba(255,200,40,0.52)  39%,
        rgba(255,230,110,0.68) 43%,
        rgba(255,200,40,0.52)  47%,
        rgba(255,210,50,0)     52%,
        transparent 100%
      );
    background-blend-mode: screen;
    background-size: 100% 100%, 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: dropIn 0.8s 0.9s cubic-bezier(0.34,1.4,0.64,1) both,
              riseBlur 0.9s 1.15s cubic-bezier(0.25,0.46,0.45,0.94) both,
              pointShine 5s 2.05s ease-in-out infinite;
  }

  @keyframes pointShine {
    0%   { background-position: 0% 0%, 160% center; }
    55%  { background-position: 0% 0%, -60% center; }
    100% { background-position: 0% 0%, -60% center; }
  }
  @keyframes dropIn  { from{opacity:0;transform:translateY(-48px)} to{opacity:1;transform:translateY(0)} }
  @keyframes riseBlur{ from{opacity:0;transform:translateY(36px);filter:blur(10px)} to{opacity:1;transform:translateY(0);filter:blur(0)} }
.hero-sub {
  font-family:'Cormorant Garamond',serif;
  font-size:20px;
  font-style:italic;
  font-weight:300;
  letter-spacing:1px;
  margin-top:24px;
  animation: fadeUp 0.7s 1.45s ease both;
  color: rgba(245,235,210,0.75);
  text-shadow:
    0 0 8px rgba(245,200,66,0),
    0 0 20px rgba(245,200,66,0),
    0 0 40px rgba(200,146,31,0);
}

.hero-sub.glow-ready {
  animation: fadeUp 0.7s 1.45s ease both, heroSubGlow 3.5s ease-in-out infinite;
}

@keyframes heroSubGlow { b
  0%,100% {
    color: rgba(245,235,210,0.75);
    text-shadow:
      0 0 8px rgba(245,200,66,0.05),
      0 0 20px rgba(245,200,66,0.02),
      0 0 40px rgba(200,146,31,0.01);
  }
  50% {
    color: rgba(255,242,200,1);
    text-shadow:
      0 0 8px rgba(245,200,66,0.85),
      0 0 22px rgba(245,200,66,0.55),
      0 0 45px rgba(200,146,31,0.4),
      0 0 80px rgba(200,146,31,0.2);
  }
}
  .hero-btns { margin-top:52px; display:flex; gap:20px; justify-content:center; animation:fadeUp 0.7s 1.7s ease both; }
  .scroll-hint { position:absolute; bottom:32px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; font-size:10px; letter-spacing:4px; text-transform:uppercase; color:rgba(255,255,255,0.4); animation:fadeUp 0.7s 2s ease both; }
  .scroll-line { width:1px; height:50px; background:linear-gradient(180deg,rgba(200,146,42,0.8),transparent); animation:scrollPulse 2s ease-in-out infinite; }
  @keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

  /* BUTTONS */
  .btn-primary { font-family:'DM Sans',sans-serif; font-weight:700; font-size:11px; letter-spacing:4px; text-transform:uppercase; padding:18px 48px; background:var(--amber); color:#0e0c09; border:none; text-decoration:none; position:relative; overflow:hidden; display:inline-flex; align-items:center; gap:10px; transition:box-shadow 0.35s ease, transform 0.2s ease; box-shadow:0 4px 24px rgba(200,146,42,0.25); }
  .btn-primary::before { content:''; position:absolute; inset:0; background:#f5c842; transform:translateX(-102%); transition:transform 0.4s cubic-bezier(0.4,0,0.2,1); z-index:0; }
  .btn-primary:hover::before { transform:translateX(0); }
  .btn-primary:hover { box-shadow:0 8px 40px rgba(245,200,66,0.5); transform:translateY(-2px); }
  .btn-primary span  { position:relative; z-index:1; }
  .btn-primary .btn-arrow { position:relative; z-index:1; display:inline-block; width:16px; height:2px; background:currentColor; transition:transform 0.3s; flex-shrink:0; }
  .btn-primary .btn-arrow::after { content:''; position:absolute; right:0; top:-4px; width:8px; height:8px; border-right:2px solid currentColor; border-top:2px solid currentColor; transform:rotate(45deg); }
  .btn-primary:hover .btn-arrow { transform:translateX(4px); }

  .btn-outline {
    font-family:'DM Sans',sans-serif; font-weight:500; font-size:11px;
    letter-spacing:4px; text-transform:uppercase; padding:18px 48px;
    background:transparent; color:var(--cream); text-decoration:none;
    display:inline-flex; align-items:center; gap:10px;
    position:relative; transition:color 0.35s ease;
  }
  .btn-outline::before {
    content:''; position:absolute; inset:0;
    border:1px solid rgba(245,240,232,0.3);
    transition:border-color 0.3s;
  }
  .btn-outline::after {
    content:''; position:absolute; top:-1px; left:-1px;
    width:18px; height:18px;
    border-top:2px solid;
    border-left:2px solid;
    border-image: linear-gradient(135deg, #f5c842, #7aba82, #a87040) 1;
    transition:width 0.4s cubic-bezier(0.25,0.46,0.45,0.94), height 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .btn-outline .btn-corner {
    position:absolute; bottom:-1px; right:-1px;
    width:18px; height:18px;
    border-bottom:2px solid;
    border-right:2px solid;
    border-image: linear-gradient(135deg, #a87040, #7aba82, #f5c842) 1;
    transition:width 0.4s cubic-bezier(0.25,0.46,0.45,0.94), height 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    pointer-events:none;
  }
  .btn-outline:hover::before { border-color:rgba(245,240,232,0.12); }
  .btn-outline:hover::after  { width:calc(100% + 1px); height:calc(100% + 1px); }
  .btn-outline:hover .btn-corner { width:calc(100% + 1px); height:calc(100% + 1px); }
  .btn-outline .btn-label { position:relative; z-index:1; }

  @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

  /* ══════════════ ABOUT ══════════════ */
  #about {
    min-height:100vh;
    display:flex; align-items:center; justify-content:flex-start;
    position:relative; overflow:hidden; scroll-snap-align:start;
  }

  .about-bg-slideshow { position:absolute; inset:0; z-index:0; }
  .about-bg-slide {
    position:absolute; inset:0;
    background-size:cover; background-position:center right;
    filter:brightness(0.55) saturate(0.72);
    opacity:0; transform:scale(1.04);
    transition: opacity 1.4s cubic-bezier(0.4,0,0.2,1), transform 10s ease-out;
  }
  .about-bg-slide.active { opacity:1; transform:scale(1.0); }

  .about-overlay {
    position:absolute; inset:0; z-index:1; pointer-events:none;
    background: linear-gradient(to right,
      rgba(8,7,5,1.0)   0%,
      rgba(8,7,5,1.0)   35%,
      rgba(8,7,5,0.96)  48%,
      rgba(8,7,5,0.82)  56%,
      rgba(8,7,5,0.52)  65%,
      rgba(8,7,5,0.18)  74%,
      rgba(8,7,5,0.04)  82%,
      rgba(8,7,5,0.0)   88%
    );
  }

  .about-subtitle {
    font-family:'Cormorant Garamond',serif;
    font-size:clamp(16px,1.8vw,22px);
    font-style:italic; font-weight:300;
    color:var(--amber-light);
    letter-spacing:3px;
    margin-bottom:36px;
    line-height:1.4;
    display:flex; align-items:center; gap:14px;
    text-shadow: 0 0 20px rgba(200,146,42,0.4), 0 0 40px rgba(200,146,42,0.15);
    animation: subtitleGlow 3s ease-in-out infinite;
  }
  @keyframes subtitleGlow {
    0%,100% { text-shadow: 0 0 16px rgba(245,200,66,0.35), 0 0 32px rgba(200,146,42,0.1); }
    50%      { text-shadow: 0 0 24px rgba(245,200,66,0.6), 0 0 50px rgba(200,146,42,0.25); }
  }
  .about-subtitle::before,
  .about-subtitle::after {
    content:''; display:block; flex-shrink:0;
    width:32px; height:1px;
    background: linear-gradient(to right, transparent, var(--amber)); opacity:0.7;
  }
  .about-subtitle::after {
    background: linear-gradient(to left, transparent, var(--amber));
  }
  .about-overlay-tb {
    position:absolute; inset:0; z-index:1; pointer-events:none;
    background: linear-gradient(to bottom,
      rgba(8,7,5,0.88) 0%, transparent 12%,
      transparent 88%, rgba(8,7,5,0.88) 100%
    );
  }

  #pteroCanvas { position:absolute; top:0; left:0; bottom:0; width:55%; z-index:3; pointer-events:none; }
  #aboutSparkleCanvas { position:absolute; inset:0; z-index:5; pointer-events:none; }

  .about-wrap {
    position:relative; z-index:10;
    max-width:1300px; width:100%;
    padding:100px 80px;
  }

  .about-text-panel {
    max-width:630px;
    display:flex; flex-direction:column; justify-content:center; gap:0;
  }

  .section-eyebrow { display:inline-flex; align-items:center; gap:10px; font-size:10px; letter-spacing:7px; text-transform:uppercase; color:var(--amber); font-weight:500; margin-bottom:20px; }
  .section-eyebrow::before { content:''; display:block; width:24px; height:1px; background:var(--amber); }

  .about-heading { font-family:'Playfair Display',serif; font-size:clamp(40px,5.5vw,76px); font-weight:900; line-height:1.05; color: var(--cream); margin-bottom:16px; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }
  .about-heading em {
    font-style:italic; display:block;
    padding-bottom: 0.15em;
    overflow: visible;
    background: linear-gradient(135deg,
      #fff9d6 0%,
      #ffe87a 15%,
      #f5c842 30%,
      #e8b040 50%,
      #f5c842 68%,
      #ffe87a 82%,
      #fff9d6 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
    filter: drop-shadow(0 0 8px rgba(255,230,100,0.3)) drop-shadow(0 3px 8px rgba(200,140,30,0.25)) drop-shadow(0 1px 0 rgba(255,250,180,0.25));
    position: relative;
    line-height: 1.2;
  }
  @keyframes goldShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
  }

  .about-heading em::after {
    content: attr(data-text);
    position: absolute; inset: 0;
    background: inherit; background-clip: text; -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: blur(10px) brightness(1.6);
    opacity: 0.15;
    z-index: -1;
  }

  .about-lead { font-family:'Cormorant Garamond',serif; font-size:20px; line-height:1.9; color:rgba(245,240,232,0.82); font-weight:300; margin-bottom:18px; max-width:700px; text-align: justify; }

  .about-rv {
    opacity:0;
    transition-property: opacity, transform, filter;
    transition-timing-function: cubic-bezier(0.25,0.46,0.45,0.94);
    transition-duration: 0.9s;
    will-change: opacity, transform;
  }
  .about-rv.dir-left   { transform: translateX(-56px); }
  .about-rv.dir-bottom { transform: translateY(44px); }
  .about-rv.dir-blur   { transform: translateY(22px); filter: blur(10px); }
  .about-rv[data-d="1"] { transition-delay: 0.05s; }
  .about-rv[data-d="2"] { transition-delay: 0.22s; }
  .about-rv[data-d="3"] { transition-delay: 0.44s; }
  .about-rv[data-d="4"] { transition-delay: 0.64s; }

  .about-rv.rv-in {
    opacity:1 !important;
    transform: none !important;
    filter: none !important;
  }

  .about-rv.rv-out {
    opacity:0 !important;
    transform: translateY(-36px) !important;
    filter: blur(4px) !important;
    transition-delay: 0s !important;
  }

  .section-fade-top { position:absolute; top:0; left:0; right:0; height:180px; z-index:6; pointer-events:none; background:linear-gradient(to bottom,var(--dark3) 0%,transparent 100%); }
  .section-fade-bottom { position:absolute; bottom:0; left:0; right:0; height:180px; z-index:6; pointer-events:none; background:linear-gradient(to top,var(--dark3) 0%,transparent 100%); }

  /* ══════════════ ATTRACTIONS ══════════════ */
  :root { --forest:#2a4a2e; --forest-mid:#3d6b42; --forest-light:#5a9460; --bark:#6b3d1e; --bark-mid:#8b5a2b; --bark-light:#a87040; --moss:#4a5e2a; --earth:#3d2b1a; --leaf-glow:rgba(90,148,96,0.55); --bark-glow:rgba(139,90,43,0.55); }
  @keyframes cardGlowPulseNature { 0%,100%{box-shadow:0 40px 80px rgba(0,0,0,0.85),0 0 40px rgba(58,110,60,0.22),0 0 80px rgba(107,61,30,0.12)} 50%{box-shadow:0 40px 100px rgba(0,0,0,0.9),0 0 60px rgba(58,110,60,0.38),0 0 120px rgba(107,61,30,0.2)} }
  @keyframes shimmerNature { 0%{transform:translateX(-100%) skewX(-12deg)} 100%{transform:translateX(300%) skewX(-12deg)} }
  @keyframes badgePop { 0%{transform:scale(0.7) rotate(-3deg);opacity:0} 60%{transform:scale(1.08) rotate(1deg)} 100%{transform:scale(1) rotate(0deg);opacity:1} }

  #attractions { min-height:100vh; background:radial-gradient(ellipse 90% 70% at 20% 30%,rgba(30,55,28,0.8) 0%,transparent 60%),radial-gradient(ellipse 80% 60% at 80% 70%,rgba(60,30,12,0.7) 0%,transparent 55%),radial-gradient(ellipse 100% 80% at 50% 50%,rgba(18,22,14,0.95) 0%,#0a0d08 100%); scroll-snap-align:start; position:relative; overflow:hidden; display:flex; flex-direction:column; align-items:center; justify-content:center; padding:100px 0 80px; }
  #attrCanvas { position:absolute; inset:0; z-index:1; pointer-events:none; }
  #attractions::before { content:''; position:absolute; inset:0; z-index:2; pointer-events:none; background-image:radial-gradient(ellipse 60% 40% at 15% 20%,rgba(42,74,46,0.18) 0%,transparent 70%),radial-gradient(ellipse 50% 35% at 85% 75%,rgba(107,61,30,0.15) 0%,transparent 65%),radial-gradient(ellipse 40% 30% at 50% 90%,rgba(42,74,46,0.1) 0%,transparent 60%); }
  .attr-header { position:relative; z-index:10; text-align:center; margin-bottom:48px; padding:0 80px; display:flex; flex-direction:column; align-items:center; }
  .attr-ticket-badge { display:inline-flex; align-items:center; gap:10px; background:linear-gradient(135deg,var(--bark-mid),var(--bark-light)); color:#f5f0e8; padding:9px 24px; font-weight:800; font-size:10px; letter-spacing:4px; text-transform:uppercase; margin-bottom:22px; box-shadow:0 0 0 1px rgba(139,90,43,0.5),0 4px 30px rgba(90,148,96,0.3),0 0 60px rgba(107,61,30,0.2); clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); position:relative; overflow:hidden; animation:badgePop 0.8s cubic-bezier(0.34,1.56,0.64,1) both; }
  .attr-ticket-badge::after { content:''; position:absolute; top:0; left:0; bottom:0; width:40%; background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent); animation:shimmerNature 3.5s ease-in-out 1s infinite; }
  .attr-heading { font-family:'Playfair Display',serif; font-size:clamp(38px,5.5vw,72px); font-weight:900; color:var(--white); line-height:1; text-shadow:0 0 80px rgba(42,74,46,0.4); }
  .attr-heading em { font-style:italic; background:linear-gradient(135deg,#7aba82 0%,#a87040 60%,#5a9460 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; filter:drop-shadow(0 0 30px rgba(90,148,96,0.5)); }
  .attr-sub-text { font-family:'Cormorant Garamond',serif; font-size:19px; color:rgba(245,240,232,0.4); margin-top:14px; font-style:italic; font-weight:300; }
  .attr-carousel { position:relative; z-index:10; width:100%; display:flex; align-items:center; margin-top:8px; padding:0 80px; box-sizing:border-box; }
  .attr-arrow { flex-shrink:0; width:56px; height:56px; border:1.5px solid rgba(168,112,64,0.8); background:linear-gradient(135deg,#2a4a2e,#6b3d1e); color:#7aba82; font-size:20px; display:flex; align-items:center; justify-content:center; transition:all 0.3s cubic-bezier(0.25,0.46,0.45,0.94); z-index:20; cursor:pointer; box-shadow:0 0 24px rgba(42,74,46,0.3),0 0 40px rgba(168,112,64,0.4),inset 0 0 20px rgba(42,74,46,0.1); border-radius:0; font-weight:700; }
  .attr-arrow:hover { background:rgba(30,50,25,0.7); backdrop-filter:blur(16px); border:1.5px solid rgba(90,148,96,0.6); color:#c8e6ca; box-shadow:0 0 50px rgba(42,74,46,0.7),0 0 80px rgba(107,61,30,0.4),0 0 60px rgba(168,112,64,0.6); }
  .attr-arrow:active { transform:scale(0.93); }
  .attr-track-wrap { flex:1; overflow:hidden; position:relative; perspective:1200px; }
  .attr-track { display:flex; gap:16px; transition:transform 0.8s cubic-bezier(0.16,1,0.3,1); will-change:transform; padding:24px 0 40px; }
  .attr-slide { flex-shrink:0; width:calc((100% - 32px) / 3); height:500px; position:relative; overflow:hidden; cursor:pointer; transition:box-shadow 0.4s ease,border-color 0.4s ease; border:1px solid rgba(255,255,255,0.06); border-radius:2px; will-change:transform,opacity; transform-origin:center center; transform-style:preserve-3d; }
  .attr-slide-img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition:transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94),filter 0.6s ease; filter:brightness(0.62) saturate(0.8); }
  .attr-slide:hover .attr-slide-img { transform:scale(1.07); filter:brightness(0.78) saturate(1.05); }
  .attr-slide.active .attr-slide-img { transform:scale(1.05); filter:brightness(0.82) saturate(1.1); }
  .attr-slide-overlay { position:absolute; inset:0; z-index:2; background:linear-gradient(170deg,rgba(4,8,4,0.05) 0%,rgba(4,8,4,0.0) 28%,rgba(8,16,8,0.5) 52%,rgba(12,8,4,0.97) 100%); transition:background 0.5s ease; }
  .attr-slide.active .attr-slide-overlay,.attr-slide:hover .attr-slide-overlay { background:linear-gradient(170deg,rgba(4,8,4,0.02) 0%,rgba(4,8,4,0.0) 24%,rgba(8,16,8,0.48) 52%,rgba(12,8,4,0.98) 100%); }
  .attr-slide-glow { position:absolute; bottom:-60px; left:50%; transform:translateX(-50%); width:120%; height:220px; z-index:3; pointer-events:none; background:radial-gradient(ellipse at 50% 100%,rgba(58,110,60,0.4) 0%,rgba(107,61,30,0.2) 35%,transparent 70%); opacity:0; transition:opacity 0.5s ease,bottom 0.5s ease; filter:blur(14px); }
  .attr-slide.active .attr-slide-glow,.attr-slide:hover .attr-slide-glow { opacity:1; bottom:-20px; }
  .attr-slide-scan { display:none; }
  .attr-slide::before { content:''; position:absolute; top:0; left:0; width:0; height:0; z-index:10; pointer-events:none; border-top:2px solid transparent; border-left:2px solid transparent; transition:width 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.05s,height 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.05s,border-color 0.3s ease; }
  .attr-slide.active::before,.attr-slide:hover::before { width:54px; height:54px; border-top-color:#5a9460; border-left-color:#5a9460; filter:drop-shadow(0 0 6px rgba(90,148,96,0.8)); }
  .attr-slide-corner-br { position:absolute; bottom:0; right:0; z-index:10; pointer-events:none; width:0; height:0; border-bottom:2px solid transparent; border-right:2px solid transparent; transition:width 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.1s,height 0.4s cubic-bezier(0.34,1.56,0.64,1) 0.1s,border-color 0.3s ease; }
  .attr-slide.active .attr-slide-corner-br,.attr-slide:hover .attr-slide-corner-br { width:40px; height:40px; border-bottom-color:#a87040; border-right-color:#a87040; }
  .attr-slide::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; z-index:10; background:linear-gradient(90deg,transparent,#3d6b42,#7aba82,#a87040,#5a9460,transparent); transform:scaleX(0); transform-origin:center; transition:transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); box-shadow:0 0 20px rgba(90,148,96,0.7),0 0 40px rgba(107,61,30,0.4); }
  .attr-slide.active::after,.attr-slide:hover::after { transform:scaleX(1); }
  .attr-slide-body { position:absolute; inset:0; z-index:5; display:flex; flex-direction:column; justify-content:flex-end; padding:32px 28px; }
  .attr-slide-num { font-family:'Playfair Display',serif; font-size:80px; font-weight:900; line-height:1; color:rgba(90,148,96,0.08); position:absolute; top:16px; right:20px; transition:color 0.5s ease,transform 0.5s ease,text-shadow 0.5s ease; user-select:none; }
  .attr-slide.active .attr-slide-num,.attr-slide:hover .attr-slide-num { color:rgba(90,148,96,0.22); transform:scale(1.05) translateX(-4px); text-shadow:0 0 30px rgba(58,110,60,0.4); }
  .attr-slide-tag { font-size:9px; letter-spacing:5px; text-transform:uppercase; color:#7aba82; font-weight:700; margin-bottom:12px; display:flex; align-items:center; gap:8px; opacity:0; transform:translateY(8px); transition:opacity 0.4s ease,transform 0.4s ease; text-shadow:0 0 20px rgba(90,148,96,0.7); }
  .attr-slide.active .attr-slide-tag,.attr-slide:hover .attr-slide-tag { opacity:1; transform:translateY(0); }
  .attr-slide-tag::before { content:''; display:block; width:20px; height:1px; background:linear-gradient(90deg,#5a9460,#a87040); box-shadow:0 0 8px rgba(90,148,96,0.7); flex-shrink:0; }
  .attr-slide-title { font-family:'Playfair Display',serif; font-size:24px; font-weight:800; line-height:1.2; color:#fff; margin-bottom:12px; transform:translateY(10px); transition:transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94),text-shadow 0.45s ease; }
  .attr-slide.active .attr-slide-title,.attr-slide:hover .attr-slide-title { transform:translateY(0); text-shadow:0 2px 20px rgba(0,0,0,0.6); }
  .attr-slide-desc { font-family:'Cormorant Garamond',serif; font-size:15.5px; line-height:1.7; font-weight:300; color:rgba(245,240,232,0.65); max-height:0; overflow:hidden; transition:max-height 0.55s cubic-bezier(0.25,0.46,0.45,0.94) 0.05s,opacity 0.45s ease 0.05s; opacity:0; }
  .attr-slide.active .attr-slide-desc,.attr-slide:hover .attr-slide-desc { max-height:130px; opacity:1; }
  .attr-slide-badge { display:inline-block; margin-top:12px; background:rgba(107,61,30,0.25); border:1px solid rgba(168,112,64,0.5); text-align:center; color:#c8a06a; font-size:10px; letter-spacing:3px; text-transform:uppercase; padding:5px 12px; font-weight:700; max-height:0; overflow:hidden; opacity:0; box-shadow:0 0 16px rgba(107,61,30,0.2) inset; transition:max-height 0.4s ease 0.15s,opacity 0.4s ease 0.15s; }
  .attr-slide.active .attr-slide-badge,.attr-slide:hover .attr-slide-badge { max-height:40px; opacity:1; }
  .attr-slide.active { border-color:rgba(90,148,96,0.4); animation:cardGlowPulseNature 3s ease-in-out infinite; }
  .attr-dots { display:flex; gap:8px; justify-content:center; margin-top:32px; position:relative; z-index:10; }
  .attr-dot { width:6px; height:6px; border-radius:50%; background:rgba(90,148,96,0.2); cursor:pointer; transition:all 0.35s ease; }
  .attr-dot.on { background:#5a9460; box-shadow:0 0 12px rgba(90,148,96,0.8),0 0 24px rgba(90,148,96,0.3); width:30px; border-radius:3px; }

  
/* ══════════════ ATTRACTION DETAIL OVERLAY ══════════════ */
#attrOverlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}

#attrOverlay.open {
  opacity: 1;
  pointer-events: all;
}

.attr-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 4, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.attr-overlay-card {
  position: relative;
  z-index: 1;
  width: min(780px, 92vw);
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(90,148,96,0.35);
  box-shadow:
    0 0 0 1px rgba(168,112,64,0.15),
    0 40px 100px rgba(0,0,0,0.9),
    0 0 80px rgba(42,74,46,0.2),
    0 0 140px rgba(107,61,30,0.12);
  transform: scale(0.88) translateY(30px);
  transition: transform 0.45s cubic-bezier(0.34,1.3,0.64,1), opacity 0.4s ease;
  opacity: 0;
  background: linear-gradient(160deg, #0d110c 0%, #10140d 50%, #120f09 100%);
}

#attrOverlay.open .attr-overlay-card {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Corner accents */
.attr-overlay-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  border-top: 2px solid #5a9460;
  border-left: 2px solid #5a9460;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(90,148,96,0.8));
}
.attr-overlay-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 50px; height: 50px;
  border-bottom: 2px solid #a87040;
  border-right: 2px solid #a87040;
  z-index: 10;
  pointer-events: none;
}

/* Bottom glow bar */
.attr-overlay-card-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #3d6b42, #7aba82, #a87040, #5a9460, transparent);
  box-shadow: 0 0 20px rgba(90,148,96,0.7), 0 0 40px rgba(107,61,30,0.4);
  z-index: 10;
}

/* Close button */
.attr-overlay-close {
 position: absolute;
  top: 16px; right: 16px;
  z-index: 20;
  width: 40px; height: 40px;
  background: rgba(30,8,8,0.9);
  border: 1px solid rgba(200,60,60,0.5);
  color: rgba(255,160,160,0.85);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
}
.attr-overlay-close:hover {
  background: rgba(180,30,30,0.35);
  border-color: rgba(220,80,80,0.9);
  color: #ffaaaa;
}

/* Image area */
.attr-overlay-img-wrap {
  position: relative;
  width: 100%;
  height: 320px;
  flex-shrink: 0;
  overflow: hidden;
}
.attr-overlay-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.9);
}
.attr-overlay-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(4,8,4,0.1) 0%,
    rgba(4,8,4,0.0) 35%,
    rgba(8,14,8,0.65) 70%,
    rgba(13,17,12,0.98) 100%
  );
}

/* Zone tag over image */
.attr-overlay-zone {
  position: absolute;
  bottom: 20px; left: 28px;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #7aba82;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-shadow: 0 0 20px rgba(90,148,96,0.8);
}
.attr-overlay-zone::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: linear-gradient(90deg, #5a9460, #a87040);
  box-shadow: 0 0 8px rgba(90,148,96,0.7);
}

/* Number watermark */
.attr-overlay-num {
  position: absolute;
  top: 16px; left: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 88px;
  font-weight: 900;
  color: rgba(90,148,96,0.12);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Body content */
.attr-overlay-body {
  padding: 28px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.attr-overlay-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.attr-overlay-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(90,148,96,0.5), rgba(168,112,64,0.4), transparent);
}

.attr-overlay-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  line-height: 1.85;
  color: rgba(245,240,232,0.72);
  font-weight: 300;
}

.attr-overlay-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 7px 18px;
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 800;
  background: rgba(107,61,30,0.25);
  border: 1px solid rgba(168,112,64,0.5);
  color: #c8a06a;
  box-shadow: 0 0 16px rgba(107,61,30,0.2) inset;
}
.attr-overlay-badge::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #c8a06a;
  box-shadow: 0 0 8px rgba(200,160,106,0.8);
}

/* Explore CTA button at bottom of overlay */
.attr-overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
  padding: 14px 32px;
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #0e0c09;
  background: linear-gradient(135deg, #7aba82 0%, #5a9460 50%, #a87040 100%);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(90,148,96,0.3);
}
.attr-overlay-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #a87040 0%, #7aba82 100%);
  transform: translateX(-102%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.attr-overlay-cta:hover::before { transform: translateX(0); }
.attr-overlay-cta:hover { box-shadow: 0 8px 40px rgba(90,148,96,0.5); transform: translateY(-2px); }
.attr-overlay-cta span { position: relative; z-index: 1; }
.attr-overlay-cta-arrow {
  position: relative; z-index: 1;
  display: inline-block;
  width: 16px; height: 2px;
  background: currentColor;
  flex-shrink: 0;
  transition: transform 0.3s;
}
.attr-overlay-cta-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -4px;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
}
.attr-overlay-cta:hover .attr-overlay-cta-arrow { transform: translateX(4px); }


  /* ══════════════════════════════════════
    PROMOS & OFFERS SECTION
  ══════════════════════════════════════ */
  #promos {
    scroll-snap-align: start;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 60px 60px;
    background: #070604;
  }

  #promoCanvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  /* Floating hex grid overlay */
  .promo-hex-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.03;
    background-image:
      repeating-linear-gradient(60deg, rgba(200,146,42,0.8) 0px, rgba(200,146,42,0.8) 1px, transparent 1px, transparent 30px),
      repeating-linear-gradient(-60deg, rgba(200,146,42,0.8) 0px, rgba(200,146,42,0.8) 1px, transparent 1px, transparent 30px),
      repeating-linear-gradient(0deg, rgba(200,146,42,0.8) 0px, rgba(200,146,42,0.8) 1px, transparent 1px, transparent 30px);
    background-size: 52px 90px;
    animation: hexDrift 40s linear infinite;
  }
  @keyframes hexDrift {
    0%   { background-position: 0 0; }
    100% { background-position: 52px 90px; }
  }

  /* Glowing triangle shapes */
  .promo-tri-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
  }
  .promo-tri {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    animation: triPulse var(--tri-dur, 6s) ease-in-out var(--tri-delay, 0s) infinite;
  }
  @keyframes triPulse {
    0%   { opacity: 0; transform: scale(0.85) rotate(var(--tri-rot, 0deg)); filter: blur(1px); }
    30%  { opacity: var(--tri-max-alpha, 0.38); transform: scale(1.0) rotate(var(--tri-rot, 0deg)); filter: blur(0px); }
    60%  { opacity: var(--tri-max-alpha, 0.38); }
    100% { opacity: 0; transform: scale(1.08) rotate(var(--tri-rot, 0deg)); filter: blur(2px); }
  }

  /* Radial ambient glow blobs */
  .promo-glow-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(40px);
    animation: blobFloat var(--blob-dur, 12s) ease-in-out infinite alternate;
  }
  @keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(var(--bx, 30px), var(--by, 20px)) scale(var(--bs, 1.1)); }
  }
  .promo-glow-blob-1 {
    width: 600px; height: 600px;
    top: -100px; left: -100px;
    background: radial-gradient(circle, rgba(200,146,42,0.35) 0%, transparent 70%);
    --blob-dur: 14s; --bx: 60px; --by: 40px; --bs: 1.15;
  }
  .promo-glow-blob-2 {
    width: 500px; height: 500px;
    bottom: -80px; right: 80px;
    background: radial-gradient(circle, rgba(245,200,66,0.3) 0%, transparent 70%);
    --blob-dur: 18s; --bx: -50px; --by: -30px; --bs: 1.08;
  }
  .promo-glow-blob-3 {
    width: 400px; height: 400px;
    top: 40%; left: 60%;
    background: radial-gradient(circle, rgba(168,112,64,0.28) 0%, transparent 70%);
    --blob-dur: 10s; --bx: 20px; --by: -50px; --bs: 1.2;
  }

  /* Scanlines */
  .promo-scanlines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(0,0,0,0.06) 3px,
      rgba(0,0,0,0.06) 4px
    );
    animation: scanMove 8s linear infinite;
  }
  @keyframes scanMove {
    0%   { background-position: 0 0; }
    100% { background-position: 0 80px; }
  }

  .promo-header {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .promo-eyebrow {
   display:inline-flex; 
   align-items:center; 
   gap:10px; 
   background:linear-gradient(105deg,var(--amber),var(--amber-dim)); 
   color:#f5f0e8; padding:9px 24px; font-weight:800; font-size:10px; 
   letter-spacing:4px; 
   text-transform:uppercase; 
   margin-bottom:22px; 
   box-shadow:0 0 0 1px rgba(139,90,43,0.5),0 4px 30px rgba(90,148,96,0.3),0 0 60px rgba(107,61,30,0.2); 
   clip-path:polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); 
   position:relative;
    overflow:hidden;
    animation:badgePop 0.8s cubic-bezier(0.34,1.56,0.64,1) both; 
  }
  
  .promo-eyebrow::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 40%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmerNature 3.5s ease-in-out 1s infinite;
  }


  .promo-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 82px);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 12px;
  }
  .promo-heading em {
    font-style: italic;
    background: linear-gradient(135deg, #fff9d6 0%, #f5c842 30%, #e8a030 55%, #f5c842 78%, #fff9d6 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: goldShimmer 4s linear infinite;
  }
  .promo-subline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 300;
    color: rgba(245,240,232,0.4);
    margin-top: 10px;
  }

  /* Ticket ribbon */
  @keyframes promoRibbonShimmer {
    0%   { transform: translateX(-120%) skewX(-15deg); }
    100% { transform: translateX(300%)  skewX(-15deg); }
  }

  /* ── PROMO GRID — 4 columns linear layout ── */
  .promo-grid {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1340px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: start;
  }

  .promo-card {
    position: relative;
    border: 1px solid rgba(200,146,42,0.12);
    background: linear-gradient(145deg, rgba(18,16,12,0.95) 0%, rgba(24,20,14,0.9) 100%);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5), 0 0 20px rgba(200,146,42,0.05);
  }

  .promo-card:hover {
    border-color: rgba(200,146,42,0.45);
    box-shadow: 0 32px 90px rgba(0,0,0,0.8), 0 0 80px rgba(200,146,42,0.2), 0 0 120px rgba(200,146,42,0.1);
  }

  .promo-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 0;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
    z-index: 10;
    pointer-events: none;
    transition: width 0.4s cubic-bezier(0.34,1.3,0.64,1), height 0.4s cubic-bezier(0.34,1.3,0.64,1), border-color 0.3s;
  }
  .promo-card:hover::before {
    width: 44px; height: 44px;
    border-top-color: var(--amber);
    border-left-color: var(--amber);
  }
  .promo-card-corner-br {
    position: absolute;
    bottom: 0; right: 0;
    width: 0; height: 0;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    z-index: 10;
    pointer-events: none;
    transition: width 0.4s cubic-bezier(0.34,1.3,0.64,1) 0.05s, height 0.4s cubic-bezier(0.34,1.3,0.64,1) 0.05s, border-color 0.3s;
  }
  .promo-card:hover .promo-card-corner-br {
    width: 36px; height: 36px;
    border-bottom-color: rgba(200,146,42,0.6);
    border-right-color: rgba(200,146,42,0.6);
  }

  .promo-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--amber), var(--amber-light), var(--amber), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
    box-shadow: 0 0 20px rgba(200,146,42,0.7);
  }
  .promo-card:hover::after { transform: scaleX(1); }

  .promo-card-inner-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(200,146,42,0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
  }
  .promo-card:hover .promo-card-inner-glow { opacity: 1; }

  .promo-ribbon {
    position: absolute;
    top: 18px;
    left: 0;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px 6px 16px;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 800;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    overflow: hidden;
  }
  .promo-ribbon::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 35%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: promoRibbonShimmer 3s ease-in-out 0.5s infinite;
  }
  .promo-ribbon.hot    { background: linear-gradient(90deg, #c8302a, #e85040); color: #fff; }
  .promo-ribbon.new    { background: linear-gradient(90deg, #2a6b3a, #3d9450); color: #d4f0da; }
  .promo-ribbon.deal   { background: linear-gradient(90deg, var(--bark), var(--bark-light)); color: #f5f0e8; }
  .promo-ribbon.free   { background: linear-gradient(90deg, #1a3a6b, #2a60b0); color: #d0e4ff; }
  .promo-ribbon.event  { background: linear-gradient(90deg, #5a2a7a, #8a3aaa); color: #f0d8ff; }
  .promo-ribbon.family { background: linear-gradient(90deg, #1a5a3a, #2a8a55); color: #c0f0d8; }

  .promo-img-wrap {
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
  }
  .promo-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) saturate(0.75);
    transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.6s ease, opacity 0.8s ease;
    opacity: 1;
  }
  .promo-card:hover .promo-img-wrap img {
    transform: scale(1.06);
    filter: brightness(0.75) saturate(1.0);
  }

  /* Uniform card image heights */
  .promo-img-wrap.tall      { height: 220px; }
  .promo-img-wrap.uniform   { height: 180px; }

  .promo-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,9,6,0.95) 100%);
  }

  .promo-savings-badge {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: 78px;
    height: 78px;
    border-radius: 50%;
    background: radial-gradient(circle, #f5c842 0%, #c8922a 60%, #a07020 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 3px rgba(245,200,66,0.3), 0 0 30px rgba(245,200,66,0.5);
    animation: savingsPulse 2.5s ease-in-out infinite;
    z-index: 5;
  }
  @keyframes savingsPulse {
    0%,100% { box-shadow: 0 0 0 3px rgba(245,200,66,0.3), 0 0 24px rgba(245,200,66,0.4); transform: translateY(-50%) scale(1); }
    50%      { box-shadow: 0 0 0 6px rgba(245,200,66,0.2), 0 0 44px rgba(245,200,66,0.65); transform: translateY(-50%) scale(1.06); }
  }
  .promo-savings-badge .badge-pct {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 900;
    color: #12110e;
    line-height: 1;
  }
  .promo-savings-badge .badge-off {
    font-size: 9px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #12110e;
    text-transform: uppercase;
  }

  .promo-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
  }
  .promo-label {
    font-size: 9px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--amber);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .promo-label::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: linear-gradient(90deg, var(--amber), transparent);
  }
  .promo-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
  }
  .promo-desc {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(245,240,232,0.55);
    font-weight: 300;
  }
  .promo-validity {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.3);
    font-weight: 500;
  }
  .promo-validity::before {
    content: '⏳';
    font-size: 11px;
    opacity: 0.6;
  }

  /* ── FACEBOOK COMMENT BOX ── */
  .promo-fb-box {
    margin: 14px 0;
    padding: 14px;
    border-radius: 14px;
    border: 1.5px solid rgba(24,119,242,0.5);
    background: linear-gradient(135deg, rgba(10,20,50,0.9) 0%, rgba(16,40,100,0.5) 50%, rgba(10,20,50,0.9) 100%);
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    box-shadow: 0 0 20px rgba(24,119,242,0.12), inset 0 0 30px rgba(24,119,242,0.04);
  }
  .promo-fb-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(24,119,242,0.08) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
  }
  .promo-fb-box:hover::before { transform: translateX(100%); }
  .promo-fb-box:hover {
    background: linear-gradient(135deg, rgba(10,20,60,0.95) 0%, rgba(20,50,130,0.6) 50%, rgba(10,20,60,0.95) 100%);
    border-color: rgba(24,119,242,0.8);
    box-shadow: 0 0 40px rgba(24,119,242,0.25), 0 8px 32px rgba(0,0,0,0.4), inset 0 0 40px rgba(24,119,242,0.06);
  }
  .promo-fb-box .fb-icon-wrap {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1877F2, #0a5fd8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(24,119,242,0.45), 0 0 0 2px rgba(24,119,242,0.2);
    transition: box-shadow 0.3s, transform 0.3s;
  }
  .promo-fb-box:hover .fb-icon-wrap {
    box-shadow: 0 6px 24px rgba(24,119,242,0.65), 0 0 0 3px rgba(24,119,242,0.3);
    transform: scale(1.06);
  }
  .promo-fb-box .fb-box-text { flex: 1; line-height: 1.3; }
  .promo-fb-box .fb-box-main {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #dce8ff;
    letter-spacing: 0.3px;
  }
  .promo-fb-box .fb-box-instruction {
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    color: rgba(180,210,255,0.7);
    margin-top: 2px;
  }
  .promo-fb-box .fb-box-instruction strong {
    color: #a8ccff;
    font-weight: 700;
  }
  .promo-fb-box .fb-box-link {
    display: inline-block;
    margin-top: 4px;
    font-family: 'DM Sans', sans-serif;
    font-size: 7px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7ab4ff;
    font-weight: 700;
    text-decoration: none;
  }
  .promo-fb-box .fb-arrow {
    flex-shrink: 0;
    color: rgba(120,180,255,0.7);
    transition: transform 0.3s, color 0.3s;
  }
  .promo-fb-box:hover .fb-arrow {
    transform: translateX(4px);
    color: rgba(160,210,255,1);
  }

  .promo-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
  }
  .promo-price-old {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: rgba(245,240,232,0.28);
    text-decoration: line-through;
    text-decoration-color: rgba(200,146,42,0.5);
  }
  .promo-price-new {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff9d6, #f5c842, #e8a030);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 8px rgba(245,200,66,0.4));
    line-height: 1;
  }
  .promo-price-unit {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,240,232,0.35);
    font-weight: 500;
  }

  .promo-perks {
    list-style: none;
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .promo-perks li {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: rgba(245,240,232,0.6);
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .promo-perks li::before {
    content: '';
    display: block;
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--amber), var(--amber-light));
    box-shadow: 0 0 8px rgba(200,146,42,0.6);
  }

  /* ── BOOK FREE PASS CTA ── */
  .promo-cta-free {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #12110e;
    text-decoration: none;
    background: linear-gradient(135deg, #fff9d6 0%, #f5c842 35%, #e8a030 65%, #f5c842 100%);
    background-size: 200% auto;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.2s ease, background-position 0.5s ease;
    box-shadow: 0 2px 10px rgba(255,255,255,0.2), 0 0 20px rgba(255,255,255,0.1);
    animation: freePassPulse 2.8s ease-in-out infinite;
  }
  @keyframes freePassPulse {
    0%,100% { box-shadow: 0 2px 10px rgba(255,255,255,0.2), 0 0 20px rgba(255,255,255,0.1); }
    50%      { box-shadow: 0 4px 20px rgba(255,255,255,0.35), 0 0 40px rgba(255,255,255,0.18); }
  }
  .promo-cta-free::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0s;
  }
  .promo-cta-free:hover::before {
    transform: translateX(300%) skewX(-20deg);
    transition: transform 0.6s ease;
  }
  .promo-cta-free:hover {
    transform: translateY(-3px);
    background-position: right center;
    box-shadow: 0 6px 25px rgba(255,255,255,0.4), 0 0 45px rgba(255,255,255,0.2);
    animation: none;
  }
  .promo-cta-free .cta-arrow {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    flex-shrink: 0;
    transition: width 0.3s ease;
  }
  .promo-cta-free .cta-arrow::after {
    content: '';
    position: absolute;
    right: 0; top: -4px;
    width: 8px; height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
  }
  .promo-cta-free:hover .cta-arrow { width: 26px; }

  /* ── GREEN/WARM CTA (Book Your Stay & Reservation) ── */
  .promo-cta-green {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #f4a261 0%, #e76f51 35%, #d2691e 65%, #e76f51 100%);
    background-size: 200% auto;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.35s ease, transform 0.2s ease, background-position 0.5s ease;
    box-shadow: 0 2px 10px rgba(231,111,81,0.3), 0 0 20px rgba(231,111,81,0.15);
    animation: greenPassPulse 2.8s ease-in-out infinite;
  }
  @keyframes greenPassPulse {
    0%,100% { box-shadow: 0 2px 10px rgba(231,111,81,0.3), 0 0 20px rgba(231,111,81,0.15); }
    50%      { box-shadow: 0 4px 20px rgba(231,111,81,0.5), 0 0 40px rgba(231,111,81,0.25); }
  }
  .promo-cta-green::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: translateX(-100%) skewX(-20deg);
    transition: transform 0s;
  }
  .promo-cta-green:hover::before {
    transform: translateX(300%) skewX(-20deg);
    transition: transform 0.6s ease;
  }
  .promo-cta-green:hover {
    transform: translateY(-3px);
    background-position: right center;
    box-shadow: 0 6px 25px rgba(231,111,81,0.6), 0 0 45px rgba(231,111,81,0.3);
    animation: none;
  }
  .promo-cta-green .cta-arrow {
    display: inline-block;
    width: 18px;
    height: 2px;
    background: currentColor;
    position: relative;
    flex-shrink: 0;
    transition: width 0.3s ease;
  }
  .promo-cta-green .cta-arrow::after {
    content: '';
    position: absolute;
    right: 0; top: -4px;
    width: 8px; height: 8px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
  }
  .promo-cta-green:hover .cta-arrow { width: 26px; }

  /* Regular CTA */
  .promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 16px;
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--amber);
    text-decoration: none;
    border: none;
    background: none;
    cursor: pointer;
    transition: gap 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(200,146,42,0.15);
  }
  .promo-cta:hover { gap: 14px; color: var(--amber-light); box-shadow: 0 4px 20px rgba(200,146,42,0.25); }
  .promo-cta-arrow {
    display: inline-block;
    width: 14px;
    height: 2px;
    background: currentColor;
    position: relative;
    flex-shrink: 0;
    transition: width 0.3s ease;
  }
  .promo-cta-arrow::after {
    content: '';
    position: absolute;
    right: 0; top: -3px;
    width: 7px; height: 7px;
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    transform: rotate(45deg);
  }
  .promo-cta:hover .promo-cta-arrow { width: 20px; }

  .promo-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200,146,42,0.2), transparent);
    margin: 6px 0;
  }

  /* Animation for promo cards */
  .promo-rv {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25,0.46,0.45,0.94), transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .promo-rv.vis {
    opacity: 1;
    transform: none;
  }

  /* EXPERIENCE */
  #experience { scroll-snap-align:start; position:relative; overflow:hidden; min-height:100vh; background:var(--dark3); display:flex; align-items:center; justify-content:center; }
  .exp-bg { position:absolute; inset:0; background-image:url('img/gl-bg.png'); background-size:cover; background-position:center; filter:brightness(0.7) saturate(0.5); }
  .exp-bg-overlay { position:absolute; inset:0; background:linear-gradient(180deg,var(--dark3) 0%,rgba(13,12,9,0.5) 40%,rgba(13,12,9,0.5) 60%,var(--dark3) 100%),linear-gradient(90deg,var(--dark3) 0%,transparent 30%,transparent 70%,var(--dark3) 100%); }
  .exp-wrap { position:relative; z-index:10; max-width:1300px; width:100%; padding:120px 80px; display:flex; align-items:center; justify-content:center; }
  .exp-top { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; width:100%; }
  .exp-quote-block { position:relative; }
  .exp-quote-mark { font-family:'Playfair Display',serif; font-size:100px; font-weight:900; color:var(--amber); opacity:0.12; line-height:0.6; display:block; margin-bottom:16px; user-select:none; }
  .exp-quote { font-family:'Cormorant Garamond',serif; font-size:clamp(22px,3vw,36px); font-style:italic; font-weight:300; line-height:1.5; color:var(--white); }
  .exp-quote-attr { display:flex; align-items:center; gap:12px; margin-top:24px; }
  .exp-quote-attr::before { content:''; display:block; width:32px; height:1px; background:var(--amber); }
  .exp-quote-attr span { font-size:11px; letter-spacing:3px; text-transform:uppercase; color:var(--amber); font-weight:500; }
  .exp-info-block { padding-left:40px; border-left:1px solid rgba(200,146,42,0.2); }
  .exp-eyebrow { font-size:10px; letter-spacing:6px; text-transform:uppercase; color:var(--amber); font-weight:500; margin-bottom:20px; }
  .exp-heading { font-family:'Playfair Display',serif; font-size:clamp(32px,4vw,56px); font-weight:700; color:var(--white); line-height:1.1; margin-bottom:24px; }
  .exp-heading em { color:var(--amber-light); font-style:italic; }
  .exp-body { font-family:'Cormorant Garamond',serif; font-size:18px; line-height:1.85; color:rgba(245,240,232,0.65); font-weight:300; }

  /* ══════════════ GALLERY ══════════════ */
  #gallery {
    scroll-snap-align: start;
    position: relative;
    min-height: 100vh;
    background: var(--dark3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0 80px;
  }

  #galleryCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
  }

  .gallery-header-wrap {
    text-align: center;
    padding: 0 80px;
    margin-bottom: 56px;
    position: relative;
    z-index: 10;
    flex-shrink: 0;
  }
  .gallery-kicker { font-size:10px; letter-spacing:7px; text-transform:uppercase; color:var(--amber); font-weight:500; margin-bottom:16px; display:block; }
  .gallery-title { font-family:'Playfair Display',serif; font-size:clamp(40px,6vw,88px); font-weight:900; color:var(--white); line-height:0.95; }
  .gallery-title em { color:var(--amber-light); font-style:italic; }

  .gallery-strip-wrap {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-bottom: 16px;
    flex-shrink: 0;
    z-index: 5;
  }

  .gallery-strip-wrap::before,
  .gallery-strip-wrap::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .gallery-strip-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--dark3), transparent);
  }
  .gallery-strip-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--dark3), transparent);
  }

  .gallery-strip {
    display: flex;
    gap: 12px;
    width: max-content;
  }

  .gallery-strip-1 { animation: marqueeLeft 40s linear infinite; }
  .gallery-strip-2 { animation: marqueeRight 34s linear infinite; }

  @keyframes marqueeLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  @keyframes marqueeRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }

  .gallery-strip-wrap:hover .gallery-strip {
    animation-play-state: paused;
  }

  .g-item {
    flex-shrink: 0;
    width: 360px;
    height: 380px;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
  }

  .g-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.75) brightness(0.78);
    transition: filter 0.5s ease, transform 0.5s ease;
  }

  .gallery-strip-wrap:hover .g-item:hover img {
    filter: saturate(1.2) brightness(1.0);
    transform: scale(1.04);
  }

  .g-item-cap {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(8,7,5,0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    display: flex;
    align-items: flex-end;
    padding: 20px;
  }
  .g-item:hover .g-item-cap { opacity: 1; }
  .g-item-cap-text { font-family:'Playfair Display',serif; font-size:14px; font-weight:700; color:var(--white); letter-spacing:1px; }

  .gallery-word { position:absolute; pointer-events:none; user-select:none; font-family:'Playfair Display',serif; font-weight:900; color:rgba(200,146,42,0.04); z-index:1; line-height:1; }

  /* FOOTER */
  footer { 
    scroll-snap-align:start;
     background:#080705; 
     padding:80px 80px 40px; 
     border-top:1px solid rgba(200,146,42,0.15);
     }
  .footer-grid { 
    display:grid; 
    grid-template-columns:2fr 1fr 1fr; 
    gap:60px; margin-bottom:60px;
   }
  .footer-brand .logo-main { 
    font-size:24px; }
  .footer-tagline { font-family:'Cormorant Garamond',serif; font-size:15px; font-style:italic; color:rgba(245,240,232,0.4); margin-top:12px; line-height:1.7; max-width:280px; }
  .footer-col h4 { font-size:10px; letter-spacing:4px; text-transform:uppercase; color:var(--amber); font-weight:500; margin-bottom:20px; }
  .footer-col a  { display:block; font-size:13px; color:rgba(245,240,232,0.5); text-decoration:none; margin-bottom:10px; transition:color 0.2s,padding-left 0.2s; }
  .footer-col a:hover { color:var(--cream); padding-left:6px; }
  .footer-col .footer-phone { display:block; font-size:13px; color:rgba(245,240,232,0.5); margin-top:4px; letter-spacing:0.5px; }
  .footer-fb-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 12px;
    border: 1px solid rgba(24,119,242,0.4);
    background: linear-gradient(135deg, rgba(10,20,50,0.7) 0%, rgba(16,40,100,0.4) 100%);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: fit-content;
  }
  .footer-fb-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(24,119,242,0.06) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    border-radius: 12px;
  }
  .footer-fb-link:hover {
    border-color: rgba(24,119,242,0.7);
    background: linear-gradient(135deg, rgba(10,20,60,0.9) 0%, rgba(20,50,130,0.5) 100%);
    box-shadow: 0 0 20px rgba(24,119,242,0.2), inset 0 0 15px rgba(24,119,242,0.04);
  }
  .footer-fb-link:hover::before { transform: translateX(100%); }
  .footer-fb-link svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    transform: translateY(1px);
  }
  .footer-fb-link-text {
    font-size: 11px;
    color: #a8ccff;
    font-weight: 600;
    letter-spacing: 0.3px;
  }
  .footer-fb-link:hover .footer-fb-link-text { color: #dce8ff; }
  .footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding-top:30px; display:flex; justify-content:center; align-items:center; gap: 12px; }
  .footer-copy { font-size:12px; color:rgba(245,240,232,0.25); letter-spacing:1px; }

  /* RESPONSIVE */
  @media(max-width:1280px) {
    .promo-grid{grid-template-columns:repeat(2,1fr)}
  }
  @media(max-width:1024px) {
    .exp-top{grid-template-columns:1fr}
    .exp-info-block{border-left:none;padding-left:0;border-top:1px solid rgba(200,146,42,0.2);padding-top:40px}
    .footer-grid{grid-template-columns:1fr 1fr}
  }
  @media(max-width:768px) {
    nav{padding:0 24px} .nav-links{display:none}
    .about-wrap{padding:60px 24px}
    #attractions{padding:80px 0}
    .attr-carousel{padding:0 16px}
    .exp-wrap{padding:80px 24px}
    .footer-grid{grid-template-columns:1fr}
    .hero-btns{flex-direction:column;align-items:center}
    .g-item{width:240px;height:260px;}
    #promos{padding:80px 24px 60px}
    .promo-grid{grid-template-columns:1fr}
  }

  .rv { opacity:0; transform:translateY(50px); transition:opacity 0.9s cubic-bezier(0.25,0.46,0.45,0.94),transform 0.9s cubic-bezier(0.25,0.46,0.45,0.94); }
  .rv.from-left  { transform:translateX(-60px); }
  .rv.from-right { transform:translateX(60px); }
  .rv.scale-in   { transform:scale(0.88); }
  .rv.vis { opacity:1; transform:none; }

  /* ══════════════ DINO FOOTPRINT ══════════════ */
  .dino-footprint {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform-origin: center center;
    will-change: transform, opacity;
  }
  .dino-footprint svg {
    display: block;
    overflow: visible;
    filter: drop-shadow(0 0 8px rgba(200, 146, 42, 0.5));
  }
  @keyframes footprintAppear {
    0%   { opacity: 0; transform: scale(0.3) rotate(var(--fp-rot)); filter: blur(4px); }
    15%  { opacity: 1; transform: scale(1.15) rotate(var(--fp-rot)); filter: blur(0); }
    30%  { transform: scale(0.92) rotate(var(--fp-rot)); }
    45%  { transform: scale(1.04) rotate(var(--fp-rot)); }
    60%  { transform: scale(1.0) rotate(var(--fp-rot)); opacity: 0.85; }
    80%  { opacity: 0.6; }
    100% { opacity: 0; transform: scale(1.0) rotate(var(--fp-rot)); filter: blur(2px); }
  }
  @keyframes splatDrop {
    0%   { opacity: 0; transform: scale(0) translate(var(--sx), var(--sy)); }
    25%  { opacity: 0.8; transform: scale(1) translate(var(--sx), var(--sy)); }
    70%  { opacity: 0.4; }
    100% { opacity: 0; transform: scale(1.3) translate(var(--sx), var(--sy)); }
  }
  .fp-splat {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: splatDrop 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  /* ══════════════ CUSTOM SCROLLBAR ══════════════ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg0);
  border-left: 1px solid rgba(200,146,31,0.10);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    to bottom,
    var(--gold-dim),
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
  border-left: 1px solid rgba(245,200,66,0.20);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    to bottom,
    var(--gold),
    var(--gold-light),
    var(--gold-bright),
    var(--gold-light)
  );
  box-shadow: 0 0 10px rgba(200,146,31,0.40);
}

::-webkit-scrollbar-corner {
  background: var(--bg0);
}

.nav-hamburger { display: none; } /* hidden on desktop */

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 72px; left: 0; right: 0; 
               background: rgba(8,7,5,0.97); flex-direction: column; padding: 24px; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; flex-direction: column; gap: 5px; 
                   background: none; border: none; cursor: pointer; z-index: 1100; }
  .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); }
}

@media (max-width: 768px) {
     #hero {
    min-height: 125svh;   /* ADD THIS LINE */
  }
  .hero-layout {
    grid-template-columns: 1fr;          /* stack vertically */
    grid-template-rows: 1fr auto 1fr;    /* top slider, center, bottom slider */
  }
  .photo-col:first-child {
    grid-row: 1;
    height: 220px;
  }
  .photo-col:last-child {
    grid-row: 3;
    height: 220px;
  }
  /* Change vertical scroll columns to horizontal scroll */
  .photo-col-inner {
    flex-direction: row !important;
  }
  .photo-col-inner img {
    width: 200px;
    height: 100%;
  }
  /* Make scroll animations horizontal */
  .photo-col-inner.scroll-up   { animation: scrollLeft 36s linear infinite; }
  .photo-col-inner.scroll-down { animation: scrollRight 36s linear infinite; }
  @keyframes scrollLeft  { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
  @keyframes scrollRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }

  .hero-center {
    grid-row: 2;
    padding: 32px 20px;
  }
}

@media (max-width: 768px) {
  .attr-carousel {
    padding: 0;
    position: relative;
  }
  .attr-track-wrap {
    overflow: hidden;
  }
  .attr-slide {
    width: 100vw !important;
    height: auto !important;
    min-height: 520px;
    box-sizing: border-box;
  }
  /* On mobile, always show tag, title, desc — no hover needed */
  .attr-slide .attr-slide-tag     { opacity: 1; transform: translateY(0); }
  .attr-slide .attr-slide-title   { transform: translateY(0); }
  .attr-slide .attr-slide-desc    { max-height: 200px; opacity: 1; }
  .attr-slide .attr-slide-badge   { max-height: 40px; opacity: 1; }
  .attr-slide .attr-slide-glow    { opacity: 1; bottom: -20px; }
  /* Make the active card tappable to open overlay */
  .attr-slide.active { cursor: zoom-in; }
  .attr-arrow {
    position: absolute;
    z-index: 20;
    width: 40px;
    height: 40px;
    font-size: 16px;
    top: 50%;
    transform: translateY(-50%);
  }
  #attrPrev { left: 8px; }
  #attrNext { right: 8px; }
}

@media (max-width: 768px) {
  .corner-popup img {
    width: 180px;
    height: 180px;
  }
  .corner-popup.left  { left: -20px; bottom: -20px; }
  .corner-popup.right { right: -10px; bottom: -10px; }
}

@media (max-width: 480px) {
  .corner-popup img {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 1024px) {  /* Tablet */
  nav { padding: 0 24px; }
  .about-wrap { padding: 80px 40px; }
  .attr-carousel { padding: 0 40px; }
}

@media (max-width: 768px) {  /* Mobile */
  nav { padding: 0 16px; }
  .hero-title { font-size: clamp(36px, 12vw, 64px); }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary,
  .btn-outline {
    width: 80vw;
    justify-content: center;
    padding: 18px 24px;
    box-sizing: border-box;
  }
  .about-wrap { padding: 80px 20px; }
  .attr-header { padding: 0 20px; }
  #promos { padding: 60px 20px; }
}

@media (max-width: 768px) {
  #attrOverlay {
    align-items: flex-start;
    padding: 0;
  }
  .attr-overlay-card {
    width: 100vw;
    max-height: 100dvh;
    overflow-y: auto;
    border-left: none;
    border-right: none;
    border-radius: 0;
  }
  .attr-overlay-img-wrap {
    height: 260px;
  }
  .attr-overlay-body {
    padding: 24px 20px 48px;
  }
  .attr-overlay-title {
    font-size: 28px;
  }
  .attr-overlay-desc {
    font-size: 16px;
    line-height: 1.75;
  }
  .attr-overlay-cta {
    width: 100%;
    justify-content: center;
  }
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg0);
}