:root {
    --navy: #0a2b4c;
    --blue: #0e5da8;
    --sky: #eaf4fc;
    --ice: #f6f9fc;
    --ink: #102437;
    --muted: #5e6f7f;
    --line: #dbe5ed;
    --white: #fff;
    --accent: #22a1d6;
    --shadow: 0 18px 48px rgba(10, 43, 76, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

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

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

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

.wrap {
    width: min(1180px, calc(100% - 40px));
    margin: auto
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px)
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 10px
}
.brand img{
    width: 240px;
    height: 40px;
    border-radius: 5px;
}
.brand strong,
.brand small {
    display: block;
    line-height: 1
}

.brand strong {
    font-size: 19px;
    color: var(--navy)
}

.brand small {
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--blue);
    margin-top: 5px
}

.brand-mark {
    width: 42px;
    height: 30px;
    display: grid;
    gap: 4px;
    align-content: center
}

.brand-mark i {
    display: block;
    height: 4px;
    background: var(--blue);
    border-radius: 8px
}

.brand-mark i:nth-child(2) {
    width: 31px;
    background: var(--accent)
}

.brand-mark i:nth-child(3) {
    width: 22px
}

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

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

.nav-cta {
    padding: 12px 18px;
    background: var(--blue);
    color: #fff !important;
    border-radius: 6px
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 6px
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px
}

.hero {
    background: #fff;
    padding: 70px 0
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 66px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase
}

.eyebrow:before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--accent)
}

h1,
h2,
h3 {
    line-height: 1.12;
    margin: 0 0 16px;
    color: var(--navy)
}

h1 {
    font-size: clamp(22px, 4vw, 44px);
    letter-spacing: -.04em
}

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 650px
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 30px 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid transparent
}

.btn.primary {
    background: var(--blue);
    color: #fff
}

.btn.primary:hover {
    background: var(--navy)
}

.btn.secondary {
    border-color: var(--navy);
    color: var(--navy);
    background: #fff
}

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

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 520px;
    border-top: 1px solid var(--line);
    padding-top: 22px
}

.hero-points div {
    border-right: 1px solid var(--line);
    padding-right: 18px;
    margin-right: 18px
}

.hero-points div:last-child {
    border: 0
}

.hero-points strong,
.hero-points span {
    display: block
}

.hero-points strong {
    font-size: 21px;
    color: var(--blue)
}

.hero-points span {
    font-size: 12px;
    color: var(--muted)
}

.hero-visual {
    position: relative;
    padding: 14px;
    background: #fff;
    box-shadow: var(--shadow)
}

.hero-visual img {
    width: 100%;
    height: 510px;
    object-fit: cover
}

.route-card {
    position: absolute;
    left: -34px;
    bottom: 32px;
    background: var(--navy);
    color: #fff;
    padding: 18px 22px;
    box-shadow: var(--shadow);
    min-width: 280px
}

.route-card span,
.route-card small {
    display: block;
    color: #b9d9ed;
    font-size: 12px
}

.route-card strong {
    display: block;
    font-size: 17px;
    margin: 3px 0
}

.service-strip {
    padding: 34px 0;
    background: #fff
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--line)
}

.service-grid article {
    padding: 28px;
    border-right: 1px solid var(--line)
}

.service-grid article:last-child {
    border: 0
}

.service-grid span {
    color: var(--accent);
    font-weight: 800;
    font-size: 13px
}

.service-grid h3 {
    font-size: 18px;
    margin-top: 14px
}

.service-grid p {
    font-size: 14px;
    color: var(--muted);
    min-height: 68px
}

.service-grid a,
.destination-card a {
    color: var(--blue);
    font-size: 13px;
    font-weight: 800
}

.section {
    padding: 40px 0
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 42px
}

.section-heading h2,
.split-copy h2,
.faq-grid h2 {
    font-size: clamp(20px, 3vw, 36px);
    letter-spacing: -.025em
}

.section-heading p {
    color: var(--muted)
}

.destinations {
    background: var(--ice)
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.destination-card {
    background: #fff;
    border: 1px solid var(--line);
    transition: .25s ease
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

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

.destination-card>div {
    padding: 25px
}

.destination-card small {
    color: var(--accent);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: 12px;
}

.destination-card h3 {
    font-size: 18px;
    margin-top: 9px
}

.destination-card p {
    color: var(--muted);
    font-size: 14px
}

.split-section {
    background: #fff
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.split-image {
    position: relative
}

.split-image:before {
    content: "";
    position: absolute;
    inset: 26px -24px -26px 24px;
    background: var(--sky);
    z-index: -1
}

.split-image img {
    width: 100%;
    height: 610px;
    object-fit: cover
}

.split-copy p {
    color: var(--muted)
}

.check-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 25px 0 30px
}

.check-list li {
    background: var(--ice);
    border: 1px solid var(--line);
    padding: 11px 13px;
    font-size: 13px;
    font-weight: 700
}

.check-list li:before {
    content: "✓";
    color: var(--blue);
    margin-right: 8px
}

.process {
    background: var(--navy);
    color: #dbe8f2
}

.process .section-heading h2 {
    color: #fff
}

.process .section-heading p {
    color: #b8cad8
}

.process .eyebrow {
    color: #80cdf0
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #31506a
}

.process-grid article {
    background: var(--navy);
    padding: 34px 28px
}

.process-grid b {
    display: block;
    color: #62c5ee;
    font-size: 28px;
    margin-bottom: 45px
}

.process-grid h3 {
    color: #fff;
    font-size: 19px
}

.process-grid p {
    font-size: 14px;
    color: #b8cad8
}

.reviews {
    background: var(--ice)
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.review-grid blockquote {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    padding: 30px
}

.stars {
    color: #F4ED00;
    letter-spacing: 3px
}

.review-grid p {
    font-size: 15px
}

.review-grid footer {
    font-size: 13px;
    font-weight: 800;
    color: var(--muted)
}

.faq-section {
    padding: 92px 0;
    background: #fff
}

.faq-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 80px
}

.faq-grid>div:first-child p {
    color: var(--muted)
}

details {
    border-top: 1px solid var(--line);
    padding: 18px 0
}

details:last-child {
    border-bottom: 1px solid var(--line)
}

summary {
    cursor: pointer;
    font-weight: 800;
    color: var(--navy);
    list-style: none;
    position: relative;
    padding-right: 35px
}

summary:after {
    content: "+";
    position: absolute;
    right: 4px;
    color: var(--blue);
    font-size: 22px;
    top: -4px
}

details[open] summary:after {
    content: "−"
}

details p {
    color: var(--muted);
    font-size: 14px
}

.cta-band {
    background: var(--blue);
    color: #fff;
    padding: 46px 0
}

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

.cta-band span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #c8e9f8
}

.cta-band h2 {
    color: #fff;
    margin: 7px 0 0;
    font-size: 32px
}

.site-footer {
    background: #071e34;
    color: #c5d3df;
    padding-top: 58px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr .7fr .7fr;
    gap: 10px;
    padding-bottom: 45px
}

.footer-brand strong {
    color: #fff
}

.footer-brand small {
    color: #77c8ee
}

.site-footer p {
    font-size: 14px;
    max-width: 470px
}

.site-footer h3 {
    color: #fff;
    font-size: 15px
}

.site-footer a {
    display: block;
    font-size: 13px;
    margin: 9px 0
}

.site-footer a:hover {
    color: #79cdf2
}

.footer-bottom {
    border-top: 1px solid #244158;
    padding: 19px 0;
    font-size: 12px;
    text-align: center
}

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

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

.legal-hero p {
    max-width: 700px;
    color: var(--muted)
}

.legal-content {
    padding: 40px 0
}

.legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px
}

.legal-nav {
    position: sticky;
    top: 105px;
    height: max-content;
    border: 1px solid var(--line);
    padding: 20px;
    background: var(--ice)
}

.legal-nav a {
    display: block;
    padding: 9px 5px;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue)
}

.legal-copy h2 {
    font-size: 20px;
    margin-top: 36px
}

.legal-copy h2:first-child {
    margin-top: 0
}

.legal-copy p,
.legal-copy li {
    color: #526676
}

.legal-note {
    background: var(--sky);
    border-left: 4px solid var(--blue);
    padding: 18px 20px
}

@media(max-width:900px) {
    .menu-toggle {
        display: block
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 20px;
        flex-direction: column;
        border-bottom: 1px solid var(--line)
    }

    .main-nav.open {
        display: flex
    }

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

    .hero {
        background: var(--ice)
    }

    .hero-visual {
        max-width: 700px
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .destination-grid,
    .review-grid {
        grid-template-columns: repeat(2, 1fr)
    }

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

    .legal-layout {
        grid-template-columns: 1fr
    }

    .legal-nav {
        position: static
    }

    .route-card {
        left: 28px
    }

    .split-image img {
        height: 460px
    }
}

@media(max-width:620px) {
    .wrap {
        width: min(100% - 28px, 1180px)
    }

    .hero {
        padding: 46px 0
    }

    .hero-grid {
        gap: 35px
    }

    h1 {
        font-size: 28px
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch
    }

    .hero-points {
         grid-template-columns: repeat(3, 1fr);
    }

    .hero-points div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
        padding: 10px 0;
        margin: 0
    }

    .hero-visual img {
        height: 360px
    }

    .route-card {
        position: static;
        min-width: 0
    }

    .service-grid,
    .destination-grid,
    .process-grid,
    .review-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .service-grid article {
        border-right: 0;
        border-bottom: 1px solid var(--line)
    }

    .section {
        padding: 64px 0
    }

    .split-image img {
        height: 360px
    }

    .check-list {
        grid-template-columns: 1fr
    }

    .cta-band .wrap {
        align-items: flex-start;
        flex-direction: column
    }

    .faq-grid {
        gap: 30px
    }

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