:root {
    --ink: #3d4d62;
    --ink-soft: #5f7289;
    --heading: #6f87a6;
    --bar: rgba(100, 122, 146, 0.9);
    --bar-strong: rgba(88, 108, 128, 0.95);
    --footer: rgba(214, 226, 235, 0.92);
    --glass: rgba(255, 255, 255, 0.74);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    height: 100%;
}

body {
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    font-family: "Roboto", sans-serif;
    color: var(--ink);
    background:
        linear-gradient(rgba(245, 248, 250, 0.64), rgba(245, 248, 250, 0.64)),
        radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.04) 0, rgba(255, 255, 255, 0.3) 22%, rgba(255, 255, 255, 0.72) 52%, rgba(240, 244, 247, 0.9) 100%),
        url("arlinetickets-hero1.webp") center center / cover no-repeat;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(140deg, transparent 0%, transparent 47%, rgba(255, 255, 255, 0.3) 49%, transparent 51%, transparent 100%),
        linear-gradient(40deg, transparent 0%, transparent 51%, rgba(255, 255, 255, 0.22) 53%, transparent 55%, transparent 100%);
    opacity: 0.7;
}

.page {
    position: relative;
    z-index: 1;
    height: 100vh;
    height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto auto;
    overflow: hidden;
}

.hero {
    position: relative;
    min-height: 0;
    display: grid;
    place-items: center;
    padding: clamp(28px, 4vh, 44px) 24px clamp(20px, 3vh, 32px);
    text-align: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.54) 45%, rgba(243, 246, 248, 0.78) 100%);
}

.content {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    padding: clamp(18px, 2vw, 30px);
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05));
    animation: fade-up 0.85s ease-out both;
}

h1 {
    margin: 0 0 clamp(20px, 3vh, 34px);
    color: var(--heading);
    font-size: clamp(2.25rem, 4.5vw, 3.9rem);
    font-weight: 900;
    letter-spacing: -0.04em;
}

a.phone>span,
.phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: clamp(18px, 3vh, 34px);
    color: var(--ink);
    font-size: clamp(1.4rem, 2.4vw, 2.15rem);
    font-weight: 700;
    text-decoration: none;
}

.phone-mark,
.phone-leaf {
    color: #4f647c;
    font-size: 0.8em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lead {
    margin: 0 0 14px;
    color: #505864;
    font-size: clamp(1.85rem, 3.6vw, 3.1rem);
    font-weight: 300;
}

.email {
    display: inline-block;
    margin-bottom: clamp(18px, 3vh, 28px);
    color: var(--ink);
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 900;
    line-height: 1.05;
    text-decoration: none;
}

.meta {
    margin: 0;
    color: var(--ink);
    font-size: clamp(1rem, 1.5vw, 1.5rem);
    font-weight: 700;
    line-height: 1.45;
}

.meta+.meta {
    margin-top: 12px;
}

.exclusive {
    margin-top: clamp(18px, 2.6vh, 28px);
    color: var(--heading);
    font-size: clamp(1.2rem, 2vw, 1.85rem);
    font-weight: 700;
}

.destinations {
    display: grid;
    grid-template-columns: repeat(10, minmax(0, 1fr));
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    background: linear-gradient(180deg, var(--bar) 0%, var(--bar-strong) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.destinations li {
    min-width: 0;
}

.destinations span {
    display: block;
    padding: 10px 8px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.footer {
    background: var(--footer);
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.seal-link {
    display: inline-grid;
    place-items: center;
    text-decoration: none;
}

.seal-link:hover .seal,
.seal-link:focus-visible .seal {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(46, 111, 193, 0.18);
}

.seal-link:focus-visible {
    outline: 2px solid rgba(42, 124, 255, 0.35);
    outline-offset: 4px;
    border-radius: 999px;
}

.seal {
    width: 40px;
    height: 40px;
    margin: 0 auto 6px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 18px rgba(91, 111, 131, 0.12);
    padding: 6px;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.seal-icon {
    display: block;
    width: 100%;
    height: auto;
}

.address {
    margin: 0;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 500;
}

.copyright {
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: 0.86rem;
    font-style: italic;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@media (max-width: 980px) {
    .destinations {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body {
        overflow: auto;
    }

    .page {
        min-height: 100vh;
        min-height: 100dvh;
        height: auto;
        max-height: none;
    }



    .content {
        padding: 16px 10px;
        border-radius: 20px;
    }

    .phone {
        flex-wrap: wrap;
        line-height: 1.2;
    }

    .email {
        font-size: 1.5em;
    }

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

    .destinations span {
        padding: 5px;
        font-size: 0.78rem;
    }

    .footer {
        padding: 10px 16px 16px;
    }
}