:root {
    --red: #F5182E;
    --deep: #A80818;
    --ink: #171717;
    --muted: #5f6368;
    --paper: #fff;
    --soft: #f7f7f7;
    --line: #e6e6e6;
    --accent: #f3e900;
    --max: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6
}

img {
    display: block;
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

button,
input,
select {
    font: inherit
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--line)
}

.nav-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    letter-spacing: -.3px
}
.brand img {
    width: 230px;
    height: auto;
    border-radius: 5px;
}
.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--red);
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900
}

.nav {
    display: flex;
    align-items: center;
    gap: 26px;
    font-size: 14px;
    font-weight: 700
}

.nav a:hover {
    color: var(--red)
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    padding: 13px 18px;
    font-weight: 800;
    border: 1px solid transparent;
    cursor: pointer
}

.nav-cta,
.btn-primary {
    background:var(--deep);
    color: #fff
}

.nav-cta:hover,
.btn-primary:hover {
    background: var(--deep)
}

.btn-light {
    background: #fff;
    border-color: var(--line)
}

.menu-btn {
    display: none;
    border: 0;
    background: none;
    font-size: 26px
}

.hero {
    padding: 72px 0 44px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 34px;
    align-items: stretch
}

.hero-copy {
    padding: 24px 0
}

.eyebrow {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 900;
    color: var(--deep);
    margin-bottom: 18px
}

.hero h1 {
    font-size: clamp(22px, 4vw, 44px);
    line-height: .98;
    margin: 0 0 22px;
    max-width: 760px
}

.hero p {
    font-size: 16px;
    color: var(--muted);
    max-width: 650px;
    margin: 0 0 28px
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-side {
    background: var(--deep);
    border-radius: 28px;
    padding: 26px;
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 18px
}

.flight-board {
    background: #fff;
    border-radius: 20px;
    padding: 22px
}

.flight-board-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.flight-board-head strong {
    font-size: 18px
}

.live-dot {
    font-size: 12px;
    font-weight: 800;
    color: var(--deep)
}

.board-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    border-top: 1px solid var(--line)
}

.airport-code {
    font-size: 30px;
    font-weight: 900
}

.airport-name {
    font-size: 12px;
    color: var(--muted)
}

.plane-line {
    font-size: 20px;
    color: var(--red)
}

.hero-note {
    display: flex;
    justify-content: space-between;
    align-items: end;
    color: #fff
}

.hero-note strong {
    font-size: 28px;
    line-height: 1
}

.hero-note span {
    font-size: 12px;
    opacity: .85
}

.quick-strip {
    padding: 18px 0 70px
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden
}

.quick-item {
    padding: 22px;
    background: #fff;
    border-right: 1px solid var(--line)
}

.quick-item:last-child {
    border-right: 0
}

.quick-item b {
    display: block;
    margin-bottom: 4px
}

.quick-item span {
    font-size: 13px;
    color: var(--muted)
}

.section {
    padding: 40px 0
}

.section-soft {
    background: var(--soft)
}

.section-head {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    margin-bottom: 32px
}

.section-head h2 {
    font-size: clamp(20px, 3vw, 36px);
    line-height: 1.05;
    margin: 0
}

.section-head p {
    max-width: 520px;
    color: var(--muted);
    margin: 0
}

.route-table {
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    background: #fff
}

.route-row {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr auto;
    align-items: center;
    gap: 20px;
    padding: 20px 22px;
    border-top: 1px solid var(--line)
}

.route-row:first-child {
    border-top: 0
}

.route-main {
    display: flex;
    align-items: center;
    gap: 14px
}

.route-badge {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #ffe8eb;
    color: var(--deep);
    display: grid;
    place-items: center;
    font-weight: 900
}

.route-row small {
    display: block;
    color: var(--muted)
}

.route-row a {
    font-weight: 800;
    color: var(--red)
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: center
}

.photo-stack {
    position: relative;
    min-height: 500px
}

.photo-main {
    position: absolute;
    inset: 0 70px 60px 0;
    border-radius: 24px;
    overflow: hidden
}

.photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.photo-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 56%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08)
}

.photo-card b {
    display: block;
    font-size: 20px;
    margin-bottom: 6px
}

.check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 24px 0
}

.check {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font-weight: 700
}

.check:before {
    content: '✓';
    color: var(--red);
    margin-right: 8px
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.step {
    border-top: 5px solid var(--red);
    background: #fff;
    padding: 24px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05)
}

.step-num {
    font-size: 13px;
    color: var(--deep);
    font-weight: 900;
    letter-spacing: 1px
}

.step h3 {
    font-size: 20px;
    margin: 10px 0 8px
}

.step p {
    color: var(--muted);
    font-size: 14px;
    margin: 0
}

.travel-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 18px
}

.story-card {
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    background: #fff
}

.story-card img {
    height: 220px;
    width: 100%;
    object-fit: cover
}

.story-card.large img {
    height: 320px
}

.story-body {
    padding: 20px
}

.story-body span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--deep);
    font-weight: 900
}

.story-body h3 {
    margin: 8px 0;
    font-size: 22px;
    line-height: 1.2
}

.story-body p {
    color: var(--muted);
    font-size: 14px;
    margin: 0
}

.faq-wrap {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 50px
}

.faq-intro {
    background: var(--deep);
    color: #fff;
    border-radius: 24px;
    padding: 34px;
    align-self: start
}

.faq-intro h2 {
    font-size: 24px;
    line-height: 1.05;
    margin: 0 0 16px
}

.faq-item {
    border-bottom: 1px solid var(--line)
}

.faq-q {
    width: 100%;
    padding: 20px 0;
    border: 0;
    background: none;
    display: flex;
    justify-content: space-between;
    text-align: left;
    font-weight: 800;
    cursor: pointer
}

.faq-a {
    display: none;
    padding: 0 0 20px;
    color: var(--muted)
}

.faq-item.active .faq-a {
    display: block
}

.faq-item.active .faq-q span {
    transform: rotate(45deg)
}

.cta {
    padding: 76px 0;
    background: var(--ink);
    color: #fff
}

.cta-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px
}

.cta h2 {
    font-size: 24px;
    line-height: 1.05;
    margin: 0 0 10px
}

.cta p {
    margin: 0;
    color: #c9c9c9;
    max-width: 650px
}

.footer {
    padding: 44px 0 20px;
    background: #fff
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px
}

.footer h4 {
    margin: 0 0 12px
}

.footer a {
    display: block;
    color: var(--muted);
    font-size: 14px;
    margin: 8px 0
}

.footer-note {
    border-top: 1px solid var(--line);
    margin-top: 34px;
    padding-top: 18px;
    font-size: 12px;
    color: var(--muted)
}

.legal-hero {
    padding: 68px 0;
    background: var(--soft);
    border-bottom: 1px solid var(--line)
}

.legal-hero h1 {
    font-size: 36px;
    margin: 0 0 8px;
    letter-spacing: -2px
}

.legal-wrap {
    width: min(1080px, calc(100% - 20px));
    margin: 0 auto;
    padding: 60px 0
}

.legal-wrap h2 {
    margin-top: 34px;
    font-size: 24px
}

.legal-wrap p,
.legal-wrap li {
    color: #4e4e4e
}

.legal-wrap ul {
    padding-left: 20px
}

@media(max-width:900px) {
    .nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 76px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 18px;
        flex-direction: column;
        align-items: flex-start
    }

    .nav.open {
        display: flex
    }

    .menu-btn {
        display: block
    }

    .hero-grid,
    .split,
    .faq-wrap {
        grid-template-columns: 1fr
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr
    }

    .quick-item:nth-child(2) {
        border-right: 0
    }

    .quick-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .timeline {
        grid-template-columns: 1fr 1fr
    }

    .travel-grid {
        grid-template-columns: 1fr 1fr
    }

    .story-card.large {
        grid-column: 1/-1
    }

    .route-row {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:620px) {
    .container {
        width: min(100% - 24px, var(--max))
    }

    .hero {
        padding-top: 36px
    }

  

    .quick-grid,
    .timeline,
    .travel-grid,
    .check-list,
    .footer-grid {
        grid-template-columns: 1fr
    }
   .hero-grid
 {
        grid-template-columns: 1fr
    }
    .quick-item {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .route-row {
        grid-template-columns: 1fr
    }

    .section-head,
    .cta-box {
        align-items: flex-start;
        flex-direction: column
    }

    .photo-stack {
        min-height: 420px
    }

    .photo-main {
        inset: 0 30px 70px 0
    }

    .photo-card {
        width: 78%
    }

    .legal-hero h1 {
        font-size: 40px
    }
}


/* V2 visual refresh */
.top-note {
    background: #171717;
    color: #fff;
    font-size: 12px;
    letter-spacing: .25px;
    padding: 8px 0
}

.site-header {
    background: #fff;
    border-bottom: 0;
    box-shadow: 0 8px 24px rgba(86, 0, 9, .16)
}

.site-header .brand,
.site-header .nav>a:not(.nav-cta) {
    color: #000
}

.site-header .nav>a:not(.nav-cta):hover {
    color: var(--deep)
}

.site-header .brand-mark {
    background: #fff;
    color: var(--deep);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 12px;
    letter-spacing: -.5px
}

.site-header .nav-cta {
    background: var(--deep);
    color: #fff
}

.site-header .nav-cta:hover {
    background: #ffe7ea;
    color: var(--deep)
}

.site-header .menu-btn {
    color: #fff
}

.hero {
    background: #fff7f8;
    padding: 64px 0 54px;
    border-bottom: 1px solid #f0dfe2
}



.hero-copy {
    align-self: center
}

.hero h1 {
    font-size: clamp(28px, 3vw, 44px)
}

.hero-photo-panel {
    position: relative;
    min-height: 360px;
    padding: 0;
    overflow: hidden;
    background: #171717;
    border-radius: 8px 36px 8px 36px;
    display: block
}

.hero-photo-panel>img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover
}



.floating-ticket {
    position: absolute;
    left: -34px;
    top: 42px;
    z-index: 2;
    width: 260px;
    background: #fff;
    padding: 22px;
    border-left: 8px solid var(--red);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18)
}

.ticket-label {
    font-size: 11px;
    letter-spacing: 1.4px;
    font-weight: 900;
    color: var(--deep)
}

.ticket-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 28px;
    margin: 14px 0 8px
}

.ticket-route i {
    color: var(--red);
    font-style: normal;
    font-size: 20px
}

.floating-ticket p {
    font-size: 13px;
    margin: 0;
    color: var(--muted)
}

.hero-photo-caption {
    position: absolute;
    z-index: 2;
    left: 28px;
    right: 28px;
    bottom: 24px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 18px
}

.hero-photo-caption strong {
    font-size: 16px;
    line-height: 1.1
}

.hero-photo-caption span {
    font-size: 12px;
    text-align: right;
    color: #f3c9ce
}

.quick-strip {
    padding: 0;
    background: #fff
}

.quick-grid {
    position: relative;
    margin-top: -1px;
    border-radius: 0;
    border-left: 0;
    border-right: 0
}

.quick-item {
    padding: 26px 22px
}

.section-soft {
    background: #f8f5f5
}

.route-table {
    border-radius: 4px
}

.route-row {
    border-left: 5px solid transparent;
    transition: .2s ease
}

.route-row:hover {
    border-left-color: var(--red);
    background: #fff8f8
}

.photo-main {
    border-radius: 4px 28px 4px 28px
}

.photo-card {
    border-radius: 4px 20px 4px 20px
}

.story-card {
    border-radius: 4px 20px 4px 20px
}

.faq-intro {
    border-radius: 4px 28px 4px 28px
}

.legal-hero {
    background: #fff2f4;
    border-bottom: 4px solid var(--red)
}

@media(max-width:900px) {
    .site-header .nav {
        background: var(--deep);
        border-color: #d64957
    }

    .hero-grid {
        gap: 28px
    }

    .floating-ticket {
        left: 20px
    }
}

@media(max-width:620px) {
    .top-note {
        display: none
    }

    .hero {
        padding-top: 34px
    }

    .hero-photo-panel,
    .hero-photo-panel>img {
        min-height: 430px
    }

    .floating-ticket {
        left: 14px;
        right: 14px;
        top: 18px;
        width: auto
    }

    .hero-photo-caption {
        left: 18px;
        right: 18px;
        display: block
    }

    .hero-photo-caption span {
        display: block;
        text-align: left;
        margin-top: 8px
    }
}