/* =========================================================
   SINGLETRAVELER NETWORK — "The Traveler's Atlas"
   Editorial travel-document design system
   Primary  #088DA5 — navigation & core interface
   Secondary #01AFCA — interactions & supporting UI
   Accent   #EBB041 — pins, routes, stamps, decorative only
   ========================================================= */

:root {
    --primary:    #088DA5;
    --primary-dk: #05677E;
    --secondary:  #01AFCA;
    --accent:     #EBB041;

    --ink:    #04222B;   /* deep teal-ink — dark sections   */
    --ink-2:  #06303C;
    --ink-3:  #0A3E4C;
    --paper:  #F7F5EF;   /* warm paper — light sections     */
    --paper-2:#EFECE2;
    --white:  #FFFFFF;

    --text:   #1C3B44;
    --muted:  #5D7278;
    --line:   rgba(8, 141, 165, .16);
    --line-ink: rgba(255, 255, 255, .12);

    --font-display: "Fraunces", Georgia, serif;
    --font-body:    "Figtree", -apple-system, "Segoe UI", sans-serif;
    --font-mono:    "Space Mono", "Courier New", monospace;

    --ease: cubic-bezier(.22, 1, .36, 1);
    --ease-io: cubic-bezier(.65, 0, .35, 1);

    --radius: 20px;
    --shadow-1: 0 6px 24px rgba(4, 34, 43, .08);
    --shadow-2: 0 24px 60px rgba(4, 34, 43, .16);
    --shadow-3: 0 40px 90px rgba(4, 34, 43, .35);

    --header-h: 84px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--paper);
    overflow-x: hidden;
}
img, video, svg { max-width: 100%; display: block; }
figure { margin: 0; }
a { color: var(--primary); text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul { list-style: none; }
::selection { background: var(--secondary); color: var(--white); }

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 480;
    line-height: 1.08;
    letter-spacing: -.015em;
    color: var(--ink);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.22; }
h4 { font-family: var(--font-body); font-weight: 700; }

/* The signature italic — replaces the old script face */
.script {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 420;
    color: var(--primary);
    letter-spacing: -.01em;
}

.mono {
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.container { width: min(1240px, 92vw); margin-inline: auto; }

[id] { scroll-margin-top: calc(var(--header-h) + 1rem); }

.skip-link {
    position: fixed; top: -100px; left: 1rem; z-index: 300;
    background: var(--ink); color: var(--white);
    padding: .7rem 1.2rem; border-radius: 8px;
    transition: top .25s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* =========================================================
   RECURRING LANGUAGE — pins, stamps, tags, eyebrows
   ========================================================= */

/* Animated location pin (accent — decorative) */
.pin-dot {
    position: relative;
    display: inline-block;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: .65rem;
    vertical-align: 2px;
    flex: none;
}
.pin-dot::after {
    content: "";
    position: absolute; inset: -5px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    opacity: .8;
    animation: pinPulse 2.4s var(--ease) infinite;
}
@keyframes pinPulse {
    0%   { transform: scale(.5); opacity: .9; }
    70%  { transform: scale(1.5); opacity: 0; }
    100% { transform: scale(1.5); opacity: 0; }
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.1rem;
}
.eyebrow-accent { color: var(--accent); }

/* Passport stamp */
.passport-stamp {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    border: 2px dashed var(--accent);
    border-radius: 10px;
    padding: .55rem 1.1rem;
    transform: rotate(-6deg);
    background: rgba(235, 176, 65, .07);
}

/* Luggage tag label */
.lug-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--paper);
    border: 1.5px solid var(--accent);
    border-radius: 6px 14px 14px 6px;
    padding: .42rem .95rem .42rem 1.35rem;
}
.lug-tag::before {
    content: "";
    position: absolute; left: .5rem; top: 50%;
    width: 7px; height: 7px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    background: var(--paper);
}

/* Tag cloud — benefit / audience lists as luggage tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem .9rem;
    margin: 1.8rem 0;
}
.tag-cloud li {
    position: relative;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: 8px 16px 16px 8px;
    padding: .62rem 1.15rem .62rem 1.5rem;
    box-shadow: var(--shadow-1);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.tag-cloud li::before {
    content: "";
    position: absolute; left: .55rem; top: 50%;
    width: 7px; height: 7px;
    transform: translateY(-50%);
    border-radius: 50%;
    border: 1.5px solid var(--accent);
}
.tag-cloud li:nth-child(3n)   { transform: rotate(-1.2deg); }
.tag-cloud li:nth-child(4n+1) { transform: rotate(1deg); }
.tag-cloud li:hover {
    transform: translateY(-4px) rotate(0);
    box-shadow: var(--shadow-2);
    border-color: var(--secondary);
}

/* Section heads */
.section-head { max-width: 720px; margin-bottom: 3.2rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { color: var(--muted); font-size: 1.1rem; }
.section-head-light h2 { color: var(--white); }
.section-head-light p { color: rgba(255, 255, 255, .72); }
.section-head-light .script { color: var(--secondary); }

.lead { font-size: 1.3rem; font-weight: 600; color: var(--ink); }

.highlight {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.45;
    color: var(--ink);
    border-left: 3px solid var(--accent);
    padding: .4rem 0 .4rem 1.4rem;
    margin: 1.8rem 0;
}

.center-cta { text-align: center; margin-top: 2.6rem; }

/* Photo caption note */
.photo-note {
    display: inline-block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--muted);
}

/* Editorial text link */
.p-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    font-size: .95rem;
    color: var(--primary);
    margin-top: 1.1rem;
    transition: color .3s var(--ease), gap .3s var(--ease);
}
.p-link::before { content: "◦"; color: var(--accent); font-size: 1.2em; line-height: 1; }
.p-link::after { content: "→"; transition: transform .3s var(--ease); }
.p-link:hover { color: var(--secondary); gap: .8rem; }
.p-link:hover::after { transform: translateX(3px); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    font-weight: 700;
    font-size: .98rem;
    letter-spacing: .01em;
    padding: 1rem 2.1rem;
    border-radius: 999px;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease),
                background .35s var(--ease), color .35s var(--ease),
                border-color .35s var(--ease);
    will-change: transform;
}
.btn-cta {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 12px 30px rgba(8, 141, 165, .35);
}
.btn-cta::after {
    content: "→";
    transition: transform .35s var(--ease);
}
.btn-cta:hover {
    background: var(--secondary);
    box-shadow: 0 18px 44px rgba(1, 175, 202, .45);
}
.btn-cta:hover::after { transform: translateX(4px); }

.btn-ghost {
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, .55);
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .16); border-color: var(--white); }

.btn-ghost-dark {
    color: var(--ink);
    border: 1.5px solid rgba(4, 34, 43, .3);
    background: transparent;
}
.btn-ghost-dark:hover { border-color: var(--secondary); color: var(--secondary); }

.btn-white {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-1);
}
.btn-white:hover { background: var(--paper-2); }

.btn-nav {
    background: var(--primary);
    color: var(--white);
    padding: .7rem 1.5rem;
    font-size: .9rem;
    box-shadow: 0 8px 22px rgba(8, 141, 165, .35);
}
.btn-nav:hover { background: var(--secondary); }

.btn:focus-visible,
a:focus-visible,
button:focus-visible {
    outline: 2.5px solid var(--accent);
    outline-offset: 3px;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    padding: 1.1rem 0;
    transition: padding .4s var(--ease), background .4s var(--ease),
                box-shadow .4s var(--ease), backdrop-filter .4s var(--ease);
}
.header-inner {
    position: relative;
    width: min(1320px, 94vw);
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.site-header.scrolled {
    padding: .55rem 0;
    background: rgba(4, 34, 43, .78);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    box-shadow: 0 10px 40px rgba(4, 34, 43, .35);
    border-bottom: 1px solid rgba(1, 175, 202, .18);
}

.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand-mark {
    display: grid;
    place-items: center;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 4px 16px rgba(4, 34, 43, .25);
    flex: none;
}
.brand-logo { width: 36px; height: 36px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
    font-family: var(--font-mono);
    font-size: .92rem;
    font-weight: 400;
    letter-spacing: .14em;
    color: var(--white);
}
.brand-name strong { font-weight: 700; color: var(--secondary); }
.brand-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: .78rem;
    color: rgba(255, 255, 255, .75);
}
.brand-tagline em { color: var(--accent); font-style: italic; }

.site-nav ul { display: flex; gap: .4rem; }
.site-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: .95rem;
    color: rgba(255, 255, 255, .82);
    padding: .55rem 1rem;
    border-radius: 999px;
    transition: color .3s var(--ease), background .3s var(--ease);
}
.site-nav a .nav-pin {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-right: .5rem;
    opacity: 0;
    transform: scale(.3) translateY(4px);
    transition: opacity .3s var(--ease), transform .35s var(--ease);
}
.site-nav a:hover { color: var(--white); background: rgba(1, 175, 202, .14); }
.site-nav a:hover .nav-pin,
.site-nav a.active .nav-pin { opacity: 1; transform: scale(1) translateY(0); }
.site-nav a.active { color: var(--white); background: rgba(8, 141, 165, .35); }
.nav-cta-mobile { display: none; }

/* ---------- Header actions (Join button + mobile toggle) ---------- */
.header-actions { display: flex; align-items: center; gap: .9rem; }

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 0;
    border-radius: 12px;
    flex: none;
    transition: background .3s var(--ease);
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform .35s var(--ease), opacity .35s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO — DEPARTURE
   ========================================================= */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--header-h) + 4rem) 0 6rem;
    color: var(--white);
    overflow: hidden;
    background: var(--ink);
}
.hero-bg {
    position: absolute; inset: 0;
    background: url("../images/bg_hero.jpg") center / cover no-repeat;
    animation: heroDrift 24s var(--ease-io) infinite alternate;
}
@keyframes heroDrift {
    from { transform: scale(1) translateX(0); }
    to   { transform: scale(1.08) translateX(-1.5%); }
}
.hero::before {
    content: "";
    position: absolute; inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(4, 34, 43, .93) 0%, rgba(4, 34, 43, .74) 38%, rgba(4, 34, 43, .28) 72%, rgba(4, 34, 43, .15) 100%),
        linear-gradient(to top, rgba(4, 34, 43, .82) 0%, rgba(4, 34, 43, 0) 36%);
}
.hero-contours {
    position: absolute; inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: .5;
}
.hero-contours path {
    stroke: var(--accent);
    stroke-width: 1;
    stroke-dasharray: 6 8;
    opacity: .35;
}
.hero-layout {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}
.hero-coords {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 1.6rem;
    animation: fadeUp .8s var(--ease) .1s both;
}
.hero h1 {
    color: var(--white);
    animation: fadeUp .9s var(--ease) .22s both;
}
.hero h1 .script {
    display: block;
    color: var(--secondary);
    font-size: 1.08em;
    margin-top: .05em;
}
.hero-sub {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .9);
    max-width: 560px;
    margin: 1.6rem 0 2.4rem;
    animation: fadeUp .9s var(--ease) .34s both;
}
.hero-sub strong { color: var(--accent); font-weight: 700; }
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeUp .9s var(--ease) .46s both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Video panel — floating film card */
.hero-panel { animation: fadeUp 1s var(--ease) .4s both; }
.hero-video {
    position: relative;
    border-radius: 26px;
    overflow: hidden;
    transform: rotate(1.6deg);
    box-shadow: var(--shadow-3), 0 0 0 1px rgba(255, 255, 255, .18);
    transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.hero-video:hover { transform: rotate(0) translateY(-8px); }
.hero-video video { width: 100%; aspect-ratio: 16 / 10.5; object-fit: cover; }
.hero-video .video-play {
    position: absolute; inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(4, 34, 43, .12), rgba(4, 34, 43, .45));
    transition: background .35s var(--ease);
}
.hero-video .video-play:hover { background: linear-gradient(rgba(4, 34, 43, .04), rgba(4, 34, 43, .32)); }
.play-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px; height: 96px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .45);
    transition: transform .35s var(--ease);
}
.play-circle svg { width: 36px; height: 36px; fill: #000; margin-left: 5px; }
.video-play:hover .play-circle { transform: scale(1.1); }
.hero-video.playing .video-play { display: none; }
.hero-video.playing .hero-video-strip { display: none; }
.hero-video-strip {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: space-between;
    padding: .8rem 1.3rem;
    color: rgba(255, 255, 255, .85);
    border-top: 1px dashed rgba(255, 255, 255, .35);
    background: linear-gradient(transparent, rgba(4, 34, 43, .55));
    pointer-events: none;
}

.hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 2rem;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: .9rem;
    color: rgba(255, 255, 255, .6);
    font-size: .62rem;
}
.hs-line {
    display: block;
    width: 54px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent));
    position: relative;
    overflow: visible;
}
.hs-line::after {
    content: "";
    position: absolute;
    right: 0; top: -2.5px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: scrollDot 2.2s var(--ease-io) infinite;
}
@keyframes scrollDot {
    0%   { transform: translateX(-54px); opacity: 0; }
    30%  { opacity: 1; }
    100% { transform: translateX(0); opacity: 0; }
}

/* =========================================================
   DEPARTURES — TICKET STRIP
   ========================================================= */
.departures {
    position: relative;
    z-index: 5;
    margin-top: -5.5rem;
    padding-bottom: 5rem;
}
.dep-head {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 1.1rem;
    padding-left: .3rem;
}
.ticket-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.1rem;
}
/* Split color / photo cards — colored panel left, image right */
.mini-card {
    --card-c: var(--primary);
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 300px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
    transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.mini-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-3); }
.mc-body {
    flex: 0 0 58%;
    display: flex;
    flex-direction: column;
    gap: .55rem;
    padding: 1.5rem 1.3rem 1.4rem;
    background: var(--card-c);
    color: var(--white);
}
.mc-icon {
    display: inline-flex;
    width: 40px; height: 40px;
    padding: 8px;
    border-radius: 12px;
    color: var(--white);
    background: rgba(255, 255, 255, .16);
    margin-bottom: .35rem;
    transition: transform .35s var(--ease), background .3s var(--ease);
}
.mc-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.mini-card:hover .mc-icon { transform: rotate(-6deg); background: rgba(255, 255, 255, .26); }
.mc-body h3 { color: var(--white); font-size: 1.12rem; line-height: 1.2; }
.mc-body p { font-size: .86rem; color: rgba(255, 255, 255, .92); line-height: 1.5; flex: 1; }
.mc-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    color: var(--accent);
    font-weight: 800;
    transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.mini-card:hover .mc-arrow { background: var(--accent); color: var(--ink); transform: translateX(4px); }
.mc-photo { flex: 1; position: relative; overflow: hidden; }
.mc-photo img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease);
}
.mini-card:hover .mc-photo img { transform: scale(1.08); }

/* =========================================================
   STAMPS — TRUST
   ========================================================= */
.stamps { padding: 4.5rem 0 5rem; }
.stamps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}
.stamp-card {
    position: relative;
    text-align: center;
    padding: 2.1rem 1.5rem 1.9rem;
    border: 2px dashed rgba(235, 176, 65, .55);
    border-radius: 16px;
    background: transparent;
    transition: transform .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
}
.stamp-card:nth-child(1) { transform: rotate(-1.4deg); }
.stamp-card:nth-child(2) { transform: rotate(.8deg) translateY(.7rem); }
.stamp-card:nth-child(3) { transform: rotate(-.7deg); }
.stamp-card:nth-child(4) { transform: rotate(1.3deg) translateY(.5rem); }
.stamp-card:hover {
    transform: rotate(0) translateY(-4px);
    border-color: var(--accent);
    background: rgba(235, 176, 65, .05);
}
.st-emoji { font-size: 1.7rem; display: block; margin-bottom: .7rem; }
.stamp-card h4 { color: var(--ink); font-size: 1.02rem; margin-bottom: .35rem; }
.stamp-card p { font-size: .88rem; color: var(--muted); line-height: 1.55; }

/* =========================================================
   WELCOME — SCRAPBOOK COLLAGE
   ========================================================= */
.welcome {
    position: relative;
    padding: 6.5rem 0 7rem;
    overflow: hidden;
}
.finale-contours {
    position: absolute; inset: 0;
    pointer-events: none;
}
.welcome-route-bg {
    position: absolute; inset: 0;
    pointer-events: none;
}
.welcome-route-bg path {
    stroke: rgba(8, 141, 165, .18);
    stroke-width: 1.5;
    stroke-dasharray: 1 9;
    stroke-linecap: round;
}
.welcome-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}
@media (min-width: 961px) {
    .welcome .collage {
        width: 114%;
        margin-left: -9%;
    }
}
.welcome-body h2 { margin-bottom: .4rem; }
.welcome-body p { margin-bottom: 1.15rem; }
.welcome-body .btn { margin-top: .8rem; }
.brush-underline {
    display: block;
    width: min(240px, 60%);
    height: 14px;
    margin: 0 0 1.6rem;
}
.brush-underline path { stroke: var(--accent); stroke-width: 5; }
.welcome-endpin { margin-top: 2.2rem; display: flex; justify-content: flex-end; }
.welcome-endpin svg { width: 160px; height: 60px; overflow: visible; }
.welcome-endpin .draw-path { stroke: rgba(8, 141, 165, .45); stroke-width: 1.6; stroke-linecap: round; }
.welcome-endpin .ep-pin { fill: var(--primary); }

/* ---------- The collage board ---------- */
.collage {
    position: relative;
    aspect-ratio: 100 / 82;
    container-type: inline-size;
    font-size: 16px;
}
.collage [data-piece] { position: absolute; }

/* the scrapbook board (traveler collage artwork) */
.clg-board {
    top: 0; left: 0;
    width: 100%;
    z-index: 2;
    transform: rotate(-1.6deg);
    transition: transform .7s var(--ease);
}
.clg-board:hover { transform: rotate(-.4deg) translateY(-6px); }
.clg-board img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    mix-blend-mode: multiply;
}

/* rubber stamp + postmark waves */
.clg-stamp {
    top: 68%; left: 16%;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 2cqw;
    color: var(--accent);
    transform: rotate(-8deg);
    opacity: .95;
}
.clg-stamp > svg:first-child { width: 20cqw; }
.stamp-text {
    font-family: var(--font-mono);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .3em;
    fill: currentColor;
}
.clg-waves { width: 16cqw; }
.clg-waves path { stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; opacity: .8; }

/* sketched globe */
.clg-globe {
    position: absolute;
    bottom: -7%; left: -8%;
    width: 32%;
    z-index: 3;
    opacity: .55;
}
.clg-globe svg { width: 100%; }
.clg-globe path, .clg-globe circle, .clg-globe ellipse {
    stroke: #6b7a80;
    stroke-width: 1.4;
}

/* faded passport stamp on the edge */
.clg-passport {
    position: absolute;
    top: 42%; left: -4%;
    z-index: 0;
    font-family: var(--font-mono);
    font-size: 2.6cqw;
    font-weight: 700;
    letter-spacing: .2em;
    color: rgba(107, 122, 128, .55);
    border: 2px dashed rgba(107, 122, 128, .45);
    border-radius: 1.4cqw;
    padding: 2cqw 3cqw;
    transform: rotate(-14deg);
}

/* assemble-on-scroll fallback (no GSAP / CSS-only) */
.collage.css-anim [data-piece] {
    opacity: 0;
    translate: 0 34px;
    transition: opacity .8s var(--ease), translate .8s var(--ease);
}
.collage.css-anim [data-piece]:nth-child(2) { transition-delay: .1s; }
.collage.css-anim [data-piece]:nth-child(3) { transition-delay: .2s; }
.collage.css-anim [data-piece]:nth-child(4) { transition-delay: .3s; }
.collage.css-anim [data-piece]:nth-child(5) { transition-delay: .4s; }
.collage.css-anim [data-piece]:nth-child(6) { transition-delay: .5s; }
.collage.css-anim [data-piece]:nth-child(7) { transition-delay: .6s; }
.collage.css-anim.in [data-piece] { opacity: 1; translate: 0 0; }

/* =========================================================
   JOURNAL — WHAT WE DO
   ========================================================= */
.journal {
    position: relative;
    padding: 7rem 0;
}
.journal .container { position: relative; }
.journal-route {
    position: absolute;
    left: 3.15rem;
    top: 16rem; bottom: 4rem;
    width: 4px;
    pointer-events: none;
}
.journal-route svg { width: 100%; height: 100%; }
.jr-line {
    stroke: var(--accent);
    stroke-width: 2;
    stroke-dasharray: 5 8;
    opacity: .55;
}
.journal-list { display: flex; flex-direction: column; gap: 4.5rem; }
.journal-entry {
    display: grid;
    grid-template-columns: 120px 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: center;
}
.journal-entry:nth-child(even) .je-media { order: -1; grid-column: 2; }
.journal-entry:nth-child(even) .je-body { grid-column: 3; }
.journal-entry:nth-child(even) .je-meta { order: -2; }
.je-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    align-self: start;
    padding-top: .4rem;
}
.je-no {
    position: relative;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ink);
    background: var(--paper);
    border: 2px solid var(--accent);
    border-radius: 50%;
    width: 64px; height: 64px;
    display: grid;
    place-items: center;
    letter-spacing: 0;
}
.je-body h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); margin-bottom: .9rem; }
.je-body p { color: var(--muted); }
.je-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-2);
    aspect-ratio: 4 / 3;
    transform: rotate(1deg);
    transition: transform .6s var(--ease), box-shadow .6s var(--ease);
}
.journal-entry:nth-child(even) .je-media { transform: rotate(-1deg); }
.journal-entry:hover .je-media { transform: rotate(0) scale(1.015); box-shadow: var(--shadow-3); }
.je-media img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   BOARDING PASS — BREAKOUT CTA
   ========================================================= */
.bpass { padding: 5.5rem 0; }
.bpass-card {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-2);
    overflow: hidden;
}
.bp-main { padding: clamp(2.2rem, 4vw, 3.6rem); }
.bp-route {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--muted);
    margin-bottom: 1.6rem;
}
.bp-city {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: .12em;
}
.bp-path { flex: 0 1 220px; }
.bp-path svg { width: 100%; height: 24px; overflow: visible; }
.bp-dash {
    stroke: var(--accent);
    stroke-width: 1.8;
    stroke-dasharray: 4 6;
}
.bp-path circle { fill: var(--accent); }
.bpass-card h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.bp-main p { color: var(--muted); max-width: 520px; }
.btn-row { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }
.bp-stub {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.6rem 1.6rem 1.2rem;
    border-left: 2px dashed rgba(8, 141, 165, .3);
    background: linear-gradient(160deg, rgba(8, 141, 165, .05), rgba(235, 176, 65, .06));
}
.bp-stub::before, .bp-stub::after {
    content: "";
    position: absolute;
    left: -12px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--paper);
}
.bp-stub::before { top: -11px; }
.bp-stub::after { bottom: -11px; }
.bpass .bp-stub::before, .bpass .bp-stub::after { background: var(--paper); }
.bp-photo {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    flex: 1;
}
.bp-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.bp-stub .photo-note { margin: .9rem 0 .6rem; }
.bp-barcode {
    height: 34px;
    border-radius: 4px;
    background: repeating-linear-gradient(
        90deg,
        var(--ink) 0 2px, transparent 2px 5px,
        var(--ink) 5px 8px, transparent 8px 10px,
        var(--ink) 10px 11px, transparent 11px 16px
    );
    opacity: .8;
}

/* =========================================================
   CINEMA — HORIZONTAL GALLERY
   ========================================================= */
.cinema {
    position: relative;
    background: var(--ink);
    padding: 6.5rem 0 4.5rem;
    overflow: hidden;
}
.cinema .eyebrow { color: var(--secondary); }
.cinema-track-wrap {
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 max(4vw, calc((100vw - 1240px) / 2)) 1.5rem;
}
.cinema-track-wrap::-webkit-scrollbar { display: none; }
.cinema-track {
    display: flex;
    gap: 1.4rem;
    width: max-content;
}
.cine-tile {
    position: relative;
    flex: none;
    width: clamp(300px, 30vw, 420px);
    aspect-ratio: 3 / 4;
    border-radius: 22px;
    overflow: hidden;
    scroll-snap-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
    isolation: isolate;
}
.cine-tile:nth-child(even) { margin-top: 2.2rem; }
.ct-img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease), filter 1s var(--ease);
    z-index: -1;
}
.cine-tile:hover .ct-img { transform: scale(1.07); filter: brightness(1.06); }
.cine-tile::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(4, 34, 43, .92) 0%, rgba(4, 34, 43, .35) 45%, rgba(4, 34, 43, .08) 70%);
    z-index: 0;
    transition: opacity .5s var(--ease);
}
.ct-body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 1;
    padding: 1.7rem 1.6rem;
    color: var(--white);
    transform: translateY(8px);
    transition: transform .5s var(--ease);
}
.cine-tile:hover .ct-body { transform: translateY(0); }
.ct-icon {
    display: inline-grid;
    place-items: center;
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    color: var(--accent);
    margin-bottom: .9rem;
    background: rgba(4, 34, 43, .4);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.ct-icon svg { width: 20px; height: 20px; }
.ct-body h3 { color: var(--white); font-size: 1.35rem; margin-bottom: .5rem; }
.ct-body p {
    font-size: .9rem;
    color: rgba(255, 255, 255, .82);
    line-height: 1.55;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .6s var(--ease), opacity .5s var(--ease) .05s;
}
.cine-tile:hover .ct-body p,
.cine-tile:focus-visible .ct-body p { max-height: 200px; opacity: 1; }
.ct-no {
    position: absolute;
    top: 1.2rem; right: 1.3rem;
    z-index: 1;
    color: var(--accent);
    font-weight: 700;
    font-size: .8rem;
    border: 1px dashed rgba(235, 176, 65, .6);
    border-radius: 999px;
    padding: .3rem .7rem;
    background: rgba(4, 34, 43, .35);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.cinema-progress {
    width: min(320px, 60vw);
    height: 2px;
    margin: 1.6rem auto 0;
    background: rgba(255, 255, 255, .15);
    border-radius: 2px;
    overflow: hidden;
}
.cinema-progress span {
    display: block;
    width: 18%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: transform .2s linear;
}

/* =========================================================
   TAGWALL — BENEFITS
   ========================================================= */
.tagwall { padding: 7rem 0; }
.tagwall .section-head { margin-inline: auto; text-align: center; }
.tagwall .tag-cloud { justify-content: center; max-width: 980px; margin-inline: auto; }
.tagwall-alt { background: var(--paper-2); }

/* =========================================================
   CONFERENCE — FULL-BLEED IMMERSIVE
   ========================================================= */
.conference {
    position: relative;
    padding: 9rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}
.conference::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(rgba(4, 34, 43, .82), rgba(8, 141, 165, .68));
}
.conf-frame {
    position: absolute;
    inset: 1.4rem;
    border: 1px dashed rgba(235, 176, 65, .5);
    border-radius: 18px;
    pointer-events: none;
    z-index: 1;
}
.conf-inner { position: relative; z-index: 2; max-width: 860px; }
.conference h2 { color: var(--white); margin-bottom: 1.4rem; }
.conference .script { color: var(--secondary); }
.conference p {
    color: rgba(255, 255, 255, .88);
    font-size: 1.12rem;
    margin-bottom: 2.4rem;
}
.conf-route { margin: 0 auto 1.2rem; max-width: 640px; }
.conf-route svg { width: 100%; height: 44px; overflow: visible; }
.cr-line {
    stroke: var(--accent);
    stroke-width: 1.6;
    stroke-dasharray: 5 7;
    opacity: .9;
}
.destinations {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .8rem;
    margin-bottom: 2.6rem;
}
.destinations span {
    font-family: var(--font-mono);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: .6rem 1.2rem;
    border: 1.5px dashed rgba(235, 176, 65, .75);
    border-radius: 999px;
    background: rgba(4, 34, 43, .35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transform: rotate(-.6deg);
    transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.destinations span:nth-child(even) { transform: rotate(.8deg); }
.destinations span:hover {
    transform: rotate(0) translateY(-3px);
    background: rgba(235, 176, 65, .18);
    border-color: var(--accent);
}

/* =========================================================
   STORIES — EDITORIAL QUOTES
   ========================================================= */
.stories { padding: 7rem 0 6rem; }
.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.5rem, 3vw, 3rem);
    align-items: start;
}
.story {
    position: relative;
    padding: 2.6rem 0 0;
    border-top: 1px solid var(--line);
}
.story:nth-child(2) { margin-top: 2.6rem; }
.story:nth-child(3) { margin-top: 5.2rem; }
.story::before {
    content: "“";
    position: absolute;
    top: .8rem; left: -.4rem;
    font-family: var(--font-display);
    font-size: 5.5rem;
    line-height: 1;
    color: var(--accent);
    opacity: .85;
    pointer-events: none;
}
.story p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    line-height: 1.5;
    color: var(--ink);
    padding-top: 2.2rem;
}
.who {
    display: flex;
    align-items: center;
    gap: .8rem;
    margin-top: 1.4rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}
.avatar {
    display: grid;
    place-items: center;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-style: italic;
    border: 2px solid var(--accent);
}

/* =========================================================
   VALUES — MARQUEE
   ========================================================= */
.values { padding: 4rem 0 0; overflow: hidden; }
.values .section-head { text-align: center; margin-inline: auto; }
.values-marquee {
    margin-top: 3rem;
    padding: 2.2rem 0;
    border-top: 1px dashed rgba(235, 176, 65, .5);
    border-bottom: 1px dashed rgba(235, 176, 65, .5);
    overflow: hidden;
    white-space: nowrap;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.vm-track {
    display: inline-flex;
    align-items: center;
    animation: marquee 36s linear infinite;
    will-change: transform;
}
.values-marquee:hover .vm-track { animation-play-state: paused; }
.vm-track span {
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    color: var(--ink);
    padding: 0 1.6rem;
    position: relative;
}
.vm-track span::after {
    content: "";
    position: absolute;
    right: -5px; top: 50%;
    width: 9px; height: 9px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--accent);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* =========================================================
   POSTCARDS
   ========================================================= */
.postcards { padding: 6.5rem 0 7rem; background: var(--paper-2); overflow: hidden; }
.postcards .section-head { text-align: center; margin-inline: auto; }
.postcards-row {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    padding: 1.5rem max(4vw, calc((100vw - 1300px) / 2)) 2rem;
}
.postcard {
    position: relative;
    flex: 1 1 0;
    max-width: 250px;
    background: var(--white);
    padding: .8rem .8rem 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-1);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease), z-index 0s;
}
.postcard:nth-child(1) { transform: rotate(-3.5deg) translateY(.8rem); }
.postcard:nth-child(2) { transform: rotate(2deg); }
.postcard:nth-child(3) { transform: rotate(-1.4deg) translateY(1.2rem); }
.postcard:nth-child(4) { transform: rotate(2.8deg); }
.postcard:nth-child(5) { transform: rotate(-2.2deg) translateY(.6rem); }
.postcard:hover {
    transform: rotate(0) translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-2);
    z-index: 4;
}
.pc-img {
    height: 190px;
    border-radius: 6px;
    background-size: cover;
    background-position: center;
}
.pc-caption {
    display: block;
    text-align: center;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.02rem;
    color: var(--ink);
    padding-top: .7rem;
}
.pc-stamp {
    position: absolute;
    top: 1.1rem; right: 1.1rem;
    width: 34px; height: 40px;
    border: 1.5px dashed var(--accent);
    border-radius: 4px;
    background:
        radial-gradient(circle at center, rgba(235, 176, 65, .35) 0 30%, transparent 32%),
        rgba(247, 245, 239, .82);
    transform: rotate(6deg);
}

/* =========================================================
   FINALE — DARK CTA
   ========================================================= */
.finale {
    position: relative;
    background: var(--ink);
    color: var(--white);
    padding: 7.5rem 0;
    overflow: hidden;
}
.finale-contours circle { stroke: rgba(1, 175, 202, .14); stroke-width: 1; stroke-dasharray: 4 7; }
.finale-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}
.finale h2 { color: var(--white); margin-bottom: 1.3rem; }
.finale .script { color: var(--secondary); }
.finale-body p { color: rgba(255, 255, 255, .82); max-width: 560px; }
.finale-media { position: relative; }
.finale-media figure {
    border-radius: var(--radius);
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: var(--shadow-3);
    border: 1px solid rgba(255, 255, 255, .15);
}
.finale-media img { width: 100%; object-fit: cover; }
.finale-media .photo-note {
    position: absolute;
    bottom: -1.4rem; left: 1.2rem;
    color: rgba(255, 255, 255, .75);
}
.finale .btn-white:hover { background: var(--white); transform: translateY(-2px); }

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
    position: relative;
    min-height: 72svh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-h) + 5rem) 0 4.5rem;
    color: var(--white);
    overflow: hidden;
    background: var(--ink);
}
.ph-media { position: absolute; inset: -8% 0; z-index: 0; }
.ph-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
    content: "";
    position: absolute; inset: 0;
    z-index: 1;
    background:
        linear-gradient(to top, rgba(4, 34, 43, .94) 0%, rgba(4, 34, 43, .58) 55%, rgba(4, 34, 43, .42) 100%);
}
.ph-inner { position: relative; z-index: 2; max-width: 880px; }
.ph-coords {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 1.4rem;
}
.page-hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    margin-bottom: 1.2rem;
}
.page-hero h1 .script { color: var(--secondary); display: block; font-size: .92em; margin-top: .15em; }
.page-hero p { font-size: 1.15rem; color: rgba(255, 255, 255, .88); max-width: 640px; }

/* =========================================================
   CHAPTERS — ABOUT STORY
   ========================================================= */
.chapters { padding: 7rem 0 3rem; }
.chapter {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
    margin-bottom: 6.5rem;
}
.chapter.flip .ch-body { order: 2; }
.chapter.flip .ch-photos { order: 1; }
.ch-no {
    display: inline-block;
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.chapter h2 { margin-bottom: 1.4rem; }
.chapter h2 .script { display: block; font-size: .72em; margin-top: .3em; }
.ch-body p { margin-bottom: 1.1rem; }
.ch-photos {
    position: relative;
    min-height: 460px;
}
.ch-photos figure {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-2);
}
.ch-photos img { width: 100%; height: 100%; object-fit: cover; }
.chp-1 {
    top: 0; left: 0;
    width: 72%; height: 68%;
    transform: rotate(-1.6deg);
    z-index: 1;
}
.chp-2 {
    bottom: 0; right: 0;
    width: 56%; height: 52%;
    transform: rotate(2.2deg);
    z-index: 2;
    border: 5px solid var(--paper);
}
.ch-photos .passport-stamp {
    position: absolute;
    top: -1.2rem; right: 6%;
    z-index: 3;
    transform: rotate(5deg);
}

/* =========================================================
   STATS BAND
   ========================================================= */
.stats-band {
    position: relative;
    padding: 6.5rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}
.stats-band::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(rgba(4, 34, 43, .85), rgba(4, 34, 43, .78));
}
.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}
.stat { position: relative; padding: 1rem 0; }
.stat + .stat::before {
    content: "";
    position: absolute;
    left: -1rem; top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(transparent, rgba(235, 176, 65, .6), transparent);
}
.stat .num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.6rem);
    font-weight: 550;
    color: var(--white);
    line-height: 1.05;
}
.stat .lbl {
    display: block;
    margin-top: .5rem;
    font-family: var(--font-mono);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
}

/* =========================================================
   MANIFEST — ABOUT PROSE BLOCKS
   ========================================================= */
.manifest { padding: 6.5rem 0; }
.manifest-alt { background: var(--paper-2); }
.manifest-block {
    max-width: 820px;
    margin-inline: auto;
    margin-bottom: 4.5rem;
}
.manifest-block:last-child { margin-bottom: 0; }
.manifest-block h2 {
    display: flex;
    align-items: baseline;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 1.3rem;
}
.manifest-block > p { margin-bottom: 1.1rem; }

/* =========================================================
   MOSAIC — BENEFITS BENTO
   ========================================================= */
.mosaic { padding: 7rem 0; }
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.4rem;
}
.mo-card {
    position: relative;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.mo-wide { grid-column: span 4; }
.mo-tall { grid-row: span 2; }
.mo-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-2); }
.mo-media { height: 200px; overflow: hidden; flex: none; }
.mo-wide .mo-media { height: 240px; }
.mo-tall .mo-media { height: 42%; min-height: 240px; }
.mo-media img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease);
}
.mo-card:hover .mo-media img { transform: scale(1.06); }
.mo-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: 1.6rem 1.6rem 1.7rem;
}
.mo-body .lug-tag { margin: -2.6rem 0 1rem; background: var(--white); box-shadow: var(--shadow-1); position: relative; z-index: 2; }
.mo-body h3 { margin-bottom: .6rem; }
.mo-body p { font-size: .93rem; color: var(--muted); line-height: 1.6; }
.mo-body .p-link { margin-top: auto; padding-top: 1rem; }

/* =========================================================
   CINE BAND — PHILOSOPHY
   ========================================================= */
.cine-band {
    position: relative;
    padding: 8.5rem 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}
.cine-band::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(rgba(4, 34, 43, .68), rgba(4, 34, 43, .78));
}
.cine-band-inner { position: relative; max-width: 800px; }
.band-script {
    display: block;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.2;
    margin-bottom: 1.4rem;
    text-wrap: balance;
}
.band-sub {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: 2.2rem;
    text-wrap: balance;
}

/* =========================================================
   ROUTE STEPS — JOIN
   ========================================================= */
.route-steps { padding: 7rem 0 5rem; }
.route-steps .section-head { text-align: center; margin-inline: auto; }
.steps-wrap { position: relative; padding-top: 1rem; }
.steps-route {
    position: absolute;
    left: 0; right: 0; top: 0;
    height: 120px;
    pointer-events: none;
}
.steps-route svg { width: 100%; height: 100%; }
.sr-line {
    stroke: var(--accent);
    stroke-width: 1.8;
    stroke-dasharray: 5 8;
    opacity: .7;
}
.steps-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}
.step { text-align: center; padding: 0 1rem; }
.step:nth-child(2) { margin-top: 2.5rem; }
.num-circle {
    position: relative;
    display: grid;
    place-items: center;
    width: 76px; height: 76px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.9rem;
    font-weight: 550;
    box-shadow: 0 14px 34px rgba(8, 141, 165, .4);
}
.num-circle::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1.5px dashed var(--accent);
    animation: spinSlow 24s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }
.step h3 { margin-bottom: .6rem; }
.step p { color: var(--muted); font-size: .98rem; }

/* =========================================================
   TIERS — FARE CLASSES
   ========================================================= */
.tiers { padding: 6rem 0 7rem; background: var(--paper-2); }
.tiers .section-head { text-align: center; margin-inline: auto; }
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
    align-items: stretch;
}
.tier {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 22px;
    padding: 2.4rem 2.2rem;
    box-shadow: var(--shadow-1);
    transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.tier:hover { transform: translateY(-8px); box-shadow: var(--shadow-2); }
.tier-head {
    padding-bottom: 1.4rem;
    margin-bottom: 1.4rem;
    border-bottom: 2px dashed var(--line);
    position: relative;
}
.tier-head::before, .tier-head::after {
    content: "";
    position: absolute;
    bottom: -10px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--paper-2);
}
.tier-head::before { left: -2.85rem; }
.tier-head::after { right: -2.85rem; }
.tier-class {
    display: inline-block;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: .7rem;
}
.tier h3 { font-size: 1.7rem; }
.tier-sub { color: var(--muted); font-size: .95rem; margin-top: .4rem; }
.price {
    font-family: var(--font-display);
    font-size: 3.1rem;
    font-weight: 550;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 1.4rem;
}
.price small {
    font-family: var(--font-mono);
    font-size: .78rem;
    letter-spacing: .08em;
    color: var(--muted);
}
.tier ul { flex: 1; margin-bottom: 1.8rem; }
.tier ul li {
    position: relative;
    padding: .5rem 0 .5rem 1.7rem;
    font-size: .96rem;
    border-bottom: 1px solid rgba(8, 141, 165, .08);
}
.tier ul li::before {
    content: "";
    position: absolute;
    left: .2rem; top: 1rem;
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 2px solid var(--accent);
}
.tier .btn { width: 100%; }
.tier-featured {
    background: var(--ink);
    transform: scale(1.03);
    box-shadow: var(--shadow-2);
    z-index: 2;
}
.tier-featured:hover { transform: scale(1.03) translateY(-8px); }
.tier-featured h3, .tier-featured .price { color: var(--white); }
.tier-featured .tier-sub { color: rgba(255, 255, 255, .7); }
.tier-featured ul li { color: rgba(255, 255, 255, .88); border-color: rgba(255, 255, 255, .1); }
.tier-featured .tier-head { border-color: rgba(1, 175, 202, .35); }
.tier-featured .tier-head::before, .tier-featured .tier-head::after { background: var(--paper-2); }
.ribbon {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%) rotate(-2deg);
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    background: var(--accent);
    padding: .45rem 1.3rem;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(235, 176, 65, .4);
}
.form-note {
    text-align: center;
    font-size: .9rem;
    color: var(--muted);
    margin-top: 2.4rem;
    font-style: italic;
}

/* =========================================================
   FORMS — PASSPORT APPLICATION
   ========================================================= */
.signup { padding: 7rem 0; }
.signup .section-head { text-align: center; margin-inline: auto; }
.form-card {
    max-width: 760px;
    margin-inline: auto;
    background: var(--white);
    border-radius: 24px;
    padding: 0 0 2.4rem;
    box-shadow: var(--shadow-2);
    overflow: hidden;
}
.fc-head {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.1rem 2.4rem;
    margin-bottom: 2.2rem;
    background: var(--ink);
    color: var(--accent);
    font-weight: 700;
}
.fc-dots {
    flex: 1;
    height: 1px;
    background-image: linear-gradient(90deg, rgba(235, 176, 65, .6) 33%, transparent 0);
    background-size: 8px 1px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1.6rem;
    padding: 0 2.4rem;
}
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-family: var(--font-mono);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .55rem;
}
.form-field input,
.form-field select,
.form-field textarea {
    font: inherit;
    color: var(--text);
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: .85rem 1.1rem;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #9AACB0; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(1, 175, 202, .14);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-submit { text-align: center; margin-top: 2rem; }
.form-card .form-note { margin-top: 1.2rem; padding: 0 2.4rem; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { padding: 6.5rem 0; }
.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 2rem;
    align-items: stretch;
}
.contact-info-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: var(--white);
    box-shadow: var(--shadow-2);
    min-height: 460px;
    display: flex;
}
.contact-info-card::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(4, 34, 43, .88), rgba(8, 141, 165, .72));
}
.cic-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.4rem;
    width: 100%;
}
.contact-info-card h3 { color: var(--white); font-size: 1.7rem; margin-bottom: .8rem; }
.contact-info-card > .cic-inner > p { color: rgba(255, 255, 255, .85); margin-bottom: 1.8rem; }
.contact-line {
    display: flex;
    align-items: center;
    gap: .9rem;
    padding: .75rem 0;
    border-top: 1px dashed rgba(255, 255, 255, .25);
    font-size: .98rem;
}
.c-icon { font-size: 1.1rem; }
.cic-stamp {
    position: absolute;
    top: 2rem; right: 2rem;
    color: var(--accent);
    border-color: var(--accent);
}
.contact-form { max-width: none; margin: 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    position: relative;
    background: var(--ink);
    color: rgba(255, 255, 255, .85);
    padding-top: 1rem;
    overflow: hidden;
}
.footer-route { position: relative; height: 120px; }
.footer-route > svg { width: 100%; height: 100%; overflow: visible; }
.fr-line {
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-dasharray: 5 8;
    opacity: .55;
}
.fr-plane {
    position: absolute;
    top: 0; left: 0;
    width: 22px; height: 22px;
    margin: -11px 0 0 -11px;
    color: var(--accent);
    pointer-events: none;
    opacity: 0;
    will-change: transform;
    filter: drop-shadow(0 3px 5px rgba(4, 34, 43, .35));
}
.fr-plane.flying { opacity: 1; }
.fr-plane svg { width: 100%; height: 100%; display: block; fill: currentColor; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 2.5rem 0 4rem;
}
.footer-brand > p {
    margin-top: 1.4rem;
    font-size: .95rem;
    color: rgba(255, 255, 255, .7);
    max-width: 320px;
}
.footer-motto {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--secondary);
    margin-top: 1rem;
}
.footer-col h4 {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-family: var(--font-mono);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.3rem;
}
.tag-hole {
    width: 8px; height: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    flex: none;
}
.footer-col ul li { margin-bottom: .55rem; }
.footer-col a {
    color: rgba(255, 255, 255, .75);
    font-size: .96rem;
    transition: color .3s var(--ease), padding-left .3s var(--ease);
}
.footer-col a:hover { color: var(--secondary); padding-left: .4rem; }
.footer-cta-col > p { font-size: .95rem; color: rgba(255, 255, 255, .7); margin-bottom: 1.4rem; }
.footer-bottom { border-top: 1px solid var(--line-ink); }
.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: .6rem;
    padding: 1.4rem 0;
    font-size: .85rem;
    color: rgba(255, 255, 255, .55);
}
.footer-fineprint { font-family: var(--font-display); font-style: italic; }
.footer-fineprint em { color: var(--accent); }

/* =========================================================
   REVEAL SYSTEM (JS-driven; graceful without JS)
   ========================================================= */
.js .reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .9s var(--ease) var(--stagger, 0s),
                transform .9s var(--ease) var(--stagger, 0s);
    will-change: opacity, transform;
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1120px) {
    .ticket-strip { grid-template-columns: repeat(3, 1fr); }
    .journal-entry { grid-template-columns: 90px 1fr 1fr; }
    .journal-route { display: none; }
    .mosaic-grid { grid-template-columns: repeat(2, 1fr); }
    .mo-card, .mo-wide { grid-column: span 1; }
    .mo-tall { grid-row: auto; }
    .mo-tall .mo-media { height: 200px; min-height: 0; }
}

@media (max-width: 960px) {
    .hero-layout { grid-template-columns: 1fr; gap: 3rem; }
    .hero-panel { max-width: 620px; }
    .hero { padding-bottom: 8rem; }
    .stamps-row { grid-template-columns: repeat(2, 1fr); }
    .stories-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; }
    .story:nth-child(2), .story:nth-child(3) { margin-top: 0; }
    .finale-grid, .welcome-grid, .chapter { grid-template-columns: 1fr; }
    .chapter.flip .ch-body { order: 0; }
    .chapter.flip .ch-photos { order: 1; }
    .ch-photos { min-height: 400px; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-card { min-height: 380px; }
    .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; gap: 2rem; }
    .tier-featured { transform: none; }
    .tier-featured:hover { transform: translateY(-8px); }
    .steps-route { display: none; }
    .step:nth-child(2) { margin-top: 0; }
}

@media (max-width: 860px) {
    :root { --header-h: 68px; }

    /* Top bar collapses into a traditional hamburger dropdown */
    .nav-toggle { display: flex; }
    .site-nav {
        position: absolute;
        top: 100%; left: 0; right: 0;
        max-height: 0;
        overflow: hidden;
        background: rgba(4, 34, 43, .96);
        backdrop-filter: blur(20px) saturate(1.4);
        -webkit-backdrop-filter: blur(20px) saturate(1.4);
        border-bottom: 1px solid rgba(1, 175, 202, .25);
        transition: max-height .45s var(--ease);
    }
    .site-nav.open { max-height: 70vh; overflow-y: auto; }
    .site-nav ul {
        flex-direction: column;
        gap: 0;
        padding: .5rem 6vw 1.4rem;
    }
    .site-nav ul li { border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .site-nav a { display: flex; width: 100%; padding: .95rem .3rem; border-radius: 0; }
    .site-nav a:hover { background: transparent; padding-left: .6rem; }
    .nav-cta-mobile { display: block; border-bottom: none; padding: 1.4rem 0 .4rem; }
    .nav-cta-mobile .btn { width: 100%; }
    .header-actions .btn-nav { display: none; }
    .site-header { padding: .8rem 0; }
    .site-header.scrolled { padding: .55rem 0; }
    .brand-mark { width: 42px; height: 42px; }
    .brand-logo { width: 31px; height: 31px; }

    body { font-size: 1rem; }

    /* Hero — full-screen immersive */
    .hero { min-height: 100svh; padding-top: calc(var(--header-h) + 3rem); }
    .hero-scroll { display: none; }
    .hero-video { transform: rotate(0); border-radius: 20px; }
    .play-circle { width: 72px; height: 72px; }
    .play-circle svg { width: 27px; height: 27px; }

    /* Ticket strip — swipeable stories */
    .departures { margin-top: -4rem; }
    .departures .container { width: 100vw; padding: 0 4vw; }
    .ticket-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: .5rem .2rem 1.4rem;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .ticket-strip::-webkit-scrollbar { display: none; }
    .mini-card { flex: 0 0 82%; max-width: 340px; min-height: 260px; scroll-snap-align: center; }

    .stamps-row { grid-template-columns: 1fr; gap: 1.1rem; }
    .stamp-card,
    .stamp-card:nth-child(2), .stamp-card:nth-child(3), .stamp-card:nth-child(4) {
        transform: rotate(0) translateY(0);
        text-align: left;
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: .3rem 1rem;
        padding: 1.4rem 1.3rem;
    }
    .st-emoji { grid-row: 1 / 3; margin: 0; }

    .collage { margin: 0 2% 2.5rem; }
    .clg-globe { bottom: -6%; left: -10%; }

    /* Journal — stacked travel journal cards */
    .journal { padding: 5rem 0; }
    .journal-list { gap: 2.6rem; }
    .journal-entry {
        grid-template-columns: 1fr;
        gap: 0;
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: var(--shadow-1);
    }
    .journal-entry:nth-child(even) .je-media { order: -1; grid-column: auto; }
    .journal-entry:nth-child(even) .je-body { grid-column: auto; }
    .je-media {
        order: -1;
        border-radius: 0;
        transform: none !important;
        box-shadow: none;
        aspect-ratio: 16 / 9;
    }
    .je-meta,
    .journal-entry:nth-child(even) .je-meta {
        order: 0;
        flex-direction: row;
        align-items: center;
        padding: 1.2rem 1.4rem 0;
    }
    .je-no { width: 46px; height: 46px; font-size: 1.05rem; border-width: 1.5px; }
    .je-body { padding: .9rem 1.4rem 1.6rem; }

    .bpass-card { grid-template-columns: 1fr; }
    .bp-stub {
        border-left: 0;
        border-top: 2px dashed rgba(8, 141, 165, .3);
    }
    .bp-stub::before, .bp-stub::after {
        left: auto; top: -11px; bottom: auto;
        width: 22px; height: 22px;
    }
    .bp-stub::before { left: -11px; }
    .bp-stub::after { right: -11px; }
    .bp-photo img { min-height: 200px; }

    .cine-tile { width: 78vw; max-width: 340px; }
    .cine-tile:nth-child(even) { margin-top: 0; }
    .ct-body p { max-height: 200px; opacity: 1; } /* always show copy on touch */

    .conference, .cine-band, .stats-band { background-attachment: scroll; }
    .conference { padding: 6rem 0; }
    .conf-frame { inset: .9rem; }

    .postcards-row {
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .postcards-row::-webkit-scrollbar { display: none; }
    .postcard { flex: 0 0 62%; max-width: 240px; scroll-snap-align: center; }

    .stats-grid { grid-template-columns: 1fr 1fr; gap: 2.4rem 1rem; }
    .stat + .stat::before { display: none; }

    .form-grid { grid-template-columns: 1fr; padding: 0 1.4rem; }
    .fc-head { padding: 1rem 1.4rem; gap: .8rem; }
    .form-card .form-note { padding: 0 1.4rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; padding-bottom: 2.5rem; }
    .footer-bottom-inner { justify-content: center; text-align: center; }

    .btn { padding: .95rem 1.8rem; }
    .btn-row .btn { flex: 1 1 auto; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: clamp(2.4rem, 11vw, 3rem); }
    .hero-sub { font-size: 1.02rem; }
    .destinations span { font-size: .72rem; padding: .5rem .9rem; }
    .mini-card { flex-basis: 88%; }
    .welcome, .tagwall, .stories { padding: 4.5rem 0; }
    .mosaic { padding: 5rem 0; }
    .mosaic-grid { grid-template-columns: 1fr; }
    .page-hero { min-height: 62svh; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .js .reveal { opacity: 1; transform: none; }
    .vm-track { animation: none; flex-wrap: wrap; white-space: normal; justify-content: center; }
    .hero-bg { animation: none; }
}
