:root {
    color-scheme: dark;
    --journey-bg: #06345d;
    --journey-bg-deep: #041f3d;
    --journey-surface: #0a416f;
    --journey-surface-soft: #0e4b7d;
    --journey-nav: #3188c5;
    --journey-accent: #a5d8ff;
    --journey-text: #f1f8ff;
    --journey-muted: #b7d0e3;
    --journey-border: rgba(190, 224, 247, .2);
    --journey-shadow: rgba(0, 17, 39, .28);
    --journey-header-image: url('../img/header-new-zealand.jpg');
    --page-width: 1120px;
    --sidebar-width: 250px;
    --content-width: 760px;
    --radius: 14px;
    --focus: #fff3a3;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 16px;
    line-height: 1.65;
}

* {
    box-sizing: border-box;
}

html {
    min-width: 300px;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

body {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 82% 10%, rgba(100, 180, 225, .08), transparent 28rem),
        var(--journey-bg);
    color: var(--journey-text);
    font-family: inherit;
    font-size: 1rem;
    overflow-wrap: break-word;
}

body.nav-is-open {
    overflow: hidden;
}

::selection {
    background: var(--journey-accent);
    color: var(--journey-bg-deep);
}

a {
    color: var(--journey-accent);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

a:hover {
    color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}

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

button {
    cursor: pointer;
}

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

iframe {
    max-width: 100%;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: .75rem;
    left: .75rem;
    padding: .65rem .9rem;
    border-radius: .45rem;
    background: #fff;
    color: #071b2e;
    font-weight: 700;
    transform: translateY(-180%);
    transition: transform .18s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-hero {
    isolation: isolate;
    position: relative;
    min-height: 150px;
    max-width: var(--page-width);
    margin: 0 auto;
    overflow: hidden;
    background-color: var(--journey-bg-deep);
    background-image:
        linear-gradient(90deg, rgba(4, 31, 61, .18), rgba(4, 31, 61, .02)),
        var(--journey-header-image);
    background-position: center;
    background-size: cover;
    box-shadow: 0 18px 42px var(--journey-shadow);
}

.site-hero::after {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--journey-nav), var(--journey-accent), transparent 85%);
    content: '';
}

.site-hero__shade {
    position: absolute;
    z-index: -1;
    inset: 0 auto 0 0;
    width: min(78%, 790px);
    background:
        radial-gradient(circle at 62% 92%, rgba(255, 255, 255, .05), transparent 12rem),
        var(--journey-bg-deep);
    clip-path: ellipse(93% 132% at 0 0);
}

.site-hero__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 150px;
    padding: 1.45rem clamp(1.1rem, 4vw, 3rem) 3.15rem;
}

.site-hero__brand {
    display: inline-flex;
    align-items: center;
    gap: .9rem;
    max-width: min(32rem, 75%);
    color: var(--journey-text);
    text-decoration: none;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .25);
}

.site-hero__brand:hover {
    color: #fff;
}

.site-hero__brand img {
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .22);
}

.site-hero__mark {
    display: grid;
    width: 3.25rem;
    height: 3.25rem;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: var(--journey-accent);
    font-size: 1.7rem;
    line-height: 1;
    transform: rotate(-12deg);
}

.site-hero__brand strong,
.site-hero__brand small {
    display: block;
}

.site-hero__brand strong {
    color: var(--journey-accent);
    font-size: clamp(1.6rem, 4vw, 2.35rem);
    font-style: italic;
    font-weight: 500;
    letter-spacing: -.035em;
    line-height: 1.12;
}

.site-hero__brand small {
    margin-top: .35rem;
    color: var(--journey-muted);
    font-size: .84rem;
    line-height: 1.35;
}

.nav-toggle,
.nav-close {
    display: none;
}

.site-layout {
    display: grid;
    grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
    max-width: var(--page-width);
    min-height: 60vh;
    margin: 0 auto;
    box-shadow: 0 22px 50px var(--journey-shadow);
}

.site-sidebar {
    position: relative;
    align-self: stretch;
    min-width: 0;
    padding: 1.25rem 1rem 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 22rem),
        var(--journey-nav);
    color: #f5fbff;
}

.site-sidebar::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 11rem;
    background: linear-gradient(transparent, rgba(0, 20, 39, .18));
    content: '';
    pointer-events: none;
}

.site-sidebar > * {
    position: relative;
    z-index: 1;
}

.site-sidebar__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 .45rem .75rem;
}

.site-sidebar__label,
.eyebrow,
.journey-card__eyebrow {
    color: rgba(255, 255, 255, .74);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .13em;
    line-height: 1.4;
    text-transform: uppercase;
}

.journey-switcher {
    margin: 0 0 1.2rem;
    padding: 0 .4rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.site-hero > .journey-switcher {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    gap: .7rem;
    align-items: center;
    min-height: 2.45rem;
    margin: 0;
    padding: .35rem clamp(1rem, 4vw, 3rem);
    overflow-x: auto;
    border-top: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 0;
    background: rgba(2, 22, 42, .58);
    backdrop-filter: blur(5px);
}

.site-hero > .journey-switcher .journey-switcher__label {
    flex: 0 0 auto;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: .67rem;
}

.site-hero > .journey-switcher .journey-switcher__links {
    flex-wrap: nowrap;
}

.site-hero > .journey-switcher a {
    flex: 0 0 auto;
    padding: .25rem .55rem;
    font-size: .7rem;
}

.journey-switcher__label {
    display: block;
    margin-bottom: .45rem;
    color: rgba(255, 255, 255, .74);
    font-size: .72rem;
}

.journey-switcher__links {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
}

.journey-switcher a {
    display: inline-flex;
    padding: .35rem .55rem;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(0, 26, 54, .12);
    color: #fff;
    font-size: .72rem;
    line-height: 1.25;
    text-decoration: none;
}

.journey-switcher a:hover,
.journey-switcher a.is-active {
    border-color: rgba(255, 255, 255, .55);
    background: rgba(0, 23, 48, .35);
}

.journey-nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.journey-nav__list > li > a,
.journey-nav__children a {
    display: grid;
    grid-template-columns: .75rem minmax(0, 1fr);
    gap: .45rem;
    align-items: start;
    padding: .48rem .55rem;
    border-radius: .45rem;
    color: #f5fbff;
    font-size: .82rem;
    line-height: 1.35;
    text-decoration: none;
}

.journey-nav__list > li > a::before,
.journey-nav__children a::before {
    width: .52rem;
    height: .52rem;
    margin-top: .3rem;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    content: '';
}

.journey-nav a:hover,
.journey-nav a.is-active {
    background: rgba(3, 33, 60, .28);
    color: #fff;
}

.journey-nav a.is-active::before {
    border-color: #fff;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .17);
}

.journey-nav__children {
    margin: .08rem 0 .4rem .74rem !important;
    padding-left: .75rem !important;
    border-left: 1px solid rgba(255, 255, 255, .25);
}

.journey-nav__children a {
    font-size: .76rem;
}

.sidebar-plugins {
    margin-top: 1.5rem;
}

.sidebar-plugins:empty {
    display: none;
}

.sidebar-plugins .plugin {
    margin: 0 0 1rem;
    padding: .75rem;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: .6rem;
    background: rgba(0, 30, 58, .14);
}

.sidebar-plugins .plugin-hit-counter {
    display: flex;
    gap: .55rem;
    align-items: center;
    margin-bottom: .6rem;
    padding: .42rem .58rem;
    border-radius: .45rem;
}

.sidebar-plugins .plugin-hit-counter .plugin-label {
    margin: 0;
    font-size: .72rem;
    font-weight: 600;
    line-height: 1.2;
}

.sidebar-plugins .plugin-hit-counter .plugin-content {
    margin-left: auto;
}

.sidebar-plugins .plugin-hit-counter .counter {
    font-size: .82rem;
    font-weight: 700;
    line-height: 1;
}

.sidebar-plugins .plugin-label {
    margin: 0 0 .55rem;
    color: #fff;
    font-size: .86rem;
}

.sidebar-plugins ul {
    margin: 0;
    padding-left: 1rem;
}

.sidebar-plugins a {
    color: #fff;
    font-size: .76rem;
}

.nav-backdrop {
    display: none;
}

.main-content {
    min-width: 0;
    padding: clamp(1.5rem, 5vw, 3.75rem) clamp(1.25rem, 6vw, 4.75rem) 4rem;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .025), transparent 22rem),
        var(--journey-bg);
}

.main-content > * {
    max-width: var(--content-width);
}

.home-intro {
    padding-bottom: clamp(2rem, 5vw, 4rem);
    border-bottom: 1px solid var(--journey-border);
}

.home-intro h1,
.travel-article h1 {
    max-width: 15ch;
    margin: .35rem 0 1rem;
    color: var(--journey-accent);
    font-size: clamp(2rem, 4vw, 3.65rem);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1.04;
}

.home-intro .eyebrow,
.travel-article .eyebrow,
.section-heading .eyebrow {
    margin: 0;
    color: var(--journey-muted);
}

.lead {
    max-width: 62ch;
    margin: 0;
    color: var(--journey-muted);
    font-size: clamp(1.02rem, 2.2vw, 1.2rem);
    line-height: 1.65;
}

.home-intro__content {
    margin-top: 1.8rem;
}

.journeys-section {
    padding-top: clamp(2rem, 5vw, 3.5rem);
}

.section-heading {
    margin-bottom: 1.35rem;
}

.section-heading h2,
.child-pages h2,
.page-content h2 {
    margin: .25rem 0 .75rem;
    color: var(--journey-accent);
    font-size: clamp(1.35rem, 3vw, 1.8rem);
    font-weight: 500;
    line-height: 1.25;
}

.journey-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.journey-card {
    position: relative;
    min-width: 0;
    padding: 1.25rem;
    overflow: hidden;
    border: 1px solid var(--journey-border);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .06), transparent),
        var(--journey-surface);
    box-shadow: 0 12px 28px rgba(0, 18, 39, .13);
}

.journey-card::after {
    position: absolute;
    top: -.9rem;
    right: -1rem;
    width: 4.5rem;
    height: 4.5rem;
    border: 1px solid var(--journey-accent);
    border-radius: 50%;
    content: '';
    opacity: .2;
}

.journey-card__eyebrow {
    margin: 0;
    color: var(--journey-muted);
}

.journey-card h3 {
    margin: .35rem 0 .7rem;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
}

.journey-card h3 a {
    color: var(--journey-accent);
    text-decoration: none;
}

.journey-card p:not(.journey-card__eyebrow) {
    color: var(--journey-muted);
    font-size: .86rem;
}

.text-link {
    display: inline-flex;
    gap: .35rem;
    align-items: center;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
}

.notice {
    padding: 1rem 1.1rem;
    border: 1px dashed var(--journey-border);
    border-radius: .6rem;
    color: var(--journey-muted);
}

.breadcrumbs {
    margin: 0 0 1.65rem;
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    gap: .38rem;
    margin: 0;
    padding: 0;
    color: var(--journey-muted);
    font-size: .72rem;
    list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
    margin-left: .38rem;
    color: var(--journey-border);
    content: '/';
}

.breadcrumbs a {
    color: var(--journey-muted);
}

.travel-article__header {
    margin-bottom: 1.8rem;
}

.cover-image {
    margin: 0 0 2rem;
    overflow: hidden;
    border: 1px solid var(--journey-border);
    border-radius: var(--radius);
    box-shadow: 0 16px 36px var(--journey-shadow);
}

.cover-image img {
    width: 100%;
    max-height: 28rem;
    object-fit: cover;
}

.page-content {
    color: var(--journey-text);
}

.page-content > :first-child {
    margin-top: 0;
}

.page-content > :last-child {
    margin-bottom: 0;
}

.page-content h2 {
    margin-top: 2.4rem;
}

.page-content h3,
.page-content h4 {
    margin: 2rem 0 .65rem;
    color: var(--journey-text);
    font-weight: 600;
    line-height: 1.3;
}

.page-content p,
.page-content li {
    max-width: 70ch;
}

.page-content blockquote {
    margin: 1.8rem 0;
    padding: .8rem 1.15rem;
    border-left: 4px solid var(--journey-accent);
    background: rgba(255, 255, 255, .035);
    color: var(--journey-muted);
}

.page-content hr {
    margin: 2.5rem 0;
    border: 0;
    border-top: 1px solid var(--journey-border);
}

.page-content pre,
.page-content code {
    font-family: Consolas, Monaco, monospace;
}

.page-content code {
    padding: .1em .32em;
    border-radius: .25rem;
    background: var(--journey-bg-deep);
}

.page-content pre {
    max-width: 100%;
    padding: 1rem;
    overflow: auto;
    border: 1px solid var(--journey-border);
    border-radius: .6rem;
    background: var(--journey-bg-deep);
}

.page-content pre code {
    padding: 0;
}

.page-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    font-size: .86rem;
}

.page-content th,
.page-content td {
    padding: .65rem .7rem;
    border: 1px solid var(--journey-border);
    text-align: left;
    vertical-align: top;
}

.page-content th {
    background: var(--journey-surface);
    color: var(--journey-accent);
}

.page-content figure {
    margin: 2rem 0;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border: 2px solid rgba(1, 18, 49, .45);
    border-radius: .45rem;
    box-shadow: 0 8px 22px rgba(0, 12, 33, .28);
}

.page-content img.gallery {
    display: inline-block;
    max-width: min(100%, 30rem);
    margin: .35rem .55rem .75rem 0;
    vertical-align: top;
}

.page-content a[rel="lightbox"] {
    display: inline-block;
    max-width: 100%;
    margin: .2rem;
    vertical-align: top;
}

.page-content .travel-embed {
    width: 100%;
    min-height: 26rem;
    margin: 1.5rem 0;
    border: 1px solid var(--journey-border);
    border-radius: var(--radius);
    background: var(--journey-surface);
}

.page-content figcaption {
    margin-top: .55rem;
    color: var(--journey-muted);
    font-size: .72rem;
    line-height: 1.45;
}

.page-content .is-lightbox-link {
    display: inline-block;
    cursor: zoom-in;
}

.child-pages {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--journey-border);
}

.child-pages__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .65rem;
}

.child-page-card {
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    padding: .8rem .9rem;
    border: 1px solid var(--journey-border);
    border-radius: .55rem;
    background: rgba(255, 255, 255, .035);
    color: var(--journey-text);
    font-size: .82rem;
    text-decoration: none;
}

.child-page-card:hover {
    border-color: var(--journey-accent);
    background: var(--journey-surface);
}

.page-pager {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--journey-border);
}

.page-pager a {
    display: flex;
    flex-direction: column;
    padding: .75rem;
    border-radius: .55rem;
    background: rgba(255, 255, 255, .035);
    text-decoration: none;
}

.page-pager__next {
    text-align: right;
}

.page-pager small {
    color: var(--journey-muted);
    font-size: .65rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.page-pager span {
    color: var(--journey-accent);
    font-size: .8rem;
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: var(--page-width);
    margin: 0 auto;
    padding: 1.4rem clamp(1.2rem, 4vw, 2.5rem);
    border-top: 1px solid var(--journey-border);
    background: var(--journey-bg-deep);
    color: var(--journey-muted);
    font-size: .72rem;
}

.site-footer strong,
.site-footer span {
    display: block;
}

.site-footer strong {
    color: var(--journey-text);
}

.lightbox {
    width: min(94vw, 1100px);
    max-width: none;
    max-height: 92vh;
    padding: 0;
    overflow: visible;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: .65rem;
    background: #031a2e;
    color: #fff;
    box-shadow: 0 35px 90px rgba(0, 0, 0, .65);
}

.lightbox::backdrop {
    background: rgba(0, 10, 20, .86);
    backdrop-filter: blur(5px);
}

.lightbox figure {
    display: grid;
    max-height: 88vh;
    margin: 0;
}

.lightbox__image {
    width: 100%;
    max-height: calc(88vh - 3rem);
    border-radius: .6rem .6rem 0 0;
    object-fit: contain;
}

.lightbox figcaption {
    min-height: 2.8rem;
    padding: .7rem 1rem;
    color: #c6d8e7;
    font-size: .75rem;
    text-align: center;
}

.lightbox__close {
    position: absolute;
    z-index: 2;
    top: -.85rem;
    right: -.85rem;
    display: grid;
    width: 2.4rem;
    height: 2.4rem;
    padding: 0;
    place-items: center;
    border: 2px solid rgba(255, 255, 255, .65);
    border-radius: 50%;
    background: #062f52;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
}

@media (max-width: 900px) {
    :root {
        --sidebar-width: 225px;
    }

    .main-content {
        padding-right: clamp(1.25rem, 5vw, 3rem);
        padding-left: clamp(1.25rem, 5vw, 3rem);
    }

    .journey-overview,
    .child-pages__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 780px) {
    .site-hero {
        min-height: 150px;
    }

    .site-hero__shade {
        width: 91%;
        clip-path: ellipse(100% 145% at 0 0);
    }

    .site-hero__content {
        align-items: center;
        min-height: 150px;
        padding: 1rem 1rem 3.2rem;
    }

    .site-hero__brand {
        max-width: calc(100% - 5.2rem);
    }

    .site-hero__brand small {
        display: none;
    }

    .site-hero__mark,
    .site-hero__brand img {
        width: 2.75rem;
        height: 2.75rem;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: .18rem;
        align-items: center;
        justify-content: center;
        min-width: 3.65rem;
        min-height: 3.65rem;
        padding: .35rem;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: .55rem;
        background: rgba(3, 24, 44, .6);
        color: #fff;
        font-size: .62rem;
    }

    .nav-toggle__icon {
        display: grid;
        gap: .2rem;
    }

    .nav-toggle__icon i {
        display: block;
        width: 1.25rem;
        height: 2px;
        border-radius: 3px;
        background: currentColor;
    }

    .site-layout {
        display: block;
        min-height: 0;
    }

    .site-sidebar {
        position: fixed;
        z-index: 100;
        top: 0;
        bottom: 0;
        left: 0;
        width: min(86vw, 320px);
        padding-top: 1rem;
        overflow-y: auto;
        box-shadow: 18px 0 45px rgba(0, 0, 0, .4);
        transform: translateX(-105%);
        visibility: hidden;
        transition: transform .22s ease, visibility .22s;
    }

    .nav-is-open .site-sidebar {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-close {
        display: grid;
        width: 2.25rem;
        height: 2.25rem;
        padding: 0;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .32);
        border-radius: 50%;
        background: rgba(0, 26, 50, .22);
        color: #fff;
        font-size: 1.5rem;
        line-height: 1;
    }

    .nav-backdrop {
        position: fixed;
        z-index: 90;
        inset: 0;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(0, 13, 26, .72);
        opacity: 0;
        pointer-events: none;
        transition: opacity .22s ease;
    }

    .nav-is-open .nav-backdrop {
        display: block;
        opacity: 1;
        pointer-events: auto;
    }

    .main-content {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    .page-content table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
    }
}

@media (max-width: 520px) {
    :root {
        font-size: 15px;
    }

    .site-hero__content {
        padding-right: .8rem;
        padding-left: .8rem;
    }

    .site-hero > .journey-switcher {
        gap: .4rem;
        padding-right: .8rem;
        padding-left: .8rem;
    }

    .site-hero > .journey-switcher .journey-switcher__label {
        display: none;
    }

    .site-hero__brand {
        gap: .55rem;
    }

    .site-hero__brand strong {
        font-size: 1.45rem;
    }

    .main-content {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .travel-article h1,
    .home-intro h1 {
        font-size: 2.15rem;
    }

    .journey-card {
        padding: 1rem;
    }

    .page-pager {
        grid-template-columns: 1fr;
    }

    .page-pager__next {
        text-align: left;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .lightbox__close {
        top: .35rem;
        right: .35rem;
    }
}

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

@media print {
    :root {
        color-scheme: light;
    }

    body,
    .main-content {
        background: #fff;
        color: #111;
    }

    .site-hero {
        min-height: auto;
        background: none;
        box-shadow: none;
    }

    .site-hero__content {
        min-height: auto;
        padding: 1rem 0;
    }

    .site-hero__shade,
    .site-hero > .journey-switcher,
    .site-sidebar,
    .nav-toggle,
    .nav-backdrop,
    .site-footer,
    .page-pager,
    .lightbox {
        display: none !important;
    }

    .site-layout {
        display: block;
        box-shadow: none;
    }

    .main-content {
        max-width: none;
        padding: 0;
    }

    .main-content > * {
        max-width: none;
    }

    .site-hero__brand strong,
    .travel-article h1,
    .page-content h2,
    a {
        color: #111;
    }
}
