:root {
    --bg: #0a0a0a;
    --bg-elevated: #111111;
    --surface: #1a1a1a;
    --text: #ffffff;
    --text-muted: #8a8a8a;
    --text-dim: #555555;
    --amber: #ee4037;
    --amber-soft: rgba(238, 64, 55, 0.12);
    --amber-glow: rgba(238, 64, 55, 0.25);
    --border: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.12);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: auto;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--amber);
    color: var(--bg);
}

a { cursor: none; }
button { cursor: none; }

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    width: 0%;
    background: linear-gradient(90deg, var(--amber), #ff7043);
    z-index: 10000;
    transition: none;
}

.cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--amber);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
    mix-blend-mode: difference;
}

.cursor-dot.hovering {
    width: 40px;
    height: 40px;
    background: rgba(238, 64, 55, 0.15);
    border: 1px solid var(--amber);
}

.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(238, 64, 55, 0.3);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out), border-color 0.35s, opacity 0.35s;
}

.cursor-ring.hovering {
    width: 60px;
    height: 60px;
    border-color: rgba(238, 64, 55, 0.1);
    opacity: 0.5;
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 48px;
    transition: background 0.5s, padding 0.5s, backdrop-filter 0.5s;
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 18px 48px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-hamburger {
    background: none;
    border: none;
    width: 32px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 12px 6px;
    box-sizing: content-box;
    -webkit-tap-highlight-color: transparent;
}

.nav-hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--text);
    transition: all 0.4s var(--ease-out);
    transform-origin: center;
}

.nav-hamburger.active span:first-child {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav-hamburger.active span:last-child {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 300;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 8px;
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-logo:hover {
    color: var(--amber);
}

.nav-reserve {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: var(--text);
    text-decoration: none;
    padding: 10px 28px;
    border: 1px solid var(--border-light);
    transition: all 0.4s var(--ease-out);
}

.nav-reserve:hover {
    border-color: var(--amber);
    color: var(--amber);
    background: var(--amber-soft);
}

.fullscreen-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s, visibility 0s 0.5s;
}

.fullscreen-menu.open {
    pointer-events: all;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.5s, visibility 0s 0s;
}

.menu-bg {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.97);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.6s var(--ease-out);
}

.fullscreen-menu.open .menu-bg {
    transform: scaleY(1);
}

.menu-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 80px 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.menu-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-link {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 6px;
    color: var(--text);
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s, transform 0.5s var(--ease-out), color 0.3s;
}

.fullscreen-menu.open .menu-link {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.open .menu-link:nth-child(1) { transition-delay: 0.15s; }
.fullscreen-menu.open .menu-link:nth-child(2) { transition-delay: 0.2s; }
.fullscreen-menu.open .menu-link:nth-child(3) { transition-delay: 0.25s; }
.fullscreen-menu.open .menu-link:nth-child(4) { transition-delay: 0.3s; }
.fullscreen-menu.open .menu-link:nth-child(5) { transition-delay: 0.35s; }
.fullscreen-menu.open .menu-link:nth-child(6) { transition-delay: 0.4s; }

.menu-link::before {
    content: attr(data-index);
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--text-dim);
    font-weight: 300;
}

.menu-link:hover {
    color: var(--amber);
}

.menu-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: opacity 0.5s 0.4s;
}

.fullscreen-menu.open .menu-footer {
    opacity: 1;
}

.menu-info,
.menu-social {
    display: flex;
    gap: 32px;
}

.menu-info span,
.menu-social span {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.letterbox-top,
.letterbox-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 12vh;
    background: var(--bg);
    z-index: 10;
    transition: transform 1.2s var(--ease-out) 0.5s;
}

.letterbox-top {
    top: 0;
}

.letterbox-bottom {
    bottom: 0;
}

body.loaded .letterbox-top {
    transform: translateY(-100%);
}

body.loaded .letterbox-bottom {
    transform: translateY(100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: kenBurns 25s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, -1%); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.3) 0%,
        rgba(10, 10, 10, 0.5) 40%,
        rgba(10, 10, 10, 0.85) 100%
    );
    z-index: 2;
}

.hero-grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0.035;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: 0 80px;
    max-width: 1400px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideRight 0.8s var(--ease-out) 1.2s forwards;
}

.eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--amber);
}

.eyebrow-text {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--amber);
}

.hero-heading {
    font-family: var(--font-display);
    margin-bottom: 24px;
}

.heading-line {
    display: flex;
    gap: 16px;
    overflow: hidden;
}

.heading-word {
    display: inline-block;
    font-size: clamp(2.5rem, 5.5vw, 5.5rem);
    letter-spacing: 6px;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(100%);
    animation: wordReveal 0.9s var(--ease-out) forwards;
}

.heading-line:nth-child(1) .heading-word:nth-child(1) { animation-delay: 0.6s; }
.heading-line:nth-child(1) .heading-word:nth-child(2) { animation-delay: 0.7s; }
.heading-line:nth-child(1) .heading-word:nth-child(3) { animation-delay: 0.8s; }
.heading-line:nth-child(1) .heading-word:nth-child(4) { animation-delay: 0.9s; }
.heading-line:nth-child(2) .heading-word:nth-child(1) { animation-delay: 1.0s; }
.heading-line:nth-child(2) .heading-word:nth-child(2) { animation-delay: 1.1s; }

.heading-word.accent {
    color: var(--amber);
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.4s forwards;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 1.6s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: var(--amber);
    color: var(--bg);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    overflow: hidden;
    position: relative;
    transition: all 0.4s var(--ease-out);
}

.btn-primary .btn-arrow {
    transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-primary:hover {
    box-shadow: 0 8px 40px rgba(238, 64, 55, 0.35);
    transform: translateY(-2px);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 16px 36px;
    background: transparent;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35);
    transition: all 0.4s var(--ease-out);
}

.btn-ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
    transform: translateY(-2px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 2.2s forwards;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 1px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 2px;
    height: 8px;
    background: var(--amber);
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.hero-location {
    position: absolute;
    bottom: 40px;
    right: 48px;
    z-index: 6;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 2s forwards;
}

.hero-location span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--text-dim);
    font-weight: 300;
}

.image-marquee {
    padding: 24px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marqueeScroll 40s linear infinite;
}

.marquee-item {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.marquee-item img {
    width: 180px;
    height: 100px;
    object-fit: cover;
    display: block;
    filter: grayscale(100%) brightness(0.6);
    transition: filter 0.5s, transform 0.5s;
}

.marquee-item:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.05);
}

.marquee-item span {
    position: absolute;
    bottom: 8px;
    left: 8px;
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--text);
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.3s;
}

.marquee-item:hover span {
    opacity: 1;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.destinations {
    padding: 140px 0 0;
    overflow: visible;
}

.section-header {
    padding: 0 80px 80px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.section-index {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 4px;
    color: var(--amber);
    display: block;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 6px;
    line-height: 1;
}

.section-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 400px;
}

.horizontal-gallery {
    position: relative;
}

.gallery-track {
    display: flex;
    gap: 32px;
    position: sticky;
    top: 0;
    height: 100vh;
    align-items: center;
    padding: 0 80px;
    will-change: transform;
    overflow: visible;
}

.gallery-card {
    flex-shrink: 0;
    width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.5s var(--ease-out);
}

.gallery-card:hover {
    transform: translateY(-8px);
}

.card-image-wrap {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--ease-out);
}

.gallery-card:hover .card-image {
    transform: scale(1.08);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
}

.card-content {
    padding: 28px 0;
}

.card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--amber);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.card-location {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--amber);
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-link {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s, gap 0.3s;
}

.card-link:hover {
    color: var(--amber);
    gap: 14px;
}

.card-link span {
    transition: transform 0.3s;
}

.card-link:hover span {
    transform: translateX(4px);
}

.stats-ribbon {
    padding: 80px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-elevated);
}

.stats-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--amber);
    line-height: 1;
}

.stat-divider {
    width: 24px;
    height: 1px;
    background: var(--border-light);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.narrative {
    padding: 160px 80px;
    overflow: hidden;
}

.narrative-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.media-frame {
    position: relative;
    overflow: hidden;
}

.media-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    clip-path: inset(0 0 0 0);
    transition: clip-path 1.2s var(--ease-out);
}

.narrative-media[data-reveal]:not(.revealed) .media-image {
    clip-path: inset(0 100% 0 0);
}

.narrative-media.revealed .media-image {
    clip-path: inset(0 0 0 0);
}

.media-border {
    position: absolute;
    bottom: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--amber);
    opacity: 0.2;
    z-index: -1;
}

.narrative-text {
    padding: 20px 0;
}

.narrative-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 4px;
    line-height: 1.1;
    margin: 16px 0 40px;
}

.narrative-intro {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.narrative-intro:last-child {
    margin-bottom: 0;
}

.platforms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 80px 0;
}

.narrative-body {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.narrative-card {
    padding: 32px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    transition: all 0.5s var(--ease-out);
}

.narrative-card:hover {
    border-color: rgba(238, 64, 55, 0.3);
    background: var(--amber-soft);
    transform: translateX(8px);
}

.narrative-card-icon {
    color: var(--amber);
    margin-bottom: 16px;
}

.narrative-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.narrative-card p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.timeline-section {
    padding: 120px 80px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.timeline-header {
    text-align: center;
    margin-bottom: 80px;
}

.timeline-header .section-index {
    margin-bottom: 8px;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 60px;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, var(--amber), var(--border), transparent);
}

.timeline-item {
    position: relative;
    padding: 0 0 60px 40px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: start;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -49px;
    top: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--amber);
    box-shadow: 0 0 16px var(--amber-glow);
}

.timeline-year {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 4px;
    color: var(--amber);
    line-height: 1;
    min-width: 80px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.cinematic-quote {
    position: relative;
    padding: 160px 80px;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-bg {
    position: absolute;
    inset: -40px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.quote-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.88);
}

.quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
}

.quote-icon {
    color: var(--amber);
    margin-bottom: 32px;
}

.cinematic-quote blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    letter-spacing: 2px;
    line-height: 1.3;
    margin-bottom: 32px;
}

.quote-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.quote-line {
    width: 40px;
    height: 1px;
    background: var(--amber);
}

.cinematic-quote cite {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--amber);
}

.visionaries {
    padding: 140px 80px;
}

.visionaries-header {
    text-align: center;
    margin-bottom: 80px;
}

.visionaries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.visionary-card {
    text-align: center;
    transition: transform 0.5s var(--ease-out);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.visionary-image {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 28px;
    border-radius: 50%;
    overflow: hidden;
}

.visionary-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s;
}

.visionary-card:hover .visionary-placeholder {
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(238, 64, 55, 0.2);
}

.visionary-placeholder span {
    font-family: var(--font-display);
    font-size: 3rem;
    letter-spacing: 4px;
    color: var(--amber);
    opacity: 0.6;
}

.visionary-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(238, 64, 55, 0.1), transparent);
    transition: left 0.6s;
    border-radius: 50%;
}

.visionary-card:hover .visionary-shine {
    left: 100%;
}

.visionary-info {
    padding: 0 20px;
}

.visionary-role {
    display: inline-block;
    padding: 4px 16px;
    background: var(--amber);
    color: var(--bg);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.visionary-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.visionary-info p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.premiere {
    padding: 140px 80px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.premiere-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.premiere-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    letter-spacing: 4px;
    line-height: 1.1;
    margin: 16px 0 20px;
}

.premiere-sub {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.premiere-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-light);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    outline: none;
    transition: border-color 0.4s;
}

.form-field select {
    appearance: none;
    cursor: none;
}

.form-field select option {
    background: var(--bg);
    color: var(--text);
}

.form-field textarea {
    resize: vertical;
    min-height: 60px;
}

.form-field label {
    position: absolute;
    top: 14px;
    left: 0;
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s var(--ease-out);
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label {
    top: -14px;
    font-size: 0.6rem;
    color: var(--amber);
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--amber);
}

.form-wide {
    grid-column: 1 / -1;
}

.btn-submit {
    align-self: flex-start;
    cursor: none;
}

.footer {
    border-top: 1px solid var(--border);
    padding: 80px 80px 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 6px;
    margin-bottom: 8px;
}

.footer-tagline {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
    color: var(--amber);
}

.footer-col a,
.footer-col p {
    display: block;
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-muted);
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--text);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
}

.footer-bottom span {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-dim);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-dim);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--amber);
}

/* Opportunity Section */
.opportunity {
    padding: 140px 80px;
}

.opportunity-header {
    text-align: center;
    margin-bottom: 60px;
}

.opportunity-vision {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-muted);
    max-width: 600px;
    margin: 16px auto 0;
    text-align: center;
    line-height: 1.7;
}

.accent-text {
    color: var(--amber);
    font-weight: 400;
}

.opportunity-platforms {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.opportunity-block {
    padding: 40px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    transition: border-color 0.5s var(--ease-out);
}

.opportunity-block:hover {
    border-color: rgba(238, 64, 55, 0.2);
}

.opportunity-block-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--amber);
}

.opportunity-block p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}

.opportunity-block p:last-child {
    margin-bottom: 0;
}

.opportunity-cities {
    font-style: italic;
    color: var(--text-dim) !important;
}

.capital-strategy {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.capital-strategy > .opportunity-block-title {
    text-align: center;
    margin-bottom: 40px;
}

.capital-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.capital-card {
    padding: 32px;
    border: 1px solid var(--border);
    background: var(--bg-elevated);
    transition: border-color 0.5s var(--ease-out);
}

.capital-card:hover {
    border-color: rgba(238, 64, 55, 0.2);
}

.capital-card h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.capital-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--amber);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.capital-card p {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.capital-card ul {
    list-style: none;
    padding: 0;
}

.capital-card ul li {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.capital-card ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-size: 0.7rem;
}

.capital-disclaimer {
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--text-dim);
    text-align: center;
    margin-top: 32px;
}

/* Associates Section */
.associates {
    padding: 140px 80px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.associates-header {
    text-align: center;
    margin-bottom: 60px;
}

.associates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.associate-item {
    padding: 24px 16px;
    border: 1px solid var(--border);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 110px;
    transition: all 0.4s var(--ease-out);
}

.associate-item > span:last-child {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--text-muted);
    line-height: 1.3;
}

.associate-item:hover {
    border-color: rgba(238, 64, 55, 0.3);
    background: var(--amber-soft);
}

.associate-item:hover span {
    color: var(--text);
}

.associate-logo {
    width: 40px;
    height: 40px;
    max-width: 40px;
    max-height: 40px;
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(1) brightness(0) invert(1);
    opacity: 0.5;
    transition: opacity 0.4s, filter 0.4s;
}

.associate-item:hover .associate-logo {
    opacity: 0.85;
}

.associate-logo-invert {
    filter: grayscale(1) brightness(0) invert(1);
}

.associate-item:hover .associate-logo-invert {
    opacity: 0.85;
}

.associate-initials {
    font-family: var(--font-display) !important;
    font-size: 1.4rem !important;
    letter-spacing: 3px !important;
    color: var(--text-dim) !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    height: 32px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: color 0.4s;
}

.associate-item:hover .associate-initials {
    color: var(--amber) !important;
}

/* Investment Themes Section */
.investment-themes {
    padding: 140px 80px;
}

.themes-header {
    text-align: center;
    margin-bottom: 60px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.theme-block {
    padding: 40px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.01);
    transition: border-color 0.5s var(--ease-out);
}

.theme-block:hover {
    border-color: rgba(238, 64, 55, 0.2);
}

.theme-block h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--amber);
}

.theme-block ul {
    list-style: none;
    padding: 0;
}

.theme-block ul li {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
    padding-left: 16px;
    position: relative;
}

.theme-block ul li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--amber);
    font-size: 0.7rem;
}

.theme-block p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.8;
}

.theme-modus {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-style: italic;
    color: var(--text-dim) !important;
    font-size: 0.8rem !important;
}

.theme-note {
    margin-top: 16px;
    font-style: italic;
    color: var(--text-dim) !important;
}

/* Founder Section */
.founder-section {
    padding: 140px 80px;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
}

.founder-header {
    text-align: center;
    margin-bottom: 80px;
}

.founder-content {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}

.founder-image .visionary-placeholder {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image .visionary-placeholder span {
    font-family: var(--font-display);
    font-size: 3.5rem;
    letter-spacing: 4px;
    color: var(--amber);
    opacity: 0.6;
}

.founder-name {
    font-family: var(--font-display);
    font-size: 2.2rem;
    letter-spacing: 4px;
    margin-bottom: 8px;
}

.founder-role {
    display: inline-block;
    padding: 4px 16px;
    background: var(--amber);
    color: var(--bg);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.credential-item {
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.credential-icon {
    color: var(--amber);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.credential-item p {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-muted);
    line-height: 1.7;
}

.founder-summary {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .narrative-split {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .media-image {
        height: 350px;
    }

    .platforms-grid {
        grid-template-columns: 1fr;
        padding: 60px 80px 0;
    }

    .premiere-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .opportunity-platforms {
        grid-template-columns: 1fr;
    }

    .capital-grid {
        grid-template-columns: 1fr;
    }

    .themes-grid {
        grid-template-columns: 1fr;
    }

    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .founder-image {
        display: flex;
        justify-content: center;
    }

    .footer-nav {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    a, button { cursor: auto; }

    .nav {
        padding: 20px 24px;
        padding-top: calc(20px + env(safe-area-inset-top, 0px));
    }

    .nav.scrolled {
        padding: 14px 24px;
        padding-top: calc(14px + env(safe-area-inset-top, 0px));
    }

    .nav-menu-text {
        display: none;
    }

    .nav-logo {
        font-size: 1.1rem;
        letter-spacing: 5px;
    }

    .hero-content {
        padding: 0 24px;
    }

    .hero-eyebrow {
        margin-bottom: 20px;
    }

    .eyebrow-text {
        font-size: 0.6rem;
        letter-spacing: 3px;
    }

    .heading-line {
        flex-wrap: wrap;
        gap: 8px;
    }

    .heading-word {
        font-size: clamp(1.8rem, 7vw, 3rem) !important;
    }

    .hero-location {
        display: none;
    }

    .section-header {
        padding: 0 24px 60px;
    }

    .destinations {
        padding: 80px 0;
    }

    .horizontal-gallery {
        height: auto !important;
    }

    .gallery-track {
        position: relative;
        top: auto;
        height: auto;
        flex-direction: column;
        gap: 24px;
        padding: 0 24px;
        transform: none !important;
        will-change: auto;
    }

    .gallery-card {
        width: 100%;
        flex-shrink: 1;
    }

    .gallery-card:hover {
        transform: none;
    }

    .card-image-wrap {
        height: 220px;
    }

    .stats-inner {
        flex-direction: column;
        gap: 40px;
    }

    .narrative {
        padding: 80px 24px;
    }

    .timeline-section {
        padding: 80px 24px;
    }

    .timeline {
        padding-left: 40px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
        padding-left: 24px;
    }

    .timeline-dot {
        left: -33px;
    }

    .cinematic-quote {
        padding: 80px 24px;
        min-height: auto;
    }

    .quote-bg {
        background-attachment: scroll;
    }

    .opportunity {
        padding: 80px 24px;
    }

    .opportunity-platforms {
        gap: 24px;
    }

    .opportunity-block {
        padding: 24px;
    }

    .capital-card {
        padding: 24px;
    }

    .associates {
        padding: 80px 24px;
    }

    .associates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .investment-themes {
        padding: 80px 24px;
    }

    .theme-block {
        padding: 24px;
    }

    .founder-section {
        padding: 80px 24px;
    }

    .founder-content {
        gap: 40px;
    }

    .founder-image .visionary-placeholder {
        width: 180px;
        height: 180px;
    }

    .platforms-grid {
        padding: 40px 16px 0;
    }

    .narrative-card {
        padding: 24px 20px;
    }

    .premiere {
        padding: 80px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .menu-content {
        padding: 100px 24px 40px;
        justify-content: flex-start;
        padding-top: calc(80px + env(safe-area-inset-top, 0px));
    }

    .menu-links {
        gap: 4px;
        flex: 1;
        justify-content: center;
    }

    .menu-link {
        font-size: clamp(2rem, 8vw, 3.5rem);
        padding: 4px 0;
    }

    .menu-footer {
        flex-direction: column;
        gap: 16px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
        flex-shrink: 0;
        margin-top: 32px;
    }

    .menu-info,
    .menu-social {
        flex-direction: column;
        gap: 8px;
    }

    .footer {
        padding: 60px 24px 32px;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .letterbox-top,
    .letterbox-bottom {
        height: 8vh;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 16px 16px;
    }

    .nav.scrolled {
        padding: 12px 16px;
    }

    .nav-logo {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .nav-reserve {
        padding: 8px 14px;
        font-size: 0.6rem;
        letter-spacing: 2px;
    }

    .heading-line {
        flex-wrap: wrap;
        gap: 4px;
    }

    .heading-word {
        font-size: clamp(1.5rem, 8vw, 2.2rem) !important;
        letter-spacing: 4px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .menu-content {
        padding: 80px 20px 24px;
        padding-top: calc(70px + env(safe-area-inset-top, 0px));
    }

    .menu-links {
        gap: 2px;
    }

    .menu-link {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
        letter-spacing: 3px;
        gap: 12px;
        padding: 6px 0;
    }

    .menu-link::before {
        font-size: 0.65rem;
    }

    .menu-footer {
        margin-top: 24px;
    }

    .menu-info span,
    .menu-social span {
        font-size: 0.7rem;
    }

    .platforms-grid {
        padding: 32px 12px 0;
    }

    .narrative-card {
        padding: 20px 16px;
    }
}
