
    /* ─── FONTS ─────────────────────────────────────────── */
    /* Assyrian loaded via css/nav.css */
    @font-face {
      font-family: 'Lato';
      src: url('Lato-Regular.woff2') format('woff2');
      font-weight: 400; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'Lato';
      src: url('Lato-Italic.woff2') format('woff2');
      font-weight: 400; font-style: italic; font-display: swap;
    }
    @font-face {
      font-family: 'Lato';
      src: url('Lato-Bold.woff2') format('woff2');
      font-weight: 700; font-style: normal; font-display: swap;
    }
    @font-face {
      font-family: 'Lato';
      src: url('Lato-BoldItalic.woff2') format('woff2');
      font-weight: 700; font-style: italic; font-display: swap;
    }

    /* ─── RESET & BASE ───────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --purple:     #7b6cca;
      --purple-lt:  #a491d7;
      --purple-pale:#eae4ef;
      --purple-dark:#3c2f68;
      --cream:      #faf8f5;
      --warm:       #f5f0eb;
      --black:      #1a1a1a;
      --white:      #ffffff;
    }

    html { scroll-behavior: auto; overflow-x: hidden; }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    h1, h2 { font-weight: normal; }
    h1 { font-family: 'Assyrian', serif; }

    img { display: block; max-width: 100%; }
    a { text-decoration: none; }

    /* ─── HERO ───────────────────────────────────────────── */
    #hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      overflow: hidden;
    }

    #hero video {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgb(20 10 40) 10%, rgba(20, 10, 40, 0.5) 60%, rgb(60 48 104) 100%);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .hero-eyebrow {
      font-size: 0.75rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 1s ease 0.3s forwards;
    }

    #hero h1 {
      font-size: clamp(5rem, 14vw, 11rem);
      color: #cec5ff;
      line-height: 1;
      text-shadow: 0 2px 30px rgba(0,0,0,0.4);
      opacity: 0;
      transform: translateY(24px);
      animation: fadeUp 1.1s ease 0.5s forwards;
    }

    .hero-tagline {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      color: rgba(255,255,255,0.9);
      font-style: italic;
      max-width: 100%;
      line-height: 1.6;
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
      opacity: 0;
      transform: translateY(16px);
      animation: fadeUp 1.1s ease 0.8s forwards;
    }

    .hero-date {
      font-size: 0.85rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      opacity: 0;
      animation: fadeUp 1s ease 1s forwards;
    }

    .hero-btn {
      margin-top: 0.5rem;
      display: inline-block;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.5);
      color: #fff;
      padding: 0.85rem 2.2rem;
      border-radius: 40px;
      font-size: 0.85rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      backdrop-filter: blur(6px);
      transition: background 0.3s, border-color 0.3s;
      opacity: 0;
      animation: fadeUp 1s ease 1.2s forwards;
    }
    .hero-btn:hover {
      background: rgba(255,255,255,0.28);
      border-color: rgba(255,255,255,0.9);
      color: #fff;
    }

    .hero-scroll {
      position: absolute;
      bottom: 2rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      opacity: 0;
      animation: fadeIn 1s ease 2s forwards;
    }
    .hero-scroll span {
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.4; transform: scaleY(1); }
      50% { opacity: 1; transform: scaleY(1.2); }
    }

    /* ─── STATS BAR ──────────────────────────────────────── */
    #stats {
      background: var(--purple-dark);
      color: #fff;
      padding: 1.4rem 2rem;
      display: flex;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap;
    }
    .stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 0.5rem 2.5rem;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: 'Assyrian', serif;
      font-size: 1.8rem;
      color: #cec5ff;
      line-height: 1;
    }
    .stat-label {
      font-size: 0.68rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
      margin-top: 0.3rem;
    }

    /* ─── SECTION BASE ───────────────────────────────────── */
    .section {
      padding: 7rem 2rem;
    }
    .section-inner {
      max-width: 860px;
      margin: 0 auto;
    }
    .section-inner.wide {
      max-width: 1100px;
    }
    .section-tag {
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--purple);
      display: block;
      margin-bottom: 1rem;
    }
    .section-title {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      color: var(--purple-dark);
      line-height: 1.1;
      margin-bottom: 1.5rem;
    }
    .section-title.light { color: #fff; }
    .section-body {
      font-size: 1.1rem;
      line-height: 1.85;
      color: #444;
      max-width: 680px;
    }
    .section-body.centered {
      margin: 0 auto;
      text-align: center;
    }
    .divider {
      width: 48px;
      height: 2px;
      background: transparent;
      margin-bottom: 2rem;
    }
    .divider.centered { margin: 0 auto 2rem; }

    /* ─── SCROLL REVEAL (GSAP handles this at runtime) ──── */
    .reveal, .reveal-delay-1, .reveal-delay-2,
    .reveal-delay-3, .reveal-delay-4, .reveal-delay-5 {
      will-change: transform, opacity;
    }

    /* ─── INTRO SECTION ──────────────────────────────────── */
    #intro {
      background:
        linear-gradient(to bottom, rgba(186, 225, 255, 0.55) 0%, #ffffff 97%),
        url('img/g10-min.webp') center / cover no-repeat;
      text-align: center;
    }
    .intro-pillars {
      display: flex;
      gap: 1px;
      margin-top: 4rem;
    }
    .pillar {
      flex: 1;
      padding: 3rem 2rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }
    .pillar:hover { background: none; }
    .pillar img {
      width: auto;
      height: 250px;
      object-fit: contain;
      animation: lotusFloat 4s ease-in-out infinite;
    }
    .pillar:nth-child(2) img { animation-delay: 1.3s; }
    .pillar:nth-child(3) img { animation-delay: 2.6s; }
    @keyframes lotusFloat {
      0%, 100% { transform: scale(1)    translateY(0); }
      50%       { transform: scale(1.13) translateY(-10px); }
    }
    .pillar-title {
      font-family: 'Assyrian', serif;
      font-size: 1.4rem;
      color: var(--purple-dark);
    }
    .pillar-text {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #666;
      text-align: center;
      max-width: 240px;
    }

    /* ─── EXPERIENCE STRIP ───────────────────────────────── */
    #experience {
      background: var(--cream);
    }
    .experience-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(3.5rem, 6vw, 7rem);
      align-items: center;
    }
    .experience-text {
      position: relative;
      z-index: 2;
      max-width: 820px;
    }
    .experience-text .section-body {
      margin-bottom: 1.5rem;
    }
    .experience-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      margin-top: 2rem;
    }
    .exp-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.48rem;
      min-height: 2.35rem;
      padding: 0.48rem 0.86rem;
      border-radius: 12px;
      font-size: 0.78rem;
      line-height: 1.2;
      letter-spacing: 0.02em;
      color: var(--purple-dark);
      box-shadow: 0 8px 22px rgba(60,47,104,0.045);
    }
    .exp-tag-mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 1rem;
      height: 1rem;
      flex: 0 0 auto;
      color: var(--purple);
      font-family: 'Assyrian', serif;
      font-size: 0.92rem;
      line-height: 1;
      opacity: 0.78;
      transform-origin: center;
      animation: expTagSpin 10s linear infinite;
    }
    .exp-tag:nth-child(2n) .exp-tag-mark { animation-duration: 12s; }
    .exp-tag:nth-child(3n) .exp-tag-mark { animation-direction: reverse; }
    @keyframes expTagSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    .experience-image {
      position: relative;
      overflow: visible;
      margin: 12px;
    }
    .experience-image::before {
      content: '';
      position: absolute;
      inset: -10px;
      background: conic-gradient(from 0deg,
        var(--purple-dark) 0%,
        var(--purple)      26%,
        var(--purple-lt)   52%,
        #c8bfff            76%,
        var(--purple)      90%,
        var(--purple-dark) 100%
      );
      animation: blobMorph 10s ease-in-out infinite, ringRotate 9s linear infinite;
      z-index: 0;
    }
    .experience-image img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 500px;
      object-fit: cover;
      background: var(--cream);
      animation: blobMorph 10s ease-in-out infinite;
      transition: transform 0.6s ease;
    }
    .experience-image:hover img { transform: scale(1.03); }
    .experience-vibe-btn {
      position: absolute;
      left: 50.5%;
      top: 15%;
      z-index: 4;
      width: 102px;
      height: 102px;
      transform: translate(-50%, -50%);
      display: grid;
      place-items: center;
      border: 1px solid rgba(123,108,202,0.26);
      border-radius: 50%;
      background: rgba(250,248,245,0.92);
      color: var(--purple-dark);
      box-shadow: 0 18px 45px rgba(60,47,104,0.16), inset 0 0 0 7px rgba(234,228,239,0.72);
      cursor: pointer;
      isolation: isolate;
      transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    }
    .experience-vibe-btn::before {
      content: '꩜';
      position: absolute;
      inset: -17px;
      display: grid;
      place-items: center;
      color: rgba(123,108,202,0.22);
      font-family: 'Assyrian', serif;
      font-size: 8.2rem;
      line-height: 1;
      transform-origin: center;
      transition: color 0.28s ease;
      animation: vibePortalSpin 18s linear infinite;
      z-index: -1;
    }
    .experience-vibe-btn::after {
      content: '';
      position: absolute;
      inset: -8px;
      border: 1px solid rgba(164,145,215,0.42);
      border-radius: 50%;
      opacity: 0;
      transform: scale(0.82);
      transition: opacity 0.28s ease, transform 0.28s ease;
    }
    .experience-vibe-btn__ring {
      position: absolute;
      inset: 10px;
      border-radius: 50%;
      border: 1px dashed rgba(123,108,202,0.36);
      animation: vibePortalSpin 12s linear infinite reverse;
    }
    .experience-vibe-btn__icon {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      color: var(--purple-dark);
    }
    .experience-vibe-btn__icon svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .experience-vibe-btn__play {
      fill: currentColor;
      stroke: none;
    }
    .experience-vibe-btn__label {
      position: absolute;
      top: calc(100% + 0.55rem);
      left: 50%;
      transform: translateX(-50%);
      white-space: nowrap;
      color: var(--purple);
      font-size: 0.66rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      opacity: 0.72;
      text-shadow: 0 1px 8px rgba(250,248,245,0.9);
      transition: opacity 0.22s ease, transform 0.22s ease;
    }
    .experience-vibe-btn:hover,
    .experience-vibe-btn:focus-visible {
      transform: translate(-50%, -54%) scale(1.04);
      background: rgba(255,252,247,0.98);
      box-shadow: 0 24px 56px rgba(60,47,104,0.22), 0 0 34px rgba(164,145,215,0.32), inset 0 0 0 7px rgba(234,228,239,0.88);
      outline: none;
    }
    .experience-vibe-btn:hover::before,
    .experience-vibe-btn:focus-visible::before {
      color: rgba(123,108,202,0.32);
    }
    .experience-vibe-btn:hover::after,
    .experience-vibe-btn:focus-visible::after {
      opacity: 1;
      transform: scale(1.08);
    }
    .experience-vibe-btn:hover .experience-vibe-btn__label,
    .experience-vibe-btn:focus-visible .experience-vibe-btn__label {
      opacity: 1;
      transform: translateX(-50%) translateY(2px);
    }
    @keyframes vibePortalSpin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
   
    /* ─── PHOTO BREAK ────────────────────────────────────── */
    .photo-break {
      position: relative;
      min-height: clamp(320px, 42vw, 500px);
      background: #2b2940;
      overflow: hidden;
    }
    .photo-break__bg {
      position: absolute;
      inset: 0;
      opacity: 0;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      will-change: opacity, filter;
    }
    .photo-break__bg--active {
      opacity: 1;
    }
    .photo-break__overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4rem 1.5rem;
      background: linear-gradient(180deg, rgba(20,10,45,0.32) 0%, rgba(20,10,45,0.22) 48%, rgba(20,10,45,0.5) 100%);
      text-align: center;
    }
    .photo-break__title {
      width: max-content;
      max-width: 100%;
      margin: 0;
      color: #fff;
      display: grid;
      grid-template-columns: auto 7.95em;
      justify-content: center;
      align-items: baseline;
      column-gap: 0.22em;
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      line-height: 1.05;
      text-shadow: 0 2px 20px rgba(0,0,0,0.38);
      white-space: nowrap;
    }
    .photo-break__headline-word {
      display: inline-block;
      opacity: 0;
      transform: translateY(0.35em);
      will-change: opacity, transform;
    }
    .photo-break__rotating-word {
      display: inline-block;
      width: 7.95em;
      text-align: left;
      transition: none;
    }

    /* ─── GALLERY STRIP ─────────────────────────────────── */
    .gallery-strip {
      overflow: hidden;
      background: #fff;
      padding: 0 0 3rem;
      position: relative;
    }
    .gallery-strip::before,
    .gallery-strip::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 140px;
      z-index: 2;
      pointer-events: none;
    }
    .gallery-strip::before {
      left: 0;
      background: linear-gradient(to right, #fff 20%, transparent);
    }
    .gallery-strip::after {
      right: 0;
      background: linear-gradient(to left, #fff 20%, transparent);
    }
    .gallery-track {
      display: flex;
      gap: 12px;
      align-items: flex-end;
      width: max-content;
      animation: galleryMarquee 50s linear infinite;
      will-change: transform;
    }
    .gallery-track:hover { animation-play-state: paused; }
    .gi {
      border-radius: 18px;
      object-fit: cover;
      flex-shrink: 0;
      display: block;
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }
    .gi.tall  { height: 300px; width: 220px; }
    .gi.wide  { height: 220px; width: 320px; }
    .gi.sq    { height: 250px; width: 250px; }
    @keyframes galleryMarquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* ─── ITINERARY ──────────────────────────────────────── */
    #itinerary {
      background: var(--white);
      position: relative;
      overflow: hidden;
    }
    #itinerary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('img/g3-min.jpg') center center / cover no-repeat;
      opacity: 0.18;
      pointer-events: none;
      z-index: 0;
    }
    #itinerary::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,252,248,0.6) 0%, rgba(245,240,255,0.4) 50%, rgba(255,252,248,0.6) 100%);
      pointer-events: none;
      z-index: 0;
    }
    #itinerary .section-inner {
      position: relative;
      z-index: 1;
    }
    .itinerary-header {
      text-align: center;
      margin-bottom: 3rem;
    }
    .itinerary-controls {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 780px;
      margin: 0 auto 2rem;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .itinerary-btn-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.65rem 1.4rem;
      background: var(--purple);
      color: #fff;
      border-radius: 40px;
      font-size: 0.8rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: background 0.2s;
    }
    .itinerary-btn-link:hover { background: var(--purple-lt); color: #fff; }

    .temp-toggle {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: #666;
    }
    .temp-toggle button {
      padding: 0.3rem 0.8rem;
      border: 1px solid var(--purple-pale);
      background: #fff;
      color: var(--purple);
      font-size: 0.78rem;
      cursor: pointer;
      transition: all 0.2s;
    }
    .temp-toggle button.active {
      background: var(--purple);
      color: #fff;
      border-color: var(--purple);
    }
    .temp-toggle button:first-of-type { border-radius: 4px 0 0 4px; }
    .temp-toggle button:last-of-type { border-radius: 0 4px 4px 0; }

    /* ─── DAY NAV ───────────────────────────────────────── */
    @keyframes spin-lotus {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }
    .day-nav {
      position: fixed;
      right: 2rem;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 1050;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .day-nav.visible { opacity: 1; pointer-events: all; }
    .day-dot {
      position: relative;
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(123, 108, 202, 0.18);
      border: 2px solid rgba(123, 108, 202, 0.35);
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0;
      padding: 0;
      color: transparent;
    }
    .day-dot:hover {
      background: rgba(123, 108, 202, 0.4);
      border-color: var(--purple);
      transform: scale(1.15);
    }
    .day-dot.active {
      background: var(--purple-dark);
      border-color: var(--purple);
      font-size: 14px;
      color: #fff;
    }
    .day-dot.active::before {
      content: '꩜';
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -10px 0 0 -10px;
      width: 20px;
      height: 20px;
      font-size: 20px;
      line-height: 1;
      animation: spin-lotus 3s linear infinite;
    }
    .day-dot::after {
      content: attr(data-tip);
      position: absolute;
      right: 54px;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(60,47,104,0.92);
      color: #fff;
      padding: 5px 12px;
      border-radius: 6px;
      font-size: 0.72rem;
      white-space: nowrap;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.15s;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    }
    .day-dot:hover::after { opacity: 1; }
    @media (max-width: 900px) { .day-nav { display: none; } }

    /* ─── STACKING DAY CARDS ────────────────────────────── */
    .stack-cards {
      position: relative;
      max-width: 780px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
    }
    .day-card {
      position: sticky;
      top: calc(72px + var(--i, 0) * 4px);
      z-index: var(--i, 1);
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 6px 30px rgba(0,0,0,0.13);
      margin-bottom: 2rem;
    }
    .day-card-header {
      position: relative;
      height: 200px;
      cursor: pointer;
      display: flex;
      align-items: flex-end;
      padding: 1.4rem 1.8rem;
      color: #fff;
      user-select: none;
      gap: 1rem;
    }
    .day-card-bg {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      transition: transform 0.5s ease;
    }
    .day-card:hover .day-card-bg { transform: scale(1.04); }
    .day-card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(20,10,45,0.9) 0%, rgba(20,10,45,0.3) 55%, transparent 100%);
    }
    .day-card-meta {
      position: relative;
      z-index: 2;
      flex: 1;
    }
    .day-card-label {
      font-size: 0.68rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 0.3rem;
    }
    .day-card-title {
      font-size: 1.2rem;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 0.3rem;
    }
    .day-card-stage {
      font-size: 0.67rem;
      letter-spacing: 0.08em;
      color: rgba(255,255,255,0.42);
      font-style: italic;
    }
    .day-card-right {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: space-between;
      height: 100%;
      padding: 0.2rem 0;
    }
    .day-card-icons {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.2rem;
      font-size: 0.7rem;
      color: rgba(255,255,255,0.6);
    }
    .day-card-arrow { display: none; }

    .acc-body {
      max-height: none;
      overflow: visible;
    }
    .acc-body-inner {
      padding: 1.4rem 1.8rem 1.6rem;
      border-top: 1px solid var(--purple-pale);
    }
    .acc-gallery {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding: 0.8rem 0 1rem;
      scrollbar-width: none;
    }
    .acc-gallery::-webkit-scrollbar { display: none; }
    .acc-gallery img {
      width: 120px; height: 80px;
      object-fit: cover;
      border-radius: 6px;
      flex-shrink: 0;
      cursor: pointer;
      transition: transform 0.2s;
    }
    .acc-gallery img:hover { transform: scale(1.04); }
    .acc-desc {
      font-size: 0.95rem;
      line-height: 1.75;
      color: #555;
    }
    .acc-location {
      margin-top: 0.8rem;
      font-size: 0.8rem;
      color: var(--purple);
    }

    /* ─── PHASE CARDS (3-location itinerary) ───────────────── */
    .phase-cards { max-width: 780px; margin: 0 auto; }
    .phase-card {
      background: #fff;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 6px 32px rgba(0,0,0,0.10);
      margin-bottom: 3.5rem;
      scroll-margin-top: 90px;
    }
    .phase-header-img { position: relative; height: 250px; overflow: hidden; }
    .phase-header-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
    .phase-card:hover .phase-header-bg { transform: scale(1.04); }
    .phase-header-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.62) 100%); }
    .phase-header-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.6rem 2rem; display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; }
    .phase-badge { display: inline-block; padding: 0.22rem 0.9rem; border-radius: 40px; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 0.4rem; }
    .phase-badge--root      { background: rgba(58,140,140,0.92);  color: #fff; }
    .phase-badge--rise      { background: rgba(123,108,202,0.92); color: #fff; }
    .phase-badge--bloom     { background: rgba(48,120,68,0.92);   color: #fff; }
    .phase-badge--celebrate { background: rgba(180,100,60,0.92);  color: #fff; }
    .phase-title { font-size: 1.9rem; color: #fff; line-height: 1.1; text-shadow: 0 2px 10px rgba(0,0,0,0.35); }
    .phase-dates-label { font-size: 0.76rem; color: rgba(255,255,255,0.82); text-align: right; line-height: 1.9; white-space: nowrap; }
    .phase-temp {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 0.32rem;
      font-size: 0.78rem;
      color: rgba(255,255,255,0.75);
    }
    .phase-temp-icon {
      width: 0.85rem;
      height: 0.85rem;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.9;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
    }
    .phase-body { padding: 2rem; }
    .phase-location { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: #aaa; margin-bottom: 0.8rem; }
    .phase-desc { font-size: 0.97rem; color: #444; line-height: 1.78; margin-bottom: 1.25rem; }
    .phase-breakdown { display: grid; gap: 0.9rem; margin: 1.4rem 0 1.45rem; }
    .phase-breakdown-item { border-left: 2px solid var(--purple-lt); padding-left: 1rem; }
    .phase-breakdown-title { font-size: 0.82rem; color: var(--purple-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.35rem; }
    .phase-breakdown-text { font-size: 0.91rem; color: #555; line-height: 1.68; }
    .phase-gallery { display: flex; gap: 8px; overflow-x: auto; padding: 0.2rem 0 1rem; margin-bottom: 1rem; scrollbar-width: none; }
    .phase-gallery::-webkit-scrollbar { display: none; }
    .phase-gallery img { height: 110px; object-fit: cover; border-radius: 8px; flex-shrink: 0; cursor: pointer; transition: transform 0.2s; width: 165px; }
    .phase-gallery img.gallery-img--portrait { width: 73px; }
    .phase-gallery img:hover { transform: scale(1.05); }
    .phase-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; }
    .phase-tag { padding: 0.28rem 0.75rem; background: var(--purple-pale); color: var(--purple-dark); border-radius: 40px; font-size: 0.74rem; letter-spacing: 0.04em; }

    /* ─── SIGN-IN LIGHTBOX ──────────────────────────────────── */
    .signin-overlay { position: fixed; inset: 0; background: rgba(20,10,45,0.65); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 1.5rem; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .signin-overlay.open { opacity: 1; pointer-events: all; }
    .signin-box { background: #fff; border-radius: 22px; padding: 2.5rem 2.25rem 2rem; max-width: 400px; width: 100%; text-align: center; position: relative; box-shadow: 0 24px 70px rgba(0,0,0,0.28); transform: translateY(18px); transition: transform 0.35s ease; }
    .signin-overlay.open .signin-box { transform: translateY(0); }
    .signin-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; color: #bbb; cursor: pointer; width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; line-height: 1; }
    .signin-close:hover { background: #f0edf5; color: var(--purple-dark); }
    .signin-lotus { font-size: 2.6rem; display: inline-block; animation: navSpin 8s linear infinite; color: var(--purple); margin-bottom: 0.25rem; }
    .signin-box h2 { font-family: 'Assyrian', serif; font-size: 2rem; color: var(--purple-dark); margin-bottom: 0.35rem; }
    .signin-box .signin-sub { font-size: 0.9rem; color: #888; line-height: 1.6; margin-bottom: 2rem; }
    .signin-google { display: flex; align-items: center; justify-content: center; gap: 0.75rem; width: 100%; padding: 0.85rem 1.5rem; border: 1.5px solid #ddd; border-radius: 12px; font-size: 0.92rem; font-weight: 500; color: #333; text-decoration: none; transition: border-color 0.2s, box-shadow 0.2s; }
    .signin-google:hover { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(123,108,202,0.12); color: #333; }
    .signin-google svg { width: 20px; height: 20px; flex-shrink: 0; }
    .signin-note { margin-top: 1.25rem; font-size: 0.74rem; color: #ccc; }
    .signin-divider { display: flex; align-items: center; gap: 0.75rem; margin: 1.25rem 0; color: #ccc; font-size: 0.78rem; }
    .signin-divider::before, .signin-divider::after { content: ''; flex: 1; height: 1px; background: #eee; }
    .signin-form { text-align: left; }
    .signin-field { margin-bottom: 0.85rem; }
    .signin-field label { display: block; font-size: 0.8rem; font-weight: 600; color: #666; margin-bottom: 0.35rem; letter-spacing: 0.04em; }
    .signin-field input { width: 100%; padding: 0.72rem 1rem; border: 1.5px solid #e0dcea; border-radius: 10px; font-size: 0.92rem; color: #1a1a1a; outline: none; transition: border-color 0.2s; }
    .signin-field input:focus { border-color: var(--purple); }
    .signin-submit { width: 100%; padding: 0.85rem; background: var(--purple); color: #fff; border: none; border-radius: 12px; font-size: 0.93rem; font-weight: 600; cursor: pointer; transition: background 0.2s; margin-top: 0.25rem; }
    .signin-submit:hover { background: var(--purple-dark); }
    .signin-submit:disabled { opacity: 0.65; cursor: default; }
    .signin-err { background: #fef2f2; color: #991b1b; border-radius: 8px; padding: 0.65rem 0.9rem; font-size: 0.84rem; margin-bottom: 0.85rem; text-align: left; display: none; }

    /* ─── WORD REVEAL ────────────────────────────────────── */
    .wr { display: inline-block; }

    /* ─── HOSTS ──────────────────────────────────────────── */
    #hosts {
      background: var(--cream);
      overflow: hidden;
    }
    .hosts-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 3rem;
      margin-top: 3.5rem;
    }
    .hosts-grid[data-count="1"] { grid-template-columns: minmax(0, 480px); justify-content: center; }
    .hosts-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
    .hosts-grid[data-count="2"] .host-photo-wrap { max-width: 380px; margin-left: auto; margin-right: auto; }
    .hosts-grid[data-count="2"] .host-photo-wrap img { height: 380px; }
    .hosts-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .hosts-grid[data-count="3"] .host-photo-wrap img { height: 340px; }
    .hosts-grid[data-count="4"] { grid-template-columns: repeat(4, 1fr); gap: 3rem; }
    .hosts-grid[data-count="4"] .host-photo-wrap { max-width: 260px; }
    .hosts-grid[data-count="4"] .host-photo-wrap img { height: 260px; }
    .host-card {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    @keyframes blobMorph {
      0%, 100% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; }
      25%       { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; }
      50%       { border-radius: 55% 45% 62% 38% / 45% 58% 50% 52%; }
      75%       { border-radius: 40% 60% 45% 55% / 55% 45% 60% 40%; }
    }
    @keyframes ringRotate {
      from { transform: rotate(0deg); }
      to   { transform: rotate(360deg); }
    }

    .host-photo-wrap {
      position: relative;
      overflow: visible;
      margin: 12px auto;
      max-width: 380px;
      width: 100%;
    }
    .host-photo-wrap::before {
      content: '';
      position: absolute;
      inset: -10px;
      background: conic-gradient(from 0deg,
        var(--purple-dark) 0%,
        var(--purple)      26%,
        var(--purple-lt)   52%,
        #c8bfff            76%,
        var(--purple)      90%,
        var(--purple-dark) 100%
      );
      animation: blobMorph 10s ease-in-out infinite, ringRotate 9s linear infinite;
      z-index: 0;
    }
    .host-photo-wrap img {
      position: relative;
      z-index: 1;
      width: 100%;
      height: 480px;
      object-fit: cover;
      object-position: top;
      display: block;
      animation: blobMorph 10s ease-in-out infinite;
      transition: transform 0.6s ease;
    }
    /* Stagger the second card so they don't pulse in sync */
    .host-card:nth-child(even) .host-photo-wrap::before { animation-delay: -4s, -3.5s; }
    .host-card:nth-child(even) .host-photo-wrap img { animation-delay: -4s; }

    .host-card:hover .host-photo-wrap img { transform: scale(1.03); }
    .host-name {
      font-family: 'Assyrian', serif;
      font-size: 1.8rem;
      color: var(--purple-dark);
      letter-spacing: 0.03em;
    }
    .host-role {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--purple);
      margin-top: 0.2rem;
    }
    .host-bio {
      font-size: 0.95rem;
      line-height: 1.8;
      color: #555;
    }

    /* ─── TESTIMONIALS ───────────────────────────────────── */
    #testimonials {
      position: relative;
      background: #20102d;
      color: #fff;
      overflow: hidden;
    }
    .testimonials-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image: url('img/g9-min.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      pointer-events: none;
      will-change: opacity, filter;
    }
    .testimonials-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(180deg, rgba(20,10,45,0.82) 0%, rgba(20,10,45,0.78) 100%);
      pointer-events: none;
    }
    #testimonials > .section-inner {
      position: relative;
      z-index: 2;
    }
    .testimonials-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }
    .testimonials-header .section-tag { color: var(--purple-lt); }
    .testimonials-grid {
      columns: 3;
      column-gap: 1.5rem;
    }
    @media (max-width: 900px) and (min-width: 601px) {
      .testimonials-grid { columns: 2; max-width: none; }
    }
    .testimonial-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      break-inside: avoid;
      margin-bottom: 1.5rem;
    }
    .testimonial-stars {
      display: flex;
      gap: 0.18rem;
      color: #cec5ff;
    }
    .testimonial-stars svg {
      width: 0.85rem;
      height: 0.85rem;
      fill: currentColor;
    }
    .testimonial-quote {
      font-size: 0.95rem;
      line-height: 1.75;
      color: rgba(255,255,255,0.85);
      font-style: italic;
      flex: 1;
    }
    .testimonial-author {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
    }
    .testimonial-name {
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
    }
    .testimonial-detail {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
    }

    /* ─── INCLUDED ───────────────────────────────────────── */
    #included {
      background: var(--white);
    }
    .included-header { text-align: center; margin-bottom: 3.5rem; }
    .included-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      max-width: 860px;
      margin: 0 auto;
    }
    .included-col h3 {
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
      padding-bottom: 0.8rem;
      border-bottom: 1px solid var(--purple-pale);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .included-col.yes h3 { color: var(--purple); }
    .included-col.no h3 { color: #b14a4a; }
    .included-heading-icon {
      width: 0.95rem;
      height: 0.95rem;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
    }

    .included-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }
    .included-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.92rem;
      line-height: 1.5;
      color: #444;
    }
    .included-list li::before {
      content: '';
      flex-shrink: 0;
      margin-top: 0.15em;
      width: 0.55rem;
      height: 0.55rem;
      border-radius: 50%;
    }
    .included-col.yes .included-list li::before { background: var(--purple); }
    .included-col.no .included-list li::before { background: #b14a4a; }

    .price-card {
      max-width: 860px;
      margin: 3rem auto 0;
      background: linear-gradient(135deg, var(--purple-dark), var(--purple));
      border-radius: 8px;
      padding: 2.5rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: #fff;
      flex-wrap: wrap;
      gap: 1.5rem;
    }
    .price-label {
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      margin-bottom: 0.4rem;
    }
    .price-amount {
      font-family: 'Assyrian', serif;
      font-size: 3rem;
      line-height: 1;
    }
    .price-note {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.55);
      margin-top: 0.4rem;
    }
    .price-cta {
      display: inline-block;
      background: #fff;
      color: var(--purple);
      padding: 0.9rem 2.2rem;
      border-radius: 40px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: background 0.2s;
    }
    .price-cta:hover { background: #cec5ff; color: var(--purple-dark); }

    /* ── Partners ─────────────────────────────────────────────── */
    .partners-section { background: var(--purple-dark); padding: 3rem 0; }
    .partners-label { text-align: center; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 2rem; }
    .partners-logos { display: flex; align-items: center; justify-content: center; gap: 3.5rem; flex-wrap: wrap; }
    .partner-logo-link { display: flex; align-items: center; justify-content: center; width: 160px; height: 80px; opacity: 0.8; transition: opacity 0.2s; }
    .partner-logo-link:hover { opacity: 1; }
    .partner-logo { width: 100%; height: 100%; object-fit: contain; }
    .partner-logo--dark-bg { mix-blend-mode: screen; }
    .partners-footnote { text-align: center; font-size: 0.65rem; color: rgba(255,255,255,0.3); margin-top: 2rem; letter-spacing: 0.05em; }
  @media (max-width: 600px) {
    .partners-logos { gap: 1.5rem; }
    .partner-logo-link { width: 90px; height: 50px; }
  }

    /* ─── FAQ ────────────────────────────────────────────── */
    #faq {
      background: var(--cream);
    }
    .faq-header { text-align: center; margin-bottom: 3rem; }
    .faq-list {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--purple-pale);
    }
    .faq-item {
      border-bottom: 1px solid var(--purple-pale);
      padding: 1.4rem 0;
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      gap: 1rem;
    }
    .faq-question h4 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--black);
      line-height: 1.4;
    }
    .faq-icon {
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      border: 1px solid var(--purple-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s, background 0.2s;
      color: var(--purple);
      font-size: 1.2rem;
      line-height: 1;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--purple-pale); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .faq-answer p {
      padding-top: 1rem;
      font-size: 0.95rem;
      line-height: 1.8;
      color: #555;
    }

    /* ─── QUOTE / CTA SECTION ────────────────────────────── */
    #cta-quote {
      position: relative;
      z-index: 2;
      background: none;
      color: var(--deep, #332857);
      text-align: center;
      padding: 7rem 2rem 8rem;
    }
    .cta-quote__bg { display: none; }
    .cta-quote__overlay { display: none; }
    #cta-quote > :not(.cta-quote__bg):not(.cta-quote__overlay) {
      position: relative;
      z-index: 2;
    }
    .cta-quote-text {
      font-size: clamp(1.6rem, 4vw, 2.6rem);
      font-style: italic;
      line-height: 1.5;
      max-width: 680px;
      margin: 0 auto 1.5rem;
      font-weight: 600;
    }
    .cta-quote-attr {
      font-size: 0.8rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(50,35,80,0.45);
      margin-bottom: 3rem;
    }
    .cta-quote-sub {
      font-size: 1.1rem;
      line-height: 1.7;
      color: rgba(50,35,80,0.7);
      max-width: 520px;
      margin: 0 auto 2.5rem;
    }
    .cta-quote-btn {
      display: inline-block;
      background: var(--purple, #7b6cca);
      color: #fff;
      padding: 1rem 2.8rem;
      border-radius: 40px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: background 0.2s;
    }
    .cta-quote-btn:hover { background: var(--purple-dark, #332857); color: #fff; }

    /* ─── FOOTER ─────────────────────────────────────────── */
    footer {
      position: relative;
      overflow: hidden;
      color: rgba(50,35,80,0.6);
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      background:
        linear-gradient(to bottom, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 40%, rgba(255,255,255,0.2) 70%, rgba(255,255,255,0.6) 100%),
        url('img/lotus-background-art.webp') center bottom / 100% auto no-repeat;
      background-color: #fff;
      min-height: clamp(600px, 55vw, 800px);
      padding-bottom: clamp(200px, 25vw, 380px);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }
    .footer-bg-video { display: none; }
    .footer-overlay { display: none; }
    .footer-main {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 3rem;
      max-width: 1100px;
      width: 100%;
      margin: 0 auto;
      padding: 5.5rem 2rem 0.5rem;
    }
    .footer-col { display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col--brand { gap: 0.5rem; }
    .footer-mark { font-size: 1.8rem; line-height: 1; color: var(--purple, #7b6cca); }
    .footer-brand-name { font-size: 0.72rem; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(50,35,80,0.5); }
    .footer-tagline { font-size: 0.82rem; color: rgba(50,35,80,0.5); line-height: 1.6; max-width: 220px; margin-top: 0.25rem; font-style: italic; }
    .footer-col-label { font-size: 0.65rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(50,35,80,0.35); margin-bottom: 0.25rem; }
    .footer-link { color: rgba(50,35,80,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; text-align: left; }
    .footer-link:hover { color: var(--purple, #7b6cca); }
    .footer-contact-btn { display: inline; }
    .footer-bottom {
      position: relative;
      z-index: 2;
      border-top: none;
      max-width: 1100px;
      width: 100%;
      margin: 0 auto;
      padding: 2rem 2rem 2.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }
    .footer-authentic { display: flex; align-items: center; gap: 0.5rem; color: rgba(50,35,80,0.35); font-size: 0.75rem; letter-spacing: 0.04em; font-style: italic; }
    .footer-authentic svg { width: 13px; height: 13px; stroke: rgba(50,35,80,0.25); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
    .footer-copy { color: rgba(50,35,80,0.3); font-size: 0.72rem; letter-spacing: 0.06em; text-align: center; }
    @media (max-width: 700px) {
      footer { min-height: 520px; }
      .footer-main { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 4rem 1.5rem 2.5rem; }
      .footer-col--brand { grid-column: 1 / -1; }
    }
    @media (max-width: 480px) {
      .footer-main { grid-template-columns: 1fr; }
    }

    /* ── Contact modal ────────────────────────────────── */
    .contact-modal-box {
      background: #fff;
      border-radius: 16px;
      padding: 2rem;
      width: 100%;
      max-width: 460px;
      position: relative;
      box-shadow: 0 24px 60px rgba(20,10,45,0.3);
    }
    .contact-modal-close { position: absolute; top: 1rem; right: 1rem; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #aaa; line-height: 1; }
    .contact-modal-close:hover { color: #333; }
    .contact-modal-title { font-size: 1.3rem; font-weight: 800; color: var(--purple-dark); margin-bottom: 0.25rem; }
    .contact-modal-sub { font-size: 0.88rem; color: #888; margin-bottom: 1.4rem; }
    .contact-field { margin-bottom: 1rem; }
    .contact-field label { display: block; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #888; margin-bottom: 0.35rem; }
    .contact-field input, .contact-field textarea { width: 100%; padding: 0.65rem 0.9rem; border: 1.5px solid #e0d9f5; border-radius: 8px; font-size: 0.9rem; font-family: inherit; color: #1a1a1a; outline: none; transition: border-color 0.15s; resize: vertical; }
    .contact-field input:focus, .contact-field textarea:focus { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(123,108,202,0.12); }
    .contact-error { background: #fff5f5; color: #dc2626; border-radius: 8px; padding: 0.6rem 0.9rem; font-size: 0.84rem; margin-bottom: 0.75rem; }
    .contact-submit { width: 100%; padding: 0.85rem; background: var(--purple); color: #fff; border: none; border-radius: 8px; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: background 0.2s; letter-spacing: 0.04em; }
    .contact-submit:hover { background: #6358b0; }
    .contact-submit:disabled { opacity: 0.7; cursor: not-allowed; }
    .contact-success { text-align: center; padding: 2rem 1rem; }
    .contact-success-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
    .contact-success p { color: #555; font-size: 1rem; line-height: 1.6; }

    /* ─── WELCOME POPUP ──────────────────────────────────── */
    .wp-overlay {
      position: fixed; inset: 0; z-index: 9500;
      background: rgba(10,5,25,0.85);
      align-items: center; justify-content: center;
      padding: 1rem;
      opacity: 0; transition: opacity 0.4s ease;
    }
    .wp-overlay.wp-visible { opacity: 1; }
    .wp-overlay.wp-hiding  { opacity: 0; pointer-events: none; }
    .wp-box {
      position: relative;
      width: 100%; max-width: 780px;
      aspect-ratio: 16/9;
      border-radius: 16px;
      overflow: hidden;
      background: #000;
      box-shadow: 0 32px 80px rgba(0,0,0,0.6);
    }
    .wp-video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .wp-overlay-gradient {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,5,25,0.6) 0%, transparent 50%);
    }
    .wp-content {
      position: absolute; bottom: 4.5rem; left: 1.5rem; right: 1.5rem;
      text-align: center;
    }
    .wp-headline { color: #fff; font-size: 1rem; font-weight: 400; margin-bottom: 0.4rem; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
    .wp-subtext  { color: rgba(255,255,255,0.75); font-size: 0.8rem; text-shadow: 0 1px 6px rgba(0,0,0,0.5);font-style: italic; }
    .wp-subtext-delayed {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .wp-subtext-delayed.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .wp-share-trigger {
      position: absolute;
      top: 1.15rem;
      right: 1.15rem;
      z-index: 2;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.34);
      border-radius: 50%;
      background: rgba(255,255,255,0.16);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(10px);
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
    }
    .wp-share-trigger.visible,
    .wp-share-trigger:focus-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .wp-share-trigger:hover,
    .wp-share-trigger[aria-expanded="true"] {
      background: rgba(255,255,255,0.26);
    }
    .wp-share-trigger svg {
      width: 18px;
      height: 18px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.1;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .wp-share-panel {
      position: absolute;
      top: 4rem;
      right: 1.15rem;
      z-index: 3;
      width: min(260px, calc(100% - 2.3rem));
      padding: 0.8rem;
      border: 1px solid rgba(255,255,255,0.24);
      border-radius: 14px;
      background: rgba(20,10,45,0.72);
      color: #fff;
      box-shadow: 0 18px 44px rgba(0,0,0,0.28);
      backdrop-filter: blur(14px);
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity 0.22s ease, transform 0.22s ease;
    }
    .wp-share-panel.open {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .wp-share-panel p {
      margin: 0 0 0.55rem;
      color: rgba(255,255,255,0.76);
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }
    .wp-share-options {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.45rem;
    }
    .wp-share-options button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0.45rem 0.55rem;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      color: #fff;
      font-family: inherit;
      font-size: 0.72rem;
      font-weight: 900;
      text-decoration: none;
      cursor: pointer;
    }
    .wp-share-options button:hover {
      background: rgba(255,255,255,0.22);
    }
    .wp-tap-play-btn {
      display: none;
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      z-index: 10;
      background: rgba(255,255,255,0.18);
      border: 2px solid rgba(255,255,255,0.6);
      border-radius: 50%;
      width: 72px; height: 72px;
      cursor: pointer;
      align-items: center; justify-content: center;
      backdrop-filter: blur(6px);
      transition: background 0.2s;
    }
    .wp-tap-play-btn svg {
      width: 28px; height: 28px; fill: #fff; margin-left: 4px;
    }
    .needs-tap .wp-tap-play-btn { display: flex; }
    .wp-actions {
      position: absolute; bottom: 1.2rem; left: 1.2rem; right: 1.2rem;
      display: flex; align-items: center; justify-content: space-between;
    }
    .wp-mute {
      background: rgba(255,255,255,0.15); border: none; border-radius: 50%;
      width: 38px; height: 38px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      backdrop-filter: blur(8px); transition: background 0.2s;
    }
    .wp-mute:hover { background: rgba(255,255,255,0.25); }
    .wp-mute svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
    .wp-sound-nudge {
      position: absolute; left: calc(100% + 0.6rem); top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
      color: #fff; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em;
      white-space: nowrap; padding: 0.3rem 0.7rem; border-radius: 20px;
      border: 1px solid rgba(255,255,255,0.25);
      animation: wp-nudge-in 0.4s ease 1.2s both;
      pointer-events: none;
    }
    @keyframes wp-nudge-in {
      from { opacity: 0; transform: translateY(-50%) translateX(-6px); }
      to   { opacity: 1; transform: translateY(-50%) translateX(0); }
    }
    .wp-enter {
      background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
      color: #fff; border-radius: 40px; padding: 0.55rem 1.4rem;
      font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em;
      cursor: pointer; backdrop-filter: blur(8px); transition: background 0.2s;
      font-family: inherit;
    }
    .wp-enter:hover { background: rgba(255,255,255,0.25); }
    @media (max-width: 500px) {
      .wp-box { aspect-ratio: 9/16; max-width: 340px; }
    }

    /* ─── MODAL ──────────────────────────────────────────── */
    #formModal {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.7);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
      padding: 1rem;
    }
    .modal-content {
      background: #fff;
      border-radius: 12px;
      width: 100%;
      max-width: 680px;
      max-height: 90vh;
      overflow: auto;
      padding: 2rem;
      position: relative;
    }
    .modal-close {
      position: absolute;
      top: 1rem; right: 1.2rem;
      font-size: 2rem;
      cursor: pointer;
      color: var(--purple);
      line-height: 1;
      background: none;
      border: none;
    }
    .sf-label {
      display: block;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--purple);
      margin-bottom: 0.4rem;
      letter-spacing: 0.08em;
    }
    .sf-input {
      width: 100%;
      padding: 0.65rem 0.9rem;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 0.95rem;
      font-family: inherit;
      background: #fff;
      outline: none;
      transition: border-color 0.2s;
      box-sizing: border-box;
      color: var(--purple);
      font-style: italic;
    }
    .public-select {
      position: relative;
      width: 100%;
      margin-bottom: 0.5rem;
    }
    .public-select__native {
      display: none !important;
    }
    .public-select__trigger {
      width: 100%;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.65rem 0.9rem;
      border: 1px solid #ddd;
      border-radius: 8px;
      background: #fff;
      color: var(--purple);
      font: inherit;
      font-size: 0.95rem;
      font-style: italic;
      text-align: left;
      cursor: pointer;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }
    .public-select__trigger:hover {
      border-color: #cfc6ec;
      background: #fdfcff;
    }
    .public-select.open .public-select__trigger,
    .public-select__trigger:focus {
      outline: none;
      border-color: var(--purple);
      box-shadow: 0 0 0 3px rgba(123,108,202,0.14);
    }
    .public-select__chevron {
      width: 16px;
      height: 16px;
      flex: 0 0 auto;
      color: var(--purple);
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: transform 0.18s ease;
    }
    .public-select.open .public-select__chevron {
      transform: rotate(180deg);
    }
    .public-select__menu {
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      right: 0;
      z-index: 2050;
      max-height: 270px;
      overflow-y: auto;
      padding: 0.32rem;
      border-radius: 10px;
      background: #2d2840;
      color: rgba(255,255,255,0.74);
      box-shadow: 0 14px 34px rgba(22,15,40,0.28);
      visibility: hidden;
      opacity: 0;
      transform: translateY(-5px);
      transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s ease;
    }
    .public-select.open .public-select__menu {
      visibility: visible;
      opacity: 1;
      transform: translateY(0);
    }
    .public-select__menu.two-col {
      display: grid;
      grid-template-columns: 1fr 1fr;
      right: auto;
      min-width: 100%;
    }
    .public-select__menu.two-col .public-select__option:first-child {
      display: none;
    }
    .public-select__option {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      width: 100%;
      padding: 0.5rem 0.65rem;
      border-radius: 7px;
      color: rgba(255,255,255,0.72);
      font-size: 0.9rem;
      font-style: normal;
      font-weight: 650;
      cursor: pointer;
    }
    .public-select__option:hover,
    .public-select__option.active {
      background: rgba(255,255,255,0.1);
      color: #fff;
    }
    .public-select__option.disabled {
      display: none;
    }
    .public-select__check {
      width: 14px;
      flex: 0 0 auto;
      color: #d8d0ff;
      opacity: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .public-select__check svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.4;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .public-select__option.active .public-select__check {
      opacity: 1;
    }
    .sf-textarea {
      width: 100%;
      padding: 0.65rem 0.9rem;
      border: 1px solid #ddd;
      border-radius: 6px;
      font-size: 0.95rem;
      font-family: inherit;
      resize: vertical;
      outline: none;
      transition: border-color 0.2s;
      box-sizing: border-box;
         color: var(--purple);
      font-style: italic;
    }
   ::placeholder {
      color: var(--purple);
      font-style: italic;
    }
    .activity-chip {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      padding: 0.3rem 0.75rem;
      border-radius: 20px;
      font-size: 0.82rem;
      font-weight: 500;
      cursor: pointer;
      border: 1.5px solid #d0c8f0;
      background: #fff;
      color: #555;
      transition: all 0.15s;
      user-select: none;
    }
    .activity-chip.selected {
      background: var(--purple);
      border-color: var(--purple);
      color: #fff;
    }
    .activity-chip .chip-x {
      width: 1rem;
      height: 1rem;
      border: 0;
      background: transparent;
      color: currentColor;
      cursor: pointer;
      opacity: 0.72;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    .activity-chip .chip-x svg {
      width: 0.78rem;
      height: 0.78rem;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .success-lotus {
      width: 58px;
      height: 58px;
      margin: 0 auto 1rem;
      color: var(--purple);
    }
    .success-lotus svg {
      width: 100%;
      height: 100%;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .sf-grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
    .sf-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-bottom: 1rem; }
    @media (max-width: 600px) {
      .modal-content { padding: 1.25rem; }
      .sf-grid-3, .sf-grid-2 { grid-template-columns: 1fr; }
      .testimonials-grid { columns: 1; max-width: 500px; margin-inline: auto; }
    }

    /* ─── LIGHTBOX ───────────────────────────────────────── */
    #lightbox {
      position: fixed;
      inset: 0;
      background: rgba(20,10,40,0.95);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 3000;
      flex-direction: column;
    }
    #lightbox-img {
      max-width: 90vw;
      max-height: 85vh;
      border-radius: 8px;
      object-fit: contain;
    }
    .lb-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(123,108,202,0.8);
      border: none;
      color: #fff;
      font-size: 2rem;
      width: 50px; height: 50px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      z-index: 10;
    }
    .lb-arrow.left { left: 1.5rem; }
    .lb-arrow.right { right: 1.5rem; }
    .lb-close {
      position: absolute;
      top: 1.2rem; right: 1.5rem;
      background: rgba(123,108,202,0.8);
      border: none;
      color: #fff;
      font-size: 1.4rem;
      width: 40px; height: 40px;
      border-radius: 50%;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
    }

    /* ─── BACK TO TOP ────────────────────────────────────── */
    .toast { position: fixed; top: 5rem; left: 50%; transform: translateX(-50%) translateY(-12px); background: #1a1a2e; color: #fff; padding: 0.75rem 1.5rem; border-radius: 40px; font-size: 0.88rem; font-weight: 500; box-shadow: 0 6px 24px rgba(0,0,0,0.35); opacity: 0; transition: opacity 0.4s, transform 0.4s; pointer-events: none; z-index: 3000; white-space: nowrap; }
    .toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

    #backToTop {
      position: fixed;
      bottom: 2rem; right: 2rem;
      z-index: 900;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1.5px solid rgba(123, 108, 202, 0.25);
      border-radius: 50%;
      width: 44px; height: 44px;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s, transform 0.35s, box-shadow 0.25s, background 0.25s;
      box-shadow: 0 4px 20px rgba(123, 108, 202, 0.18);
      transform: translateY(8px);
    }
    #backToTop.show {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    #backToTop:hover {
      background: var(--purple);
      border-color: var(--purple);
      box-shadow: 0 6px 24px rgba(123, 108, 202, 0.35);
    }
    #backToTop svg {
      width: 16px; height: 16px;
      stroke: var(--purple);
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      transition: stroke 0.25s, transform 0.25s;
    }
    #backToTop:hover svg { stroke: #fff; transform: translateY(-2px); }

    /* ─── ANIMATIONS ─────────────────────────────────────── */
    @keyframes fadeUp {
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      to { opacity: 1; }
    }

    /* ─── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 900px) {
      .cta-quote__bg { background-attachment: scroll; }
      .experience-grid { grid-template-columns: 1fr; }
      .experience-vibe-btn {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0.75rem auto 1.5rem;
      }
      .experience-vibe-btn:hover,
      .experience-vibe-btn:focus-visible {
        transform: translateY(-4px) scale(1.04);
      }
      .experience-image img { height: 340px; }
      .hosts-grid,
      .hosts-grid[data-count="2"],
      .hosts-grid[data-count="3"],
      .hosts-grid[data-count="4"] { grid-template-columns: 1fr; max-width: 480px; margin: 3rem auto 0; }
      .hosts-grid[data-count="2"] .host-photo-wrap img { height: 380px; }
      .included-grid { grid-template-columns: 1fr; }
      .stat-item { padding: 0.5rem 1.2rem; }
      /* Gallery */
      .gi.tall { height: 200px; width: 150px; }
      .gi.wide { height: 150px; width: 210px; }
      .gi.sq   { height: 175px; width: 175px; }
      .gallery-strip::before,
      .gallery-strip::after { width: 60px; }
      /* Day card */
      .day-card-header { height: 170px; }
      .stack-cards { max-width: 100%; }
    }

    @media (max-width: 700px) {
      /* nav handled by css/nav.css */
      .section { padding: 4rem 1.5rem; }
      .section-title { font-size: 1.75rem; }
      .hero-content { padding: 0 1.5rem; }
      .hero-eyebrow { font-size: 0.82rem; }
      .hero-tagline { font-size: clamp(1.08rem, 3vw, 1.3rem); }
      .hero-date { font-size: 0.9rem; }
      .photo-break {
        min-height: 340px;
      }
      .photo-break__overlay { padding: 3rem 1.5rem; }
      .photo-break__title {
        font-size: clamp(1.65rem, 6.2vw, 2.75rem);
      }
      .intro-pillars { flex-direction: column; }
      .price-card { flex-direction: column; text-align: center; }
      .host-photo-wrap { margin: 8px auto; max-width: 320px; }
      .host-photo-wrap::before { inset: -6px; animation: blobMorph 10s ease-in-out infinite; }
      .host-photo-wrap img { height: 320px; }
      .experience-image { margin: 1.5rem auto 0; }
      .experience-image::before {
        inset: -6px;
        animation: blobMorph 10s ease-in-out infinite;
      }
      /* Gallery smaller */
      .gi.tall { height: 160px; width: 115px; }
      .gi.wide { height: 130px; width: 175px; }
      .gi.sq   { height: 145px; width: 145px; }
      .gallery-track { gap: 8px; }
      /* Day card */
      .day-card-header { height: 150px; padding: 1rem 1.2rem; }
      .day-card-title  { font-size: 1.05rem; }
      /* Lightbox */
      .modal-content { padding: 1rem; }
      .lb-arrow { width: 36px; height: 36px; font-size: 1rem; }
      /* FAQ */
      .faq-q { font-size: 0.95rem; }
    }

    @media (max-width: 500px) {
      #stats { flex-direction: column; align-items: center; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); width: 100%; text-align: center; }
      .stat-item:last-child { border-bottom: none; }
      .section { padding: 3rem 1.35rem; }
      .section-title { font-size: 1.55rem; }
      .hero-content { padding: 0 1.35rem; }
      .hero-eyebrow { font-size: 0.85rem; letter-spacing: 0.18em; }
      .hero-tagline { font-size: 1.05rem; }
      .hero-date { font-size: 0.88rem; letter-spacing: 0.12em; }
      .hero-btn { font-size: 0.88rem; padding: 0.9rem 2rem; }
      .photo-break {
        min-height: 300px;
      }
      .photo-break__overlay {
        padding-inline: 1.35rem;
      }
      .photo-break__title {
        font-size: clamp(1.35rem, 6.2vw, 2rem);
      }
      /* Gallery strip: faster on small screens */
      .gallery-track { animation-duration: 35s; }
      .gi.tall { height: 130px; width: 95px; }
      .gi.wide { height: 110px; width: 145px; }
      .gi.sq   { height: 120px; width: 120px; }
      .gallery-strip::before,
      .gallery-strip::after { width: 40px; }
      /* Day card */
      .day-card-header { height: 130px; }
      .day-card-label  { font-size: 0.6rem; }
      .day-card-title  { font-size: 0.95rem; }
      .day-card-stage  { display: none; }
      /* Accordion gallery thumbs */
      .acc-gallery img { height: 60px; width: 90px; }
      /* Hosts */
      .host-photo-wrap { margin: 6px auto; max-width: 260px; }
      .host-photo-wrap::before { inset: -5px; animation: blobMorph 10s ease-in-out infinite; }
      .host-photo-wrap img { height: 260px; }
      /* Modal/Lightbox */
      .modal-content { padding: 0.75rem; border-radius: 8px; }
      .lightbox-wrap { padding: 0.5rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      .experience-vibe-btn::before,
      .experience-vibe-btn__ring,
      .experience-image::before,
      .experience-image img,
      .host-photo-wrap::before,
      .host-photo-wrap img { animation: none !important; }
      .experience-image::before,
      .experience-image img,
      .host-photo-wrap::before,
      .host-photo-wrap img { border-radius: 50%; }
      .photo-break__rotating-word {
        transition: none !important;
      }
    }
  
