@font-face {
    font-family: "Italiana";
    src: url(../fonts/Italiana-Regular.ttf);
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: "Albert Sans";
    src: url(../fonts/AlbertSans-VariableFont_wght.ttf);
    font-display: swap;
}

:root {
    --bg: #071722;
    --bg-deep: #03101a;
    --surface: #0d2230;
    --surface-2: #132b39;
    --paper: #f1eadc;
    --sand: #e8ddc9;
    --text: #f5f0e7;
    --muted: #a9b3b6;
    --ink: #142028;
    --ink-muted: #53626a;
    --gold: #d6a95d;
    --gold-2: #f0cf91;
    --line: rgba(214, 169, 93, .26);
    --line-light: rgba(255, 255, 255, .11);
    --white: #fff;
    --font-display: 'Italiana', 'Bodoni MT', serif;
    --font-body: 'Albert Sans', 'Avenir Next', sans-serif;
    --s1: 8px;
    --s2: 16px;
    --s3: 24px;
    --s4: 32px;
    --s5: 48px;
    --s6: 64px;
    --s7: 88px;
    --s8: 120px;
    --display: clamp(3rem, 7vw, 6.8rem);
    --h1: clamp(2.7rem, 5.5vw, 5.3rem);
    --h2: clamp(2.1rem, 4vw, 3.7rem);
    --h3: clamp(1.28rem, 2vw, 1.65rem);
    --body: 1rem;
    --small: .86rem;
    --radius: 2px;
    --radius-lg: 20px;
    --shadow: 0 24px 80px rgba(0, 0, 0, .26);
    --max: 1240px;
    --ease: cubic-bezier(.2, .8, .2, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: var(--body);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    z-index: 200;
    background: var(--gold);
    color: var(--ink);
    padding: 10px 16px
}

.skip-link:focus {
    top: 12px
}

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

.section {
    padding: var(--s8) 0
}

.section--tight {
    padding: var(--s6) 0
}

.section--sand {
    background: var(--paper);
    color: var(--ink)
}

.section--dark {
    background: var(--bg-deep)
}

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--gold);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 700;
    margin-bottom: 12px
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -.02em
}

h1 {
    font-size: var(--h1)
}

h2 {
    font-size: var(--h2)
}

h3 {
    font-size: var(--h3)
}

p {
    color: var(--muted)
}

strong {
    font-weight: 600
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border: 1px solid transparent;
    transition: .25s var(--ease);
    font-size: .92rem;
    font-weight: 600
}

.button:hover {
    transform: translateY(-2px)
}

.button--gold {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: var(--ink);
    box-shadow: 0 10px 34px rgba(214, 169, 93, .18)
}

.button--gold:hover {
    box-shadow: 0 16px 40px rgba(214, 169, 93, .3)
}

.button--glass {
    border-color: rgba(255, 255, 255, .4);
    background: rgba(5, 19, 31, .28);
    backdrop-filter: blur(8px)
}

.button--glass:hover {
    background: rgba(255, 255, 255, .1)
}

.button--ghost,
.button--ghost-dark {
    border-color: var(--line);
    color: var(--gold-2)
}

.button--ghost:hover {
    background: rgba(214, 169, 93, .08)
}

.button--ghost-dark {
    color: var(--ink);
    border-color: rgba(20, 32, 40, .22)
}

.button--ghost-dark:hover {
    background: var(--ink);
    color: var(--white)
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--gold-2);
    font-weight: 600
}

.text-link i {
    transition: transform .2s
}

.text-link:hover i {
    transform: translateX(4px)
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(3, 16, 26, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-light)
}

.site-header.scrolled {
    box-shadow: 0 14px 40px rgba(0, 0, 0, .22)
}

.header-row {
    height: 78px;
    display: flex;
    align-items: center;
    gap: 28px
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: max-content
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: cover
}

.brand span {
    display: flex;
    flex-direction: column;
    line-height: 1
}

.brand b {
    font-family: var(--font-display);
    font-size: 1.58rem;
    letter-spacing: .12em;
    font-weight: 400
}

.brand small {
    font-size: .58rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-2);
    margin-top: 6px
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 4px
}

.desktop-nav a,
.mobile-nav a {
    padding: 9px 11px;
    color: #d5dde0;
    font-size: .88rem;
    position: relative
}

.desktop-nav a:after {
    content: '';
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: .2s
}

.desktop-nav a:hover:after,
.desktop-nav a.active:after {
    transform: scaleX(1)
}

.ad-label {
    border: 1px solid var(--gold);
    background: var(--gold);
    padding: 6px 10px;
    color: var(--ink);
    font-size: .66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em
}

.menu-toggle {
    display: none;
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--line-light);
    color: var(--text);
    width: 46px;
    height: 46px
}

.menu-toggle i {
    font-size: 1.4rem
}

.mobile-nav {
    display: none;
    background: var(--bg-deep);
    border-top: 1px solid var(--line-light);
    padding: 8px 20px 18px
}

.mobile-nav.open {
    display: grid
}

.mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line-light)
}

.aircraft-marquee {
    overflow: hidden;
    background: #04111b;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    height: 38px;
    display: flex;
    align-items: center;
    width: 100%
}

.marquee-track {
    display: flex;
    flex: none;
    width: max-content;
    min-width: max-content;
    will-change: transform;
    animation: marquee 32s linear infinite
}

.marquee-group {
    display: flex;
    flex: none;
    align-items: center;
    min-width: max-content
}

.marquee-group span {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: none;
    white-space: nowrap;
    color: var(--gold-2);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 0 34px 0 0
}

.marquee-group span:after {
    content: '•';
    margin-left: 26px;
    color: var(--gold)
}

@keyframes marquee {
    from {
        transform: translate3d(0, 0, 0)
    }

    to {
        transform: translate3d(-50%, 0, 0)
    }
}

.hero-home {
    min-height: 720px;
    position: relative;
    display: flex;
    align-items: end;
    overflow: hidden
}

.hero-media {
    position: absolute;
    inset: 0;
    background: var(--surface)
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 13, 21, .96) 0%, rgba(2, 13, 21, .75) 42%, rgba(2, 13, 21, .2) 72%, rgba(2, 13, 21, .35) 100%), linear-gradient(0deg, rgba(3, 16, 26, .9), transparent 42%)
}

.hero-home__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .55fr);
    gap: 56px;
    align-items: end;
    padding: 104px 0 72px
}

.hero-copy {
    max-width: 850px
}

.route-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    background: rgba(5, 19, 31, .42);
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: .78rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #e9e2d7
}

.hero-copy h1 {
    font-size: var(--display);
    max-width: 920px;
    margin: 18px 0 24px
}

.hero-copy h1 em {
    font-style: normal;
    color: var(--gold-2)
}

.hero-copy>p {
    max-width: 700px;
    font-size: 1.12rem;
    color: #dce2e4
}

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

.flight-widget {
    border: 1px solid rgba(214, 169, 93, .48);
    padding: 20px;
    background: rgba(3, 16, 26, .6);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow)
}

.widget-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line-light);
    font-size: .64rem;
    letter-spacing: .14em;
    color: var(--gold-2)
}

.radar-mark {
    height: 160px;
    display: grid;
    place-items: center;
    position: relative;
    background: repeating-radial-gradient(circle at center, transparent 0 27px, rgba(214, 169, 93, .12) 28px 29px);
    margin: 10px 0
}

.radar-mark:before,
.radar-mark:after {
    content: '';
    position: absolute;
    background: rgba(214, 169, 93, .15)
}

.radar-mark:before {
    width: 100%;
    height: 1px
}

.radar-mark:after {
    height: 100%;
    width: 1px
}

.radar-mark i {
    font-size: 2.2rem;
    color: var(--gold-2);
    transform: rotate(-20deg)
}

.flight-widget dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0
}

.flight-widget dl div {
    padding: 10px;
    border-left: 1px solid var(--line-light)
}

.flight-widget dl div:first-child {
    border-left: 0
}

.flight-widget dt {
    font-size: .62rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--muted)
}

.flight-widget dd {
    margin: 3px 0 0;
    color: var(--text);
    font-size: .8rem
}

.story-stat {
    background: linear-gradient(180deg, #071722, #091d29)
}

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

.story-panel {
    border-left: 2px solid var(--gold);
    padding: 30px 34px;
    background: linear-gradient(90deg, rgba(214, 169, 93, .05), transparent)
}

.story-panel h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 18px
}

.story-panel p {
    margin-bottom: 12px
}

.story-sign {
    margin-top: 24px;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--gold-2)
}

.story-sign span {
    font-family: var(--font-body);
    font-size: .76rem;
    color: var(--muted);
    margin-left: 8px
}

.stats-board {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line)
}

.stats-board>div {
    background: var(--surface);
    padding: 25px;
    display: grid;
    min-height: 160px;
    align-content: center
}

.stats-board i {
    font-size: 1.65rem;
    color: var(--gold);
    margin-bottom: 12px
}

.stats-board strong {
    font-family: var(--font-display);
    font-size: 2.35rem;
    font-weight: 400
}

.stats-board span {
    font-size: .78rem;
    color: var(--muted);
    max-width: 150px
}

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

.section-head h2 {
    max-width: 820px;
    margin: 0
}

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

.experience-card {
    background: var(--surface);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: .25s
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(214, 169, 93, .58)
}

.experience-card--wide {
    grid-column: 1/-1;
    display: grid;
    grid-template-columns: 1.2fr 1fr
}

.experience-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--surface-2)
}

.experience-card--wide .experience-img {
    aspect-ratio: auto;
    min-height: 390px
}

.experience-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s var(--ease)
}

.experience-card:hover img {
    transform: scale(1.035)
}

.experience-img>span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--ink);
    padding: 5px 9px;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em
}

.experience-copy {
    padding: 26px
}

.experience-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: start
}

.experience-top h3 {
    font-size: 1.7rem
}

.experience-top b {
    white-space: nowrap;
    color: var(--gold-2)
}

.route-line {
    font-size: .8rem;
    color: #d7dee0
}

.route-line i {
    color: var(--gold)
}

.experience-copy>a {
    display: inline-flex;
    gap: 7px;
    align-items: center;
    color: var(--gold-2);
    font-weight: 600;
    margin-top: 10px
}

.chips,
.route-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.chips span,
.route-tags span {
    border: 1px solid var(--line);
    padding: 6px 9px;
    color: #d8e0e2;
    font-size: .72rem
}

.gallery-teaser {
    background: var(--paper);
    color: var(--ink)
}

.gallery-teaser__grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 0;
    align-items: stretch
}

.gallery-teaser__image {
    position: relative;
    min-height: 480px;
    overflow: hidden
}

.gallery-teaser__image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.image-coordinate {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(3, 16, 26, .86);
    color: var(--gold-2);
    font-size: .68rem;
    letter-spacing: .12em;
    padding: 7px 10px
}

.gallery-teaser__copy {
    padding: 64px;
    background: var(--sand);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.gallery-teaser__copy p {
    color: var(--ink-muted)
}

.routes-section {
    background: radial-gradient(circle at 80% 30%, rgba(214, 169, 93, .08), transparent 30%), var(--bg-deep)
}

.routes-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: center
}

.routes-copy p {
    max-width: 580px
}

.route-board {
    border: 1px solid var(--line);
    padding: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .03), transparent);
    position: relative
}

.route-axis {
    display: flex;
    justify-content: space-between;
    font-size: .68rem;
    letter-spacing: .14em;
    color: var(--gold-2)
}

.route-line-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 24px 6px 34px;
    position: relative
}

.route-line-visual:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), var(--gold-2), var(--gold))
}

.route-line-visual span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: var(--bg-deep);
    border: 2px solid var(--gold);
    position: relative;
    z-index: 2
}

.route-note {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 0;
    border-top: 1px solid var(--line-light)
}

.route-note b {
    color: var(--gold-2)
}

.route-note span {
    color: var(--muted);
    font-size: .85rem
}

.services-home {
    background: var(--surface)
}

.service-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: repeat(2, minmax(180px, auto));
    gap: 12px
}

.service-feature {
    grid-row: 1/3;
    padding: 34px;
    border: 1px solid var(--line);
    background: linear-gradient(160deg, rgba(214, 169, 93, .12), rgba(3, 16, 26, .28));
    display: flex;
    flex-direction: column;
    justify-content: end
}

.service-feature i {
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: auto
}

.service-feature h3 {
    font-size: 2.3rem
}

.service-cell {
    padding: 24px;
    border: 1px solid var(--line-light);
    background: rgba(3, 16, 26, .28);
    transition: .25s
}

.service-cell:hover {
    border-color: var(--gold);
    transform: translateY(-3px)
}

.service-cell i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 18px
}

.service-cell p,
.service-feature p {
    margin-bottom: 0
}

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

.fleet-card {
    border: 1px solid var(--line);
    background: var(--surface);
    padding-bottom: 22px;
    transition: .25s
}

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

.fleet-img {
    overflow: hidden;
    background: var(--surface-2)
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s
}

.fleet-card:hover img {
    transform: scale(1.04)
}

.fleet-card>span,
.fleet-card>h3,
.fleet-card>p {
    margin-left: 20px;
    margin-right: 20px
}

.fleet-card>span {
    display: block;
    margin-top: 18px;
    font-size: .68rem;
    letter-spacing: .15em;
    color: var(--gold);
    text-transform: uppercase
}

.fleet-card h3 {
    font-size: 1.7rem;
    margin-top: 7px;
    margin-bottom: 8px
}

.fleet-card p {
    font-size: .86rem;
    margin-bottom: 0
}

.about-home {
    background: var(--paper);
    color: var(--ink)
}

.about-home__grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center
}

.about-visual {
    position: relative;
    min-height: 520px
}

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

.altimeter {
    position: absolute;
    right: -28px;
    bottom: 34px;
    background: var(--bg-deep);
    color: var(--text);
    padding: 18px 24px;
    border: 1px solid var(--gold);
    display: grid
}

.altimeter span,
.altimeter small {
    font-size: .64rem;
    letter-spacing: .15em;
    color: var(--gold-2);
    text-transform: uppercase
}

.altimeter strong {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 400
}

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

.about-copy .text-link {
    color: #8d6226
}

.section--cta {
    background: linear-gradient(135deg, #0c2431, #071722)
}

.cta-panel {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    padding: 44px;
    border: 1px solid var(--line);
    background: linear-gradient(90deg, rgba(214, 169, 93, .08), transparent)
}

.cta-panel h2 {
    margin-bottom: 12px;
    max-width: 820px
}

.cta-panel p {
    max-width: 700px;
    margin-bottom: 0
}

.site-footer {
    background: #020c13;
    border-top: 1px solid var(--line);
    padding: 70px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr .65fr .9fr;
    gap: 38px
}

.footer-grid>div {
    min-width: 0
}

.brand--footer {
    margin-bottom: 20px
}

.footer-grid h3 {
    font-family: var(--font-body);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--gold-2);
    margin-bottom: 18px
}

.footer-grid p,
.footer-grid a {
    font-size: .78rem;
    color: #aeb9bc;
    line-height: 1.65
}

.footer-grid a:not(.brand):not(.button) {
    display: block;
    margin-bottom: 8px;
    text-decoration: underline;
    text-underline-offset: 4px
}

.footer-grid .button {
    display: inline-flex;
    margin-top: 12px;
    color: var(--gold-2)
}

.footer-bottom {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid var(--line-light);
    display: flex;
    justify-content: space-between;
    gap: 24px
}

.footer-bottom p,
.footer-bottom a {
    margin: 0;
    color: #77878e;
    font-size: .72rem
}

.inner-hero,
.legal-hero {
    background: linear-gradient(135deg, var(--surface), var(--bg-deep));
    border-bottom: 1px solid var(--line);
    padding: 90px 0 72px;
    position: relative;
    overflow: hidden
}

.inner-hero:after,
.legal-hero:after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(214, 169, 93, .15);
    border-radius: 50%;
    right: -160px;
    top: -180px;
    box-shadow: 0 0 0 70px rgba(214, 169, 93, .03), 0 0 0 140px rgba(214, 169, 93, .02)
}

.inner-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr .45fr;
    gap: 60px;
    align-items: end;
    position: relative;
    z-index: 2
}

.inner-hero h1 {
    margin-bottom: 18px
}

.inner-hero p {
    max-width: 760px;
    font-size: 1.08rem
}

.inner-hero__marker {
    justify-self: end;
    border: 1px solid var(--line);
    width: 230px;
    height: 230px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.inner-hero__marker i {
    font-size: 2.6rem;
    color: var(--gold);
    margin-bottom: 18px
}

.inner-hero__marker b {
    font-size: .7rem;
    letter-spacing: .15em;
    color: var(--gold-2)
}

.inner-hero__marker span {
    font-size: .74rem;
    color: var(--muted)
}

.detail-stack {
    display: grid;
    gap: 42px
}

.detail-flight {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    border: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden
}

.detail-flight--reverse {
    grid-template-columns: 1.15fr .85fr
}

.detail-flight--reverse .detail-flight__media {
    order: 2
}

.detail-flight__media {
    position: relative;
    min-height: 100%;
    background: var(--surface-2)
}

.detail-flight__media img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.detail-flight__media>span {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--gold);
    color: var(--ink);
    font-size: .68rem;
    font-weight: 700;
    padding: 6px 10px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.detail-flight__content {
    padding: 40px
}

.detail-title {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: start
}

.detail-title h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem)
}

.detail-title>strong {
    white-space: nowrap;
    color: var(--gold-2);
    font-size: 1.2rem
}

.detail-title small {
    display: block;
    color: var(--muted);
    font-size: .7rem;
    font-weight: 400
}

.flight-facts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: -6px 0 24px
}

.flight-facts span {
    border: 1px solid var(--line-light);
    padding: 6px 9px;
    font-size: .76rem;
    color: #d6dfe1
}

.detail-flight__content h3 {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-2);
    margin-top: 22px
}

.detail-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin: 30px 0
}

.detail-columns h4 {
    color: var(--gold-2);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em
}

.timeline,
.check-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.timeline li,
.check-list li {
    position: relative;
    padding: 7px 0 7px 22px;
    border-bottom: 1px solid var(--line-light);
    color: #c8d2d4;
    font-size: .86rem
}

.timeline li:before {
    content: '';
    position: absolute;
    left: 2px;
    top: 14px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1px solid var(--gold)
}

.timeline--time li b {
    display: inline-block;
    width: 54px;
    color: var(--gold-2)
}

.check-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold)
}

.highlights {
    padding: 14px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-size: .8rem
}

.highlights b {
    color: var(--gold-2);
    margin-right: 10px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 0;
    padding: 0;
    background: var(--surface);
    cursor: zoom-in;
    min-height: 260px
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(6) {
    grid-column: span 7
}

.gallery-item:nth-child(2),
.gallery-item:nth-child(5) {
    grid-column: span 5
}

.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(7),
.gallery-item:nth-child(8) {
    grid-column: span 6
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s var(--ease)
}

.gallery-item:hover img {
    transform: scale(1.04)
}

.gallery-item span {
    position: absolute;
    left: 12px;
    bottom: 12px;
    background: rgba(3, 16, 26, .82);
    color: var(--gold-2);
    padding: 6px 9px;
    font-size: .65rem;
    letter-spacing: .14em
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(0, 0, 0, .94);
    display: none;
    place-items: center;
    padding: 60px
}

.lightbox.open {
    display: grid
}

.lightbox img {
    max-width: min(1200px, 90vw);
    max-height: 82vh
}

.lightbox button {
    position: absolute;
    right: 24px;
    top: 24px;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: transparent;
    color: #fff;
    font-size: 1.5rem
}

.editorial-band {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: end
}

.editorial-band p {
    color: var(--ink-muted);
    font-size: 1.05rem
}

.services-deep {
    display: grid;
    gap: 18px
}

.service-large {
    display: grid;
    grid-template-columns: 1fr .85fr;
    border: 1px solid var(--line);
    background: var(--surface);
    overflow: hidden
}

.service-large>div {
    padding: 42px
}

.service-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px
}

.service-deep-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.service-deep-grid article {
    border: 1px solid var(--line-light);
    padding: 28px;
    background: rgba(255, 255, 255, .02)
}

.service-deep-grid i {
    font-size: 2rem;
    color: var(--gold)
}

.service-deep-grid h3 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    margin: 20px 0 10px
}

.service-deep-grid p {
    margin: 0;
    font-size: .87rem
}

.process-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 70px
}

.process-grid p {
    color: var(--ink-muted)
}

.process-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.process-list li {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 20px;
    border-top: 1px solid rgba(20, 32, 40, .16);
    padding: 18px 0
}

.process-list>li>b {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: #9b6b2d
}

.process-list span {
    display: grid
}

.process-list strong {
    color: var(--ink);
    font-size: 1rem;
    margin-bottom: 3px
}

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

.about-story-images {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    gap: 12px;
    align-items: end
}

.about-story-images img {
    width: 100%;
    height: 520px;
    object-fit: cover
}

.about-story-images img+img {
    height: 360px
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line)
}

.values-grid article {
    background: var(--bg-deep);
    padding: 38px
}

.values-grid span {
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .15em
}

.values-grid h3 {
    font-size: 1.8rem;
    margin: 22px 0 12px
}

.company-fact-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 40px;
    gap: 40px
}

.company-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.company-facts p {
    border-left: 1px solid var(--line);
    padding-left: 16px;
    margin: 0
}

.company-facts strong {
    display: block;
    color: var(--gold-2);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

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

.contact-card,
.contact-form {
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 38px
}

.contact-facts {
    display: grid;
    gap: 6px;
    margin: 24px 0
}

.contact-facts p {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 8px;
    border-top: 1px solid var(--line-light);
    padding: 13px 0;
    margin: 0
}

.contact-facts i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 3px
}

.contact-facts span {
    display: grid
}

.contact-facts b {
    color: var(--gold-2);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .08em
}

.contact-note {
    padding: 18px;
    border: 1px solid var(--line);
    background: rgba(214, 169, 93, .06)
}

.contact-note b {
    color: var(--gold-2)
}

.contact-note p {
    font-size: .82rem;
    margin: 6px 0 0
}

.contact-form h2 {
    margin-bottom: 30px
}

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

.contact-form label {
    display: grid;
    gap: 8px;
    color: #d7dfe1;
    font-size: .82rem;
    margin-bottom: 16px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line-light);
    background: #061621;
    color: var(--text);
    padding: 13px 14px;
    outline: none;
    transition: .2s
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(214, 169, 93, .08)
}

.contact-form textarea {
    resize: vertical
}

.consent {
    grid-template-columns: 20px 1fr !important;
    align-items: start
}

.consent input {
    width: 18px;
    height: 18px;
    margin: 3px 0 0
}

.consent a {
    text-decoration: underline;
    color: var(--gold-2)
}

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

.faq-layout p {
    color: var(--ink-muted)
}

.faq {
    border-top: 1px solid rgba(20, 32, 40, .18)
}

.faq-item {
    border-bottom: 1px solid rgba(20, 32, 40, .18)
}

.faq-item button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--ink);
    padding: 18px 0;
    text-align: left;
    font-weight: 600
}

.faq-item>div {
    display: grid;
    grid-template-rows: 0fr;
    transition: .3s
}

.faq-item>div p {
    overflow: hidden;
    margin: 0
}

.faq-item.active>div {
    grid-template-rows: 1fr
}

.faq-item.active>div p {
    padding-bottom: 18px
}

.faq-item.active button i {
    transform: rotate(45deg)
}

.thanks-hero {
    padding: 110px 0;
    background: linear-gradient(135deg, var(--surface), var(--bg-deep))
}

.thanks-grid {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    align-items: center
}

.thanks-icon {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    display: grid;
    place-items: center
}

.thanks-icon i {
    font-size: 3.4rem;
    color: var(--gold)
}

.thanks-grid h1 {
    margin-bottom: 18px
}

.next-steps {
    display: grid;
    gap: 36px
}

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

.next-grid article {
    border: 1px solid var(--line);
    padding: 30px;
    background: var(--surface)
}

.next-grid b {
    color: var(--gold);
    font-size: .72rem
}

.next-grid h3 {
    font-size: 1.7rem;
    margin: 22px 0 10px
}

.useful-info {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    align-items: end
}

.useful-info p {
    color: var(--ink-muted)
}

.contact-mini {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    border: 1px solid var(--line);
    padding: 36px
}

.contact-mini>div:last-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px
}

.contact-mini p {
    margin: 0
}

.contact-mini b {
    display: block;
    color: var(--gold-2);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .1em
}

.legal-hero {
    padding: 78px 0 60px
}

.legal-hero h1 {
    margin-bottom: 12px
}

.legal-content {
    max-width: 960px;
    padding-top: 70px;
    padding-bottom: 100px
}

.legal-content h2 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    line-height: 1.35;
    margin: 42px 0 12px;
    color: var(--gold-2);
    letter-spacing: .02em
}

.legal-content p {
    font-size: .97rem;
    line-height: 1.85
}

.legal-content .legal-date {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: .8rem;
    color: var(--gold-2)
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.is-visible {
    opacity: 1;
    transform: none
}

:focus-visible {
    outline: 2px solid var(--gold-2);
    outline-offset: 3px
}

@media (max-width:1100px) {
    .desktop-nav {
        display: none
    }

    .menu-toggle {
        display: grid;
        place-items: center
    }

    .ad-label {
        margin-left: auto
    }

    .menu-toggle {
        margin-left: 0
    }

    .hero-home__inner {
        grid-template-columns: 1fr
    }

    .flight-widget {
        max-width: 540px
    }

    .story-stat__grid,
    .routes-grid,
    .about-home__grid,
    .contact-grid,
    .faq-layout,
    .about-story-grid,
    .process-grid {
        grid-template-columns: 1fr
    }

    .experience-card--wide {
        grid-template-columns: 1fr
    }

    .experience-card--wide .experience-img {
        min-height: 320px
    }

    .service-bento {
        grid-template-columns: 1fr 1fr
    }

    .service-feature {
        grid-row: auto;
        grid-column: 1/-1;
        min-height: 300px
    }

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

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

    .detail-flight,
    .detail-flight--reverse {
        grid-template-columns: 1fr
    }

    .detail-flight--reverse .detail-flight__media {
        order: 0
    }

    .detail-flight__media {
        min-height: 420px
    }

    .gallery-teaser__grid,
    .service-large {
        grid-template-columns: 1fr
    }

    .gallery-teaser__copy {
        padding: 44px
    }

    .service-deep-grid {
        grid-template-columns: 1fr 1fr
    }

    .inner-hero__grid {
        grid-template-columns: 1fr .35fr
    }

    .company-fact-card {
        grid-template-columns: 1fr
    }

    .about-visual .altimeter {
        right: 20px
    }
}

@media (max-width:760px) {
    .shell {
        width: min(calc(100% - 28px), var(--max))
    }

    .section {
        padding: 74px 0
    }

    .section--tight {
        padding: 50px 0
    }

    .header-row {
        height: 70px
    }

    .brand img {
        width: 40px;
        height: 40px
    }

    .brand b {
        font-size: 1.34rem
    }

    .ad-label {
        font-size: .56rem;
        padding: 4px 6px;
        margin-left: auto
    }

    .hero-home {
        min-height: 680px
    }

    .hero-home__inner {
        padding: 80px 0 48px
    }

    .hero-copy h1 {
        font-size: clamp(3rem, 13vw, 4.8rem)
    }

    .hero-copy>p {
        font-size: 1rem
    }

    .flight-widget {
        display: none
    }

    .story-stat__grid {
        gap: 18px
    }

    .story-panel {
        padding: 24px 20px
    }

    .stats-board {
        grid-template-columns: 1fr 1fr
    }

    .stats-board>div {
        padding: 18px;
        min-height: 135px
    }

    .stats-board strong {
        font-size: 1.9rem
    }

    .section-head {
        display: grid;
        gap: 16px
    }

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

    .experience-card--wide {
        grid-column: auto
    }

    .experience-card--wide .experience-img {
        min-height: 250px
    }

    .experience-top {
        display: grid
    }

    .gallery-teaser__image {
        min-height: 340px
    }

    .gallery-teaser__copy {
        padding: 32px 24px
    }

    .routes-grid {
        gap: 32px
    }

    .route-board {
        padding: 24px 16px
    }

    .service-bento {
        grid-template-columns: 1fr
    }

    .service-feature {
        grid-column: auto
    }

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

    .about-visual {
        min-height: 360px
    }

    .about-visual img {
        height: 360px
    }

    .cta-panel {
        display: grid;
        padding: 28px 22px
    }

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

    .footer-bottom {
        display: grid
    }

    .inner-hero {
        padding: 66px 0 50px
    }

    .inner-hero__grid {
        grid-template-columns: 1fr
    }

    .inner-hero__marker {
        justify-self: start;
        width: 160px;
        height: 160px
    }

    .detail-flight__media {
        min-height: 280px
    }

    .detail-flight__content {
        padding: 24px
    }

    .detail-title {
        display: grid
    }

    .detail-title>strong {
        white-space: normal
    }

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

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr
    }

    .gallery-item,
    .gallery-item:nth-child(n) {
        grid-column: auto;
        min-height: 250px
    }

    .lightbox {
        padding: 20px
    }

    .editorial-band,
    .service-large,
    .about-story-grid,
    .useful-info,
    .contact-mini {
        grid-template-columns: 1fr
    }

    .service-large>div {
        padding: 28px
    }

    .service-deep-grid {
        grid-template-columns: 1fr
    }

    .process-grid {
        gap: 30px
    }

    .about-story-images {
        grid-template-columns: 1fr 1fr
    }

    .about-story-images img {
        height: 360px
    }

    .about-story-images img+img {
        height: 300px
    }

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

    .company-facts {
        grid-template-columns: 1fr
    }

    .contact-card,
    .contact-form {
        padding: 26px
    }

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

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

    .thanks-icon {
        width: 100px;
        height: 100px
    }

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

    .contact-mini>div:last-child {
        grid-template-columns: 1fr
    }

    .legal-content {
        padding-top: 46px;
        padding-bottom: 70px
    }
}

@media (prefers-reduced-motion:reduce) {
    * {
        scroll-behavior: auto !important;
        animation-duration: .001ms !important;
        transition-duration: .001ms !important
    }

    .marquee-track {
        animation-duration: 32s !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}
.cookie-banner {
    position: fixed;
    top: 94px;
    left: 50%;
    z-index: 9999;
    width: min(860px, calc(100% - 40px));
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -12px);
    pointer-events: none;
    transition:
        opacity .28s var(--ease),
        visibility .28s var(--ease),
        transform .28s var(--ease);
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.cookie-notice {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr) auto;
    align-items: center;
    background: rgba(3, 16, 26, .97);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: 0 16px 46px rgba(0, 0, 0, .22);
    backdrop-filter: blur(18px);
}

.cookie-notice::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 84px;
    height: 2px;
    background: var(--gold);
}

.cookie-notice {
    position: relative;
}

.cookie-notice__meta {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
    padding: 17px 18px;
    border-right: 1px solid var(--line-light);
}

.cookie-notice__meta span:first-child {
    color: var(--gold-2);
    font-family: var(--font-display);
    font-size: 1.2rem;
    line-height: 1;
}

.cookie-notice__meta span:last-child {
    color: var(--muted);
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cookie-notice__message {
    min-width: 0;
    padding: 15px 22px;
}

.cookie-notice__message strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text);
    font-family: var(--font-display);
    font-size: 1.18rem;
    font-weight: 400;
    line-height: 1.15;
}

.cookie-notice__message p {
    margin: 0;
    color: var(--muted);
    font-size: .72rem;
    line-height: 1.5;
}

.cookie-notice__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 6px;
}

.cookie-notice__legal a {
    color: var(--gold-2);
    font-size: .58rem;
    border-bottom: 1px solid rgba(240, 207, 145, .3);
    padding-bottom: 1px;
    transition:
        color .2s ease,
        border-color .2s ease;
}

.cookie-notice__legal a:hover {
    color: var(--white);
    border-color: var(--gold);
}

.cookie-notice__actions {
    align-self: stretch;
    display: grid;
    grid-template-columns: 1fr;
    min-width: 150px;
    border-left: 1px solid var(--line-light);
}

.cookie-notice__button {
    min-height: 48px;
    padding: 9px 16px;
    border: 0;
    border-radius: 0;
    font-size: .65rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        background .2s ease,
        color .2s ease;
}

.cookie-notice__button--necessary {
    background: transparent;
    color: #d5dde0;
}

.cookie-notice__button--necessary:hover {
    background: var(--surface);
    color: var(--gold-2);
}

.cookie-notice__button--accept {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: var(--ink);
    border-top: 1px solid var(--line-light);
}

.cookie-notice__button--accept:hover {
    background: var(--gold-2);
}

.cookie-settings-link {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 9000;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 0 12px;
    background: var(--bg-deep);
    color: var(--gold-2);
    border: 1px solid var(--line);
    border-radius: 0;
    font-family: var(--font-body);
    font-size: .61rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background .2s ease,
        border-color .2s ease,
        color .2s ease;
}

.cookie-settings-link__mark {
    width: 5px;
    height: 5px;
    background: var(--gold);
    transform: rotate(45deg);
}

.cookie-settings-link:hover {
    background: var(--surface);
    color: var(--white);
    border-color: var(--gold);
}

body:has(.cookie-banner.show) .cookie-settings-link {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.cookie-notice__button:focus-visible,
.cookie-notice__legal a:focus-visible,
.cookie-settings-link:focus-visible {
    outline: 2px solid var(--gold-2);
    outline-offset: 3px;
}

@media (max-width: 720px) {
    .cookie-banner {
        top: auto;
        bottom: 10px;
        width: calc(100% - 20px);
        transform: translate(-50%, 18px);
    }

    .cookie-banner.show {
        transform: translate(-50%, 0);
    }

    .cookie-notice {
        grid-template-columns: 1fr;
    }

    .cookie-notice__meta {
        min-height: 38px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 9px;
        padding: 8px 14px;
        border-right: 0;
        border-bottom: 1px solid var(--line-light);
    }

    .cookie-notice__meta span:first-child {
        font-size: .95rem;
    }

    .cookie-notice__message {
        padding: 14px;
    }

    .cookie-notice__message strong {
        font-size: 1.08rem;
    }

    .cookie-notice__message p {
        font-size: .67rem;
    }

    .cookie-notice__actions {
        grid-template-columns: 1fr 1fr;
        min-width: 0;
        border-left: 0;
        border-top: 1px solid var(--line-light);
    }

    .cookie-notice__button {
        min-height: 42px;
    }

    .cookie-notice__button--accept {
        border-top: 0;
        border-left: 1px solid var(--line-light);
    }

    .cookie-settings-link {
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 430px) {
    .cookie-notice__actions {
        grid-template-columns: 1fr;
    }

    .cookie-notice__button--accept {
        border-left: 0;
        border-top: 1px solid var(--line-light);
    }
        .brand span {
            display: none;
        }
        body {
            word-break: break-word;
        }
}

@media (prefers-reduced-motion: reduce) {
    .cookie-banner,
    .cookie-notice__button,
    .cookie-settings-link,
    .cookie-notice__legal a {
        transition: none;
    }
}