:root {
    --ink: #142936;
    --ink-soft: #44555f;
    --paper: #f5f6f3;
    --paper-blue: #edf4f7;
    --teal: #4c7d8e;
    --teal-deep: #183746;
    --teal-dark: #102b37;
    --line: rgba(20, 41, 54, .14);
    --white: #fff;
    --serif: "Libre Caslon Display", Georgia, serif;
    --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img, svg, video { display: block; max-width: 100%; }
.shell { width: var(--shell); margin-inline: auto; }

.hero {
    position: relative;
    min-height: 760px;
    height: 92vh;
    max-height: 940px;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 72% 24%, rgba(169, 148, 122, .35), transparent 26%),
        linear-gradient(105deg, #0b0d0e 0%, #1b2020 58%, #42443f 100%);
}
.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4, 7, 8, .78) 0%, rgba(4, 7, 8, .43) 42%, rgba(4, 7, 8, .12) 70%, rgba(4, 7, 8, .30) 100%),
        linear-gradient(0deg, rgba(4, 7, 8, .46), transparent 42%);
}
.nav,
.hero__content { position: relative; z-index: 2; }
.nav {
    z-index: 20;
    height: 104px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.brand { display: inline-flex; flex-direction: column; align-items: center; gap: 1px; color: #fff; }
.brand__mark { width: 88px; height: 31px; fill: none; stroke: currentColor; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.brand > span { font-size: 12px; letter-spacing: .42em; margin-left: .42em; font-weight: 600; }
.nav__links { display: flex; align-items: center; gap: 48px; font-size: 14px; color: rgba(255,255,255,.87); }
.nav__links a { position: relative; padding: 10px 0; }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 3px; width: 0; height: 1px; background: #fff; transition: width .25s ease; }
.nav__links a:hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__toggle { display: none; border: 0; background: none; padding: 8px; }
.nav__toggle span { display: block; width: 26px; height: 1px; background: #fff; margin: 7px 0; }

.hero__content {
    height: calc(100% - 104px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    align-items: center;
    gap: 60px;
    padding-bottom: 7vh;
}
.hero__copy { max-width: 760px; }
.hero h1 {
    margin: 0;
    font-family: var(--serif);
    font-size: clamp(72px, 7.1vw, 116px);
    line-height: .92;
    font-weight: 400;
    letter-spacing: -.035em;
    text-wrap: balance;
}
.hero__subline { margin: 28px 0 0; font-size: clamp(20px, 1.7vw, 27px); color: rgba(255,255,255,.78); letter-spacing: -.02em; }
.hero__downloads { margin-top: 54px; }
.eyebrow { display: block; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.66); }
.eyebrow--dark { color: var(--teal); }
.store-row { display: flex; gap: 18px; margin-top: 16px; flex-wrap: wrap; }
.store-badge {
    min-width: 192px;
    min-height: 64px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    background: rgba(4,8,10,.48);
    backdrop-filter: blur(8px);
    transition: transform .2s ease, background .2s ease;
}
.store-badge:hover { transform: translateY(-2px); background: rgba(4,8,10,.66); }
.store-badge svg { width: 26px; height: 31px; fill: currentColor; flex: 0 0 auto; }
.store-badge .play-icon { fill: none; stroke: #fff; stroke-width: 2; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.02; }
.store-badge small { font-size: 10px; opacity: .9; text-transform: uppercase; }
.store-badge strong { font-size: 22px; font-weight: 500; }

.hero__signature {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-left: 58px;
}
.signature-mark { margin-top: 16px; font-size: 28px; letter-spacing: -.3em; width: max-content; color: rgba(255,255,255,.78); }
.hero-signature {
    position: absolute;
    top: -104px;
    right: -38px;
    bottom: -30px;
    width: 260px;
    pointer-events: none;
}
.hero-signature__route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}
.hero-signature__route path {
    fill: none !important;
    stroke: rgba(255,255,255,.72);
    stroke-width: 1.3;
    stroke-dasharray: 5 5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.hero-signature__badge {
    position: absolute;
    z-index: 2;
    top: 22%;
    right: 28px;
    width: 40px;
    height: 56px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(10,10,10,.16);
    backdrop-filter: blur(6px);
    font-family: var(--serif);
    font-size: 25px;
    pointer-events: none;
}
.hero-signature__copy {
    position: absolute;
    z-index: 2;
    top: 45%;
    right: 34px;
    width: 126px;
    pointer-events: none;
}
.hero-signature__copy p {
    margin: 0;
    font-family: var(--serif);
    font-size: 24px;
    line-height: 1.18;
    color: rgba(255,255,255,.88);
}
.hero-signature__copy .hero__signature-logo {
    display: block;
    width: 82px;
    height: auto;
    margin-top: 14px;
    opacity: .88;
}
.hero-signature,
.hero-signature *,
.route-line,
.route-line *,
.route-line::before,
.route-line::after,
.route-line__badge { pointer-events: none; }

.section-compact { padding: 56px 0; }
.intro { background: linear-gradient(180deg, #f4f7f9, #eef4f7); border-bottom: 1px solid var(--line); }
.intro__grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.intro__lead { margin: 0; font-size: 21px; line-height: 1.48; font-weight: 700; letter-spacing: -.025em; }
.intro__statement { margin: 24px 0 0; max-width: 620px; font-size: clamp(29px, 2.65vw, 43px); line-height: 1.08; letter-spacing: -.038em; font-weight: 500; }
.trip-preview { min-height: 270px; position: relative; }
.trip-preview__map {
    position: absolute;
    inset: 12px 22% 8px 0;
    border-radius: 18px;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(20,41,54,.06);
    overflow: hidden;
}
.trip-preview__map svg { width: 100%; height: 100%; }
.trip-preview__map path { fill: none; stroke: #d9e2e5; stroke-width: 3; }
.trip-preview__map .route { stroke: var(--teal); stroke-dasharray: 7 6; stroke-width: 2; }
.trip-preview__map circle { fill: var(--teal-deep); }
.trip-preview__map .plane { fill: var(--teal); stroke: none; }
.destination-pill {
    position: absolute;
    left: 28px;
    bottom: 24px;
    padding: 12px 14px;
    border-radius: 9px;
    background: var(--teal-deep);
    color: #fff;
    box-shadow: 0 8px 25px rgba(20,41,54,.16);
}
.destination-pill strong,
.destination-pill span { display: block; }
.destination-pill strong { font-size: 12px; }
.destination-pill span { margin-top: 3px; font-size: 10px; opacity: .72; }
.chat-card {
    position: absolute;
    border-radius: 15px;
    box-shadow: 0 16px 40px rgba(33,55,67,.13);
    font-size: 13px;
}
.chat-card p { margin: 10px 0 0; line-height: 1.35; }
.chat-card time { display: block; margin-top: 8px; font-size: 9px; opacity: .55; text-align: right; }
.chat-card--loco { top: 0; right: 0; width: 62%; padding: 16px 18px; background: #fff; }
.chat-card__name { font-weight: 700; display: flex; gap: 8px; align-items: center; }
.mini-mark { width: 22px; height: 22px; border-radius: 50%; background: var(--teal-deep); color: #fff; display: grid; place-items: center; }
.chat-card--user { right: 0; bottom: 4px; width: 48%; padding: 18px; color: #fff; background: linear-gradient(135deg, #5e98ab, #3e7486); }

.features { padding: 72px 0 42px; background: #f7f6f2; }
.section-heading { margin-bottom: 50px; max-width: 760px; }
.section-heading h2 { margin: 10px 0 0; font-family: var(--serif); font-size: clamp(46px, 5vw, 74px); line-height: .96; font-weight: 400; letter-spacing: -.035em; }
.section-heading em { color: var(--teal); font-style: italic; }
.section-heading--center { text-align: center; margin-inline: auto; }
.feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(330px, .95fr);
    gap: 68px;
    align-items: center;
    padding: 34px 0;
    border-top: 1px solid var(--line);
}
.feature:last-child { border-bottom: 1px solid var(--line); }
.feature__copy { max-width: 540px; }
.feature__copy h3 { margin: 12px 0 14px; font-family: var(--serif); font-size: clamp(36px, 3.6vw, 54px); font-weight: 400; line-height: 1; letter-spacing: -.025em; }
.feature__copy p { margin: 0; color: var(--ink-soft); font-size: 16px; line-height: 1.62; }
.feature-icon { width: 48px; height: 48px; border: 1px solid rgba(20,41,54,.22); border-radius: 50%; position: relative; }
.feature-icon--spark span:first-child::before,
.feature-icon--spark span:first-child::after,
.feature-icon--spark span:last-child::before,
.feature-icon--spark span:last-child::after { content: ""; position: absolute; background: var(--teal-deep); }
.feature-icon--spark span:first-child::before { width: 1px; height: 21px; left: 23px; top: 6px; }
.feature-icon--spark span:first-child::after { height: 1px; width: 21px; left: 13px; top: 16px; }
.feature-icon--spark span:last-child::before { width: 1px; height: 12px; left: 31px; top: 27px; }
.feature-icon--spark span:last-child::after { height: 1px; width: 12px; left: 25px; top: 33px; }
.feature-icon--people span { position: absolute; width: 10px; height: 10px; border: 1.5px solid var(--teal-deep); border-radius: 50%; top: 10px; }
.feature-icon--people span:nth-child(1){ left: 10px; }
.feature-icon--people span:nth-child(2){ right: 10px; }
.feature-icon--people span:nth-child(3){ width: 25px; height: 13px; border-radius: 14px 14px 0 0; border-bottom: 0; left: 11px; top: 25px; }
.feature-icon--photo span { position: absolute; inset: 11px 9px; border: 1.5px solid var(--teal-deep); border-radius: 2px; }
.feature-icon--photo span::before { content: ""; position: absolute; left: 2px; right: 2px; bottom: 3px; height: 9px; border-left: 1.5px solid var(--teal-deep); border-top: 1.5px solid var(--teal-deep); transform: skewY(-28deg); }
.feature-icon--pin span { position: absolute; width: 16px; height: 20px; border: 1.5px solid var(--teal-deep); border-radius: 12px 12px 14px 14px; left: 15px; top: 10px; }
.feature-icon--pin span::after { content: ""; position: absolute; width: 4px; height: 4px; border: 1px solid var(--teal-deep); border-radius: 50%; left: 5px; top: 5px; }
.feature__visual { min-height: 250px; border-radius: 22px; position: relative; overflow: hidden; }
.feature-number { position: absolute; z-index: 5; top: 14px; right: 18px; font-family: var(--serif); font-size: 54px; color: rgba(255,255,255,.18); }
.visual-chat,
.visual-group { padding: 38px; background: var(--teal-dark); color: #fff; display: flex; flex-direction: column; justify-content: center; gap: 12px; }
.message { width: fit-content; max-width: 82%; border-radius: 13px; padding: 13px 15px; font-size: 13px; line-height: 1.35; }
.message--dark { background: #274957; margin-left: auto; }
.message--light { background: #e9f0f2; color: var(--ink); }
.feature--group .feature__copy,
.feature--map .feature__copy { order: 1; }
.feature--group .feature__visual,
.feature--map .feature__visual { order: 2; }
.group-top { display: grid; grid-template-columns: 1fr auto; gap: 2px 16px; align-items: center; }
.group-top > span { opacity: .62; font-size: 11px; }
.group-top label { grid-row: 1 / 3; grid-column: 2; font-size: 11px; color: rgba(255,255,255,.72); }
.group-top i { margin-left: 6px; padding: 4px 8px; border-radius: 999px; background: #7eab82; color: #fff; font-style: normal; }
.avatars { display: flex; margin: 8px 0 2px; }
.avatars span { width: 33px; height: 33px; border: 2px solid var(--teal-dark); border-radius: 50%; background: #d4dad6; color: var(--ink); display: grid; place-items: center; margin-left: -6px; font-size: 10px; font-weight: 700; }
.avatars span:first-child { margin-left: 0; }
.memory-stack { min-height: 290px; background: #e7eef0; padding: 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 9px; align-items: stretch; }
.memory { border-radius: 12px; min-height: 190px; position: relative; background-size: cover; background-position: center; }
.memory--1 { background: linear-gradient(145deg, #756246, #c6b18e 47%, #315a69); transform: rotate(-3deg) translateY(13px); }
.memory--2 { background: linear-gradient(145deg, #315666, #d9b781 48%, #98654a); transform: rotate(2deg); }
.memory--3 { background: linear-gradient(145deg, #b6c6d4, #617382 42%, #40362c); transform: rotate(-1deg) translateY(8px); }
.memory--4 { background: linear-gradient(145deg, #304558, #6f745a 54%, #b07d5a); transform: rotate(3deg) translateY(16px); display: grid; place-items: end; padding: 12px; color: #fff; }
.memory-caption { position: absolute; left: 30px; bottom: 26px; display: flex; gap: 10px; align-items: center; color: #fff; padding: 8px 12px; border-radius: 9px; background: rgba(15,40,50,.82); backdrop-filter: blur(7px); font-size: 11px; }
.memory-caption span { opacity: .7; }
.map-visual { min-height: 300px; background: #dfe8e9; }
.map-visual svg { width: 100%; height: 100%; min-height: 300px; }
.map-visual .continent { fill: #cad8da; }
.map-visual .journey { fill: none; stroke: var(--teal); stroke-width: 2.2; stroke-dasharray: 8 7; }
.map-visual .map-dot { fill: var(--teal-deep); stroke: #fff; stroke-width: 4; }
.map-card { position: absolute; right: 26px; bottom: 24px; width: 180px; padding: 14px; border-radius: 12px; background: #fff; box-shadow: 0 16px 35px rgba(20,41,54,.14); display: flex; flex-direction: column; gap: 5px; }
.map-card small { color: var(--ink-soft); }
.map-card strong { font-size: 12px; }
.map-card button { margin-top: 8px; border: 0; border-radius: 999px; background: var(--teal-deep); color: #fff; font-size: 10px; padding: 8px 10px; }

.testimonials { background: #f1f0eb; }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.quote { margin: 0; padding: 24px; background: rgba(255,255,255,.65); border: 1px solid var(--line); border-radius: 16px; min-height: 205px; display: flex; flex-direction: column; justify-content: space-between; }
.quote p { margin: 0; font-family: var(--serif); font-size: 22px; line-height: 1.22; }
.quote footer { display: flex; gap: 10px; align-items: center; margin-top: 24px; }
.quote footer > span { width: 38px; height: 38px; border-radius: 50%; background: var(--teal-deep); color: #fff; display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.quote footer strong,
.quote footer small { display: block; }
.quote footer strong { font-size: 12px; }
.quote footer small { margin-top: 2px; color: var(--ink-soft); font-size: 10px; }

.contact { background: var(--teal-deep); color: #fff; }
.contact__grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.contact__copy h2 { margin: 8px 0 12px; font-family: var(--serif); font-size: clamp(46px, 5vw, 70px); font-weight: 400; line-height: .95; }
.contact__copy p { margin: 0; max-width: 440px; color: rgba(255,255,255,.7); line-height: 1.6; }
.contact-form { display: grid; gap: 14px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.contact-form label { display: grid; gap: 7px; font-size: 11px; color: rgba(255,255,255,.65); }
.contact-form input,
.contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); border-radius: 10px; background: rgba(255,255,255,.06); color: #fff; padding: 13px 14px; outline: none; transition: border-color .2s ease, background .2s ease; }
.contact-form textarea { resize: vertical; min-height: 104px; }
.contact-form input:focus,
.contact-form textarea:focus { border-color: rgba(255,255,255,.55); background: rgba(255,255,255,.09); }
.button { min-height: 47px; border: 0; border-radius: 999px; padding: 10px 18px; display: inline-flex; justify-content: space-between; align-items: center; font-weight: 700; }
.button--light { background: #edf3f5; color: var(--teal-deep); }
.button[disabled] { opacity: .55; cursor: wait; }
.form-status { min-height: 20px; margin: 0; font-size: 12px; color: #cfe7dc; }
.form-status.is-error { color: #ffd4d4; }
.hp-field { position: absolute !important; left: -10000px !important; opacity: 0 !important; }

.footer { padding: 34px 0; background: #0e2631; color: rgba(255,255,255,.78); border-top: 1px solid rgba(255,255,255,.1); }
.footer__top { display: grid; grid-template-columns: .8fr 1fr 1.5fr 1.1fr; align-items: center; gap: 30px; }
.footer__brand .brand { align-items: flex-start; }
.footer__brand .brand__mark { width: 74px; }
.footer__brand p { margin: 8px 0 0; font-size: 11px; line-height: 1.4; }
.footer__contact { display: grid; gap: 8px; font-size: 12px; }
.footer__legal { font-size: 11px; }
.footer__legal div { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__legal p { margin: 9px 0 0; color: rgba(255,255,255,.48); }
.footer__stores { display: flex; gap: 8px; justify-content: flex-end; }
.store-badge--small { min-width: 128px; min-height: 44px; padding: 7px 10px; gap: 6px; }
.store-badge--small strong { font-size: 14px; }
.store-badge--small small { font-size: 7px; }

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 700ms cubic-bezier(.22,.61,.36,1), transform 700ms cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1040px) {
    :root { --shell: min(100% - 40px, 960px); }
    .nav__links { gap: 26px; }
    .hero { min-height: 700px; height: 88vh; }
    .hero__content { grid-template-columns: 1fr 190px; gap: 24px; }
    .hero h1 { font-size: clamp(68px, 9vw, 96px); }
    .hero__signature { padding-left: 24px; }
    .hero-signature { right: -52px; width: 230px; }
    .hero-signature__badge { right: 22px; }
    .hero-signature__copy { right: 24px; width: 118px; }
    .hero-signature__copy p { font-size: 21px; }
    .intro__grid { gap: 42px; }
    .feature { gap: 42px; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .footer__stores { justify-content: flex-start; }
}

@media (max-width: 768px) {
    :root { --shell: calc(100vw - 30px); }
    .hero { height: auto; min-height: 780px; max-height: none; }
    .nav { height: 82px; }
    .brand__mark { width: 72px; }
    .nav__links {
        position: fixed;
        inset: 0;
        z-index: 9;
        padding: 110px 28px 40px;
        background: rgba(10,24,30,.98);
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        transform: translateX(100%);
        transition: transform .3s ease;
        font-size: 28px;
    }
    body.nav-open .nav__links { transform: translateX(0); }
    .nav__toggle { display: block; position: relative; z-index: 10; }
    body.nav-open .nav__toggle span:first-child { transform: translateY(4px) rotate(45deg); }
    body.nav-open .nav__toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }
    .hero__content { min-height: 698px; height: auto; display: block; padding: 95px 0 54px; }
    .hero h1 { font-size: clamp(58px, 17vw, 82px); line-height: .92; }
    .hero__subline { margin-top: 20px; font-size: 19px; max-width: 300px; }
    .hero__downloads { margin-top: 40px; }
    .store-row { gap: 9px; }
    .store-badge { min-width: 0; width: calc(50% - 5px); padding: 9px 11px; min-height: 58px; }
    .store-badge strong { font-size: 16px; }
    .store-badge small { font-size: 8px; }
    .store-badge svg { width: 22px; }
    .hero__signature { position: absolute; right: 0; bottom: 22px; width: 180px; height: 310px; padding: 0; }
    .hero-signature { inset: 0 -22px -14px 0; width: auto; }
    .hero-signature__badge { top: 18%; right: 24px; width: 38px; height: 54px; }
    .hero-signature__copy { top: 45%; right: 24px; width: 112px; }
    .hero-signature__copy p { font-size: 18px; line-height: 1.18; }
    .hero-signature__copy .hero__signature-logo { width: 74px; margin-top: 12px; }
    .section-compact { padding: 38px 0; }
    .intro__grid { grid-template-columns: 1fr; gap: 30px; }
    .intro__lead { font-size: 18px; }
    .intro__statement { margin-top: 17px; font-size: 31px; }
    .trip-preview { min-height: 250px; }
    .features { padding: 48px 0 24px; }
    .section-heading { margin-bottom: 28px; }
    .section-heading h2 { font-size: 48px; }
    .feature { grid-template-columns: 1fr; gap: 22px; padding: 30px 0; }
    .feature__visual { min-height: 240px; order: 1 !important; }
    .feature__copy { order: 2 !important; }
    .feature__copy h3 { font-size: 42px; }
    .memory-stack { min-height: 250px; padding: 18px; }
    .memory { min-height: 160px; }
    .quotes { grid-template-columns: 1fr; }
    .quote { min-height: 0; }
    .contact__grid { grid-template-columns: 1fr; gap: 28px; }
    .field-row { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 22px; }
    .footer__stores { flex-wrap: wrap; }
}
