@font-face {
    font-family: "Gloock";
    src: url("../fonts/Gloock-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("../fonts/IBMPlexMono-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "IBM Plex Mono";
    src: url("../fonts/IBMPlexMono-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Onest";
    src: url("../fonts/Onest-Variable.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-bg: #0c1114;
    --color-surface: #151b1e;
    --color-surface-2: #1d2528;
    --color-paper: #f2efe7;
    --color-paper-2: #e6e1d6;
    --color-text: #f4f0e8;
    --color-text-dark: #111718;
    --color-text-muted: #9ba7a9;
    --color-text-muted-dark: #596265;
    --color-primary: #c8a46a;
    --color-primary-2: #e0c58f;
    --color-accent: #8eb7b6;
    --color-line: rgba(255, 255, 255, .14);
    --color-line-dark: rgba(17, 23, 24, .16);
    --shadow: 0 24px 80px rgba(0, 0, 0, .24);
    --shadow-soft: 0 18px 42px rgba(11, 16, 18, .12);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --space-1: 8px;
    --space-2: 16px;
    --space-3: 24px;
    --space-4: 32px;
    --space-5: 48px;
    --space-6: 64px;
    --space-7: 88px;
    --space-8: 120px;
    --text-display: clamp(3rem, 7vw, 6.6rem);
    --text-h1: clamp(2.5rem, 5vw, 4.7rem);
    --text-h2: clamp(2rem, 3.8vw, 3.6rem);
    --text-h3: clamp(1.3rem, 2vw, 1.8rem);
    --text-body: 1rem;
    --text-small: .86rem;
    --container: min(1440px, calc(100vw - 56px));
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

@media (min-width: 901px) {
    html {
        overflow-x: clip
    }
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
    font-family: "Onest", sans-serif;
    font-size: var(--text-body);
    line-height: 1.65
}

img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: 100%;
    object-fit: cover
}

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

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

.skip-link {
    position: fixed;
    left: 16px;
    top: -60px;
    z-index: 999;
    background: var(--color-paper);
    color: var(--color-text-dark);
    padding: 10px 16px;
    border-radius: 8px
}

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

.ad-ribbon {
    height: 32px;
    border-bottom: 1px solid var(--color-line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 max(28px, calc((100vw - 1440px)/2));
    font-family: "IBM Plex Mono", monospace;
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #c2cbcc
}

.ad-ribbon span:first-child {
    color: var(--color-primary-2)
}

.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 8px max(28px, calc((100vw - 1440px)/2)) 0;
    height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    background: rgba(12, 17, 20, .97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-line)
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: "Gloock", serif;
    font-size: 1.45rem;
    letter-spacing: .02em
}

.brand img {
    width: 34px;
    height: 34px;
    object-fit: contain
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 22px;
    font-size: .89rem;
    color: #c4cdce
}

.main-nav a {
    position: relative;
    padding: 10px 0
}

.main-nav a:after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 4px;
    height: 1px;
    background: var(--color-primary);
    transition: .25s
}

.main-nav a:hover:after,
.main-nav a.is-active:after {
    right: 0
}

.main-nav a.is-active {
    color: #fff
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 11px 16px;
    font-size: .86rem;
    transition: .25s
}

.header-cta:hover {
    background: var(--color-paper);
    color: var(--color-text-dark)
}

.header-cta svg,
.btn svg,
.text-link svg {
    width: 17px;
    height: 17px
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--color-line);
    color: var(--color-text);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    align-items: center;
    justify-content: center
}

.section {
    width: var(--container);
    margin: 0 auto;
    padding: var(--space-8) 0
}

.section-label,
.eyebrow,
.micro {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .73rem
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-muted-dark);
    margin-bottom: 24px
}

.section-label span {
    display: grid;
    place-items: center;
    min-width: 32px;
    height: 32px;
    border: 1px solid currentColor;
    border-radius: 50%
}

.section-label.light {
    color: #d3d9d9
}

.eyebrow {
    display: flex;
    gap: 18px;
    color: var(--color-text-muted-dark);
    margin-bottom: 18px
}

.eyebrow.light {
    color: #dde3e3
}

.kicker {
    font-family: "Gloock", serif;
    font-size: 1.35rem;
    color: var(--color-primary);
    margin: 0 0 18px
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
    gap: 60px;
    align-items: end;
    margin-bottom: 48px
}

.section-head.compact {
    align-items: center
}

.section-head h2,
.section-head p {
    margin: 0
}

.section-head h2 {
    font-family: "Gloock", serif;
    font-size: var(--text-h2);
    font-weight: 400;
    line-height: 1.05;
    max-width: 900px
}

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

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    font-size: .9rem;
    transition: transform .25s, background .25s, color .25s, border-color .25s;
    cursor: pointer
}

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

.btn-primary {
    background: var(--color-primary);
    color: #15130f
}

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

.btn-dark {
    background: var(--color-text-dark);
    color: #fff
}

.btn-dark:hover {
    background: #273033
}

.btn-glass {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .28);
    backdrop-filter: blur(10px);
    color: #fff
}

.btn-ghost {
    border-color: var(--color-line-dark);
    background: transparent;
    color: var(--color-text-dark)
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 5px;
    font-weight: 600
}

.text-link:hover {
    color: var(--color-primary)
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease
}

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

.hero {
    height: min(820px, calc(100vh - 116px));
    min-height: 650px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin: 0 auto
}

.hero-media,
.hero-shade {
    position: absolute;
    inset: 0
}

.hero-shade {
    background: linear-gradient(90deg, rgba(7, 11, 13, .9) 0%, rgba(7, 11, 13, .56) 48%, rgba(7, 11, 13, .16) 100%), linear-gradient(0deg, rgba(7, 11, 13, .52), transparent 52%)
}

.hero-content {
    position: absolute;
    left: clamp(28px, 5vw, 76px);
    bottom: clamp(38px, 8vh, 86px);
    z-index: 3;
    max-width: 940px
}

.hero-content h1 {
    font-family: "Gloock", serif;
    font-weight: 400;
    font-size: var(--text-display);
    line-height: .92;
    letter-spacing: -.03em;
    margin: 0;
    max-width: 1000px
}

.hero-content p {
    font-size: clamp(1rem, 1.45vw, 1.28rem);
    max-width: 760px;
    color: #d4dcdd;
    margin: 26px 0 34px
}

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

.hero-flight-card {
    position: absolute;
    right: 34px;
    top: 34px;
    z-index: 4;
    width: 260px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: var(--radius-md);
    background: rgba(9, 15, 17, .54);
    backdrop-filter: blur(16px)
}

.hero-flight-card strong {
    display: block;
    font-family: "Gloock", serif;
    font-size: 1.7rem;
    font-weight: 400;
    margin: 14px 0
}

.hero-flight-card>div {
    display: flex;
    justify-content: space-between;
    color: #cfd7d8;
    font-size: .83rem
}

.rotor-mark {
    position: absolute;
    right: -90px;
    bottom: -160px;
    width: 570px;
    height: 570px;
    border: 1px solid rgba(255, 255, 255, .19);
    border-radius: 50%;
    z-index: 2
}

.rotor-mark:before,
.rotor-mark:after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, .18);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%)
}

.rotor-mark:before {
    width: 1px;
    height: 110%
}

.rotor-mark:after {
    height: 1px;
    width: 110%
}

.rotor-mark span {
    position: absolute;
    width: 13px;
    height: 13px;
    background: var(--color-primary);
    border-radius: 50%
}

.rotor-mark span:nth-child(1) {
    top: 4%;
    left: 48%
}

.rotor-mark span:nth-child(2) {
    right: 4%;
    top: 48%
}

.rotor-mark span:nth-child(3) {
    bottom: 4%;
    left: 48%
}

.rotor-mark span:nth-child(4) {
    left: 4%;
    top: 48%
}

.history-block {
    background: var(--color-paper);
    color: var(--color-text-dark);
    width: 100%;
    padding: var(--space-8) max(28px, calc((100vw - 1440px)/2))
}

.history-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 80px;
    align-items: center
}

.history-copy h2 {
    font-family: "Gloock", serif;
    font-size: var(--text-h2);
    line-height: 1.08;
    font-weight: 400;
    margin: 0 0 30px
}

.history-copy p {
    color: var(--color-text-muted-dark);
    max-width: 760px
}

.history-copy .kicker {
    color: #8b673a
}

.history-copy .text-link {
    margin-top: 18px
}

.image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft)
}

.image-frame.tall {
    aspect-ratio: 4/5
}

.image-frame figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    justify-content: space-between;
    background: rgba(12, 17, 20, .7);
    backdrop-filter: blur(14px);
    padding: 12px 14px;
    border-radius: 12px;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: .7rem;
    text-transform: uppercase
}

.tours-section {
    padding-bottom: var(--space-7)
}

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

.tour-card {
    background: var(--color-paper);
    color: var(--color-text-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: .3s
}

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

.tour-image {
    aspect-ratio: 5/4;
    position: relative;
    overflow: hidden
}

.tour-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.tour-number {
    position: absolute;
    left: 16px;
    top: 16px;
    background: rgba(12, 17, 20, .74);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    padding: 8px 12px;
    color: #fff;
    font-family: "IBM Plex Mono", monospace;
    font-size: .72rem
}

.tour-body {
    padding: 26px
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-family: "IBM Plex Mono", monospace;
    font-size: .69rem;
    text-transform: uppercase;
    color: var(--color-text-muted-dark)
}

.tour-card h3 {
    font-family: "Gloock", serif;
    font-size: 1.8rem;
    line-height: 1.08;
    font-weight: 400;
    margin: 16px 0
}

.tour-card p {
    color: var(--color-text-muted-dark);
    font-size: .92rem
}

.tour-facts {
    display: flex;
    flex-direction: column;
    gap: 7px;
    border-top: 1px solid var(--color-line-dark);
    border-bottom: 1px solid var(--color-line-dark);
    padding: 15px 0;
    margin: 18px 0
}

.tour-facts span,
.booking-notes span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .82rem
}

.tour-facts svg,
.booking-notes svg {
    width: 16px
}

.tour-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 8px 0 18px
}

.tour-price strong {
    font-size: 1.55rem
}

.tour-price small,
.tour-price span {
    color: var(--color-text-muted-dark);
    font-size: .75rem
}

.tour-card .btn {
    width: 100%
}

.preflight-section {
    background: linear-gradient(180deg, var(--color-bg), #0a0e10)
}

.service-bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(260px, auto);
    gap: 16px
}

.service-panel {
    position: relative;
    padding: 28px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    overflow: hidden
}

.service-panel.primary {
    grid-column: span 2;
    background: var(--color-primary);
    color: #17130e
}

.service-panel.image-panel {
    grid-column: span 2;
    padding: 0;
    min-height: 330px
}

.service-panel.image-panel img {
    position: absolute;
    inset: 0
}

.service-panel.image-panel:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 8, 9, .86), rgba(5, 8, 9, .08))
}

.service-panel.image-panel>div {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 26px;
    z-index: 2
}

.service-panel:not(.image-panel) {
    display: grid;
    grid-template-areas:
        "icon num"
        "title title"
        "text text";
    grid-template-columns: auto 1fr;
    column-gap: 12px
}

.service-panel>svg,
.service-panel>div>svg,
.service-panel>i svg,
.service-panel>[data-lucide] svg {
    width: 30px;
    height: 30px
}

.service-panel>i,
.service-panel>[data-lucide] {
    grid-area: icon;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    margin: 0
}

.service-panel>span,
.service-panel>div>span {
    grid-area: num;
    justify-self: end;
    align-self: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: .75rem;
    margin: 0
}

.service-panel:not(.image-panel)>h3 {
    grid-area: title;
    font-family: "Gloock", serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 16px 0 8px
}

.service-panel.image-panel h3 {
    font-family: "Gloock", serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 12px 0 8px
}

.service-panel:not(.image-panel)>p {
    grid-area: text
}

.service-panel.image-panel>div>span {
    grid-area: auto;
    justify-self: auto;
    align-self: auto
}

.service-panel p {
    margin: 0;
    color: var(--color-text-muted)
}

.service-panel.primary p {
    color: #3b3328
}

.service-panel.image-panel p {
    color: #d5dddd
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    border-top: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
    background: #0a0f11;
    padding: 0 max(28px, calc((100vw - 1440px)/2))
}

.stat {
    padding: 34px 26px;
    border-right: 1px solid var(--color-line)
}

.stat:last-child {
    border-right: 0
}

.stat strong {
    display: block;
    font-family: "Gloock", serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--color-primary-2)
}

.stat span {
    color: var(--color-text-muted);
    font-size: .83rem
}

.day-section {
    background: var(--color-paper);
    color: var(--color-text-dark);
    width: 100%;
    padding-left: max(28px, calc((100vw - 1440px)/2));
    padding-right: max(28px, calc((100vw - 1440px)/2))
}

.day-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center
}

.day-copy h2 {
    font-family: "Gloock", serif;
    font-size: var(--text-h2);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 22px
}

.day-copy p {
    color: var(--color-text-muted-dark)
}

.day-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 570px
}

.day-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 8, 9, .72), transparent 60%)
}

.day-timeline {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid rgba(255, 255, 255, .24);
    background: rgba(12, 17, 20, .64);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    color: #fff
}

.day-timeline div {
    padding: 15px;
    border-right: 1px solid rgba(255, 255, 255, .16)
}

.day-timeline div:last-child {
    border-right: 0
}

.day-timeline b {
    display: block;
    color: var(--color-primary-2);
    font-family: "IBM Plex Mono", monospace;
    font-size: .68rem
}

.day-timeline span {
    font-size: .78rem
}

.route-switcher {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    overflow: hidden
}

.route-tabs {
    display: flex;
    padding: 10px;
    background: var(--color-surface)
}

.route-tabs button {
    flex: 1;
    border: 0;
    background: transparent;
    color: var(--color-text-muted);
    padding: 14px;
    border-radius: 999px;
    cursor: pointer
}

.route-tabs button.is-active {
    background: var(--color-paper);
    color: var(--color-text-dark)
}

.route-stage {
    min-height: 560px;
    position: relative
}

.route-stage:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 11, 13, .84), rgba(7, 11, 13, .15))
}

.route-info {
    position: absolute;
    z-index: 2;
    left: 40px;
    bottom: 42px;
    max-width: 620px
}

.route-info>span {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    font-size: .75rem;
    color: var(--color-primary-2)
}

.route-info h3 {
    font-family: "Gloock", serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.02;
    margin: 12px 0
}

.route-info p {
    color: #d1d9d9
}

.scenic-strip {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding-top: 22px;
    color: var(--color-text-muted)
}

.scenic-strip>span {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    font-size: .72rem;
    color: var(--color-primary)
}

.scenic-strip>div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.scenic-strip b {
    font-weight: 500;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: .8rem
}

.gallery-preview {
    padding-top: var(--space-7)
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1.5fr .75fr .75fr;
    grid-template-rows: 280px 280px;
    gap: 14px
}

.gallery-mosaic figure {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden
}

.gallery-mosaic .wide {
    grid-row: span 2
}

.gallery-mosaic .tall {
    grid-row: span 2
}

.booking-section {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 70px;
    align-items: start;
    background: var(--color-paper);
    color: var(--color-text-dark);
    width: 100%;
    padding-left: max(28px, calc((100vw - 1440px)/2));
    padding-right: max(28px, calc((100vw - 1440px)/2))
}

.booking-copy h2 {
    font-family: "Gloock", serif;
    font-size: var(--text-h2);
    line-height: 1.05;
    font-weight: 400;
    margin: 0 0 20px
}

.booking-copy p {
    color: var(--color-text-muted-dark)
}

.booking-notes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px
}

.booking-notes span {
    border: 1px solid var(--color-line-dark);
    border-radius: 999px;
    padding: 8px 12px
}

.booking-form {
    background: #fff;
    border: 1px solid rgba(17, 23, 24, .12);
    box-shadow: var(--shadow-soft);
    padding: 34px;
    border-radius: var(--radius-lg)
}

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

.booking-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: .8rem;
    font-weight: 600;
    color: #343d3f;
    margin-bottom: 16px
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    width: 100%;
    max-width: 100%;
    border: 1px solid #cdd2d0;
    background: #f7f6f2;
    color: #111718;
    border-radius: 12px;
    padding: 13px 14px;
    outline: none;
    transition: .2s
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    border-color: #927548;
    box-shadow: 0 0 0 3px rgba(200, 164, 106, .18)
}

.booking-form .check {
    flex-direction: row;
    align-items: flex-start;
    font-weight: 400
}

.booking-form .check input {
    width: 18px;
    height: 18px;
    margin-top: 3px
}

.booking-form .check a {
    text-decoration: underline
}

.booking-form .btn {
    margin-top: 4px
}

.form-title h2 {
    color: var(--color-text-dark);
    font-family: "Gloock", serif;
    font-size: 2.4rem;
    font-weight: 400;
    margin: 8px 0 24px
}

.form-title .micro {
    color: #77603d
}

.subhero {
    width: var(--container);
    height: 540px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative
}

.subhero-media,
.subhero-shade {
    position: absolute;
    inset: 0
}

.subhero-shade {
    background: linear-gradient(90deg, rgba(6, 10, 12, .9), rgba(6, 10, 12, .25)), linear-gradient(0deg, rgba(6, 10, 12, .45), transparent)
}

.subhero-content {
    position: absolute;
    left: 50px;
    bottom: 48px;
    z-index: 2;
    max-width: 900px
}

.subhero-content h1 {
    font-family: "Gloock", serif;
    font-size: var(--text-h1);
    font-weight: 400;
    line-height: 1;
    max-width: 900px;
    margin: 0 0 18px
}

.subhero-content p {
    max-width: 700px;
    color: #d2dada;
    margin: 0
}

.subhero-orbit {
    position: absolute;
    right: -120px;
    top: -150px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    z-index: 2
}

.subhero-orbit:before,
.subhero-orbit:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(255, 255, 255, .18);
    transform: translate(-50%, -50%)
}

.subhero-orbit:before {
    width: 1px;
    height: 110%
}

.subhero-orbit:after {
    height: 1px;
    width: 110%
}

.editorial-story {
    padding-top: var(--space-7)
}

.story-index {
    font-family: "IBM Plex Mono", monospace;
    color: var(--color-primary);
    margin-bottom: 28px
}

.story-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 80px
}

.story-lead p {
    font-size: 1.12rem;
    color: #c8d0d1
}

.dropcap:first-letter {
    float: left;
    font-family: "Gloock", serif;
    font-size: 5.5rem;
    line-height: .72;
    margin: 10px 13px 0 0;
    color: var(--color-primary)
}

.story-aside {
    border-left: 1px solid var(--color-line);
    padding-left: 36px
}

.story-aside>span {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    font-size: .72rem;
    color: var(--color-accent)
}

.story-aside h2 {
    font-family: "Gloock", serif;
    font-size: 2.5rem;
    line-height: 1.05;
    font-weight: 400
}

.story-aside p {
    color: var(--color-text-muted)
}

.story-chapters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 0
}

.story-chapters article {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 28px
}

.story-chapters b {
    font-family: "IBM Plex Mono", monospace;
    color: var(--color-primary)
}

.story-chapters h3 {
    font-family: "Gloock", serif;
    font-size: 2rem;
    font-weight: 400;
    margin: 24px 0 10px
}

.story-chapters p {
    color: var(--color-text-muted)
}

.image-quote {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    padding: 0;
    min-height: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--color-primary);
    color: var(--color-text-dark)
}

.image-quote>div {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.image-quote>div>span {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    font-size: .72rem
}

.image-quote blockquote {
    font-family: "Gloock", serif;
    font-size: 2.6rem;
    line-height: 1.05;
    margin: 20px 0 34px
}

.image-quote .btn {
    align-self: flex-start
}

.tour-intro {
    padding-bottom: 50px
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: end
}

.intro-grid h2 {
    font-family: "Gloock", serif;
    font-size: clamp(1.6rem, 4.2vw, 2.8rem);
    line-height: 1.05;
    font-weight: 400;
    margin: 0
}

.intro-grid p {
    color: var(--color-text-muted);
    margin: 0
}

.tour-detail {
    width: var(--container);
    margin: 0 auto 90px;
    border-top: 1px solid var(--color-line);
    padding-top: 70px
}

.tour-detail-top {
    display: grid;
    grid-template-columns: 1fr .92fr;
    gap: 48px;
    align-items: center
}

.tour-index {
    display: inline-block;
    font-family: "IBM Plex Mono", monospace;
    color: var(--color-primary);
    margin-bottom: 20px
}

.tour-detail-copy h2 {
    font-family: "Gloock", serif;
    font-size: 3.8rem;
    line-height: 1;
    font-weight: 400;
    margin: 16px 0 22px
}

.tour-detail-copy>p {
    color: var(--color-text-muted);
    max-width: 700px
}

.tour-detail-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px
}

.tour-detail-facts span {
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: .8rem
}

.tour-detail-facts svg {
    width: 16px
}

.tour-detail-image {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1/1;
    position: relative
}

.tour-detail-image figcaption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(6, 10, 12, .68);
    backdrop-filter: blur(10px);
    padding: 12px 14px;
    border-radius: 12px;
    font-size: .76rem
}

.tour-detail-bottom {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 48px;
    margin-top: 46px
}

.timeline {
    background: var(--color-paper);
    color: var(--color-text-dark);
    border-radius: var(--radius-lg);
    padding: 34px
}

.timeline h3 {
    font-family: "Gloock", serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin: 0 0 22px
}

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

.timeline li {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid var(--color-line-dark)
}

.timeline time {
    font-family: "IBM Plex Mono", monospace;
    font-size: .77rem;
    color: #876d44
}

.timeline strong {
    font-size: .95rem
}

.timeline p {
    margin: 4px 0 0;
    color: var(--color-text-muted-dark);
    font-size: .9rem
}

.included-card {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 32px;
    align-self: start;
    position: sticky;
    top: 20px
}

.included-list {
    display: grid;
    gap: 10px;
    margin: 20px 0 26px
}

.included-list span {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #d0d8d9;
    font-size: .9rem
}

.included-list svg {
    width: 16px;
    color: var(--color-primary)
}

.highlight-box {
    padding: 18px;
    background: var(--color-surface);
    border-radius: 14px;
    margin-bottom: 24px
}

.highlight-box small {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    color: var(--color-primary)
}

.highlight-box p {
    margin: 8px 0 0
}

.included-card .btn {
    width: 100%
}

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

.gallery-main-image {
    height: 600px;
    border-radius: var(--radius-lg);
    overflow: hidden
}

.gallery-main-image img {
    transition: opacity .2s
}

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

.thumb-btn {
    border: 2px solid transparent;
    padding: 0;
    background: none;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1;
    cursor: pointer;
    opacity: .66
}

.thumb-btn.active {
    border-color: var(--color-primary);
    opacity: 1
}

.gallery-caption>span {
    font-family: "IBM Plex Mono", monospace;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: .72rem
}

.gallery-caption h2 {
    font-family: "Gloock", serif;
    font-size: 3.2rem;
    line-height: 1.05;
    font-weight: 400
}

.gallery-caption p {
    color: var(--color-text-muted)
}

.gallery-notes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 0
}

.gallery-notes article {
    padding: 26px;
    border-top: 1px solid var(--color-line)
}

.gallery-notes span {
    font-family: "IBM Plex Mono", monospace;
    color: var(--color-accent);
    font-size: .72rem;
    text-transform: uppercase
}

.gallery-notes h3 {
    font-family: "Gloock", serif;
    font-size: 1.8rem;
    font-weight: 400
}

.gallery-notes p {
    color: var(--color-text-muted)
}

.gallery-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-primary);
    color: var(--color-text-dark);
    padding: 48px max(28px, calc((100vw - 1440px)/2));
    width: 100%
}

.gallery-cta h2 {
    font-family: "Gloock", serif;
    font-weight: 400;
    font-size: 2.8rem;
    margin: 8px 0 0
}

.route-map {
    padding-bottom: 50px
}

.route-map-head {
    max-width: 850px
}

.route-map-head h2 {
    font-family: "Gloock", serif;
    font-size: 3.6rem;
    font-weight: 400;
    margin: 12px 0
}

.route-map-head p {
    color: var(--color-text-muted)
}

.route-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: 34px 0 20px;
    padding: 14px 18px;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    font-family: "IBM Plex Mono", monospace;
    font-size: .72rem
}

.route-line svg {
    color: var(--color-primary)
}

.route-image-wide {
    height: 560px;
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden
}

.route-duo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding-top: 0
}

.route-duo>figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 460px
}

.route-story {
    padding: 44px;
    background: var(--color-paper);
    color: var(--color-text-dark);
    border-radius: var(--radius-lg)
}

.route-story.dark {
    background: var(--color-surface);
    color: var(--color-text)
}

.route-story h2 {
    font-family: "Gloock", serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.03
}

.route-story p {
    color: var(--color-text-muted-dark)
}

.route-story.dark p {
    color: var(--color-text-muted)
}

.route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 26px
}

.route-tags span {
    border: 1px solid currentColor;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: .77rem;
    opacity: .7
}

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

.principle-grid article {
    padding: 30px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md)
}

.principle-grid svg {
    color: var(--color-primary)
}

.principle-grid h3 {
    font-family: "Gloock", serif;
    font-size: 1.8rem;
    font-weight: 400
}

.principle-grid p {
    color: var(--color-text-muted)
}

.service-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.service-feature {
    min-height: 340px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column
}

.service-feature.primary {
    background: var(--color-primary);
    color: var(--color-text-dark)
}

.service-feature.accent {
    background: var(--color-accent);
    color: var(--color-text-dark)
}

.service-feature>div {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.service-feature h2 {
    font-family: "Gloock", serif;
    font-size: 3rem;
    font-weight: 400;
    margin: auto 0 12px
}

.service-feature p {
    margin: 0;
    color: var(--color-text-muted)
}

.service-feature.primary p,
.service-feature.accent p {
    color: #344044
}

.workflow {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px
}

.workflow-copy h2 {
    font-family: "Gloock", serif;
    font-size: 3.4rem;
    line-height: 1.03;
    font-weight: 400
}

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

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

.workflow-steps>div {
    padding: 26px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md)
}

.workflow-steps b {
    font-family: "IBM Plex Mono", monospace;
    color: var(--color-primary)
}

.workflow-steps span {
    display: block;
    font-family: "Gloock", serif;
    font-size: 1.7rem;
    margin-top: 24px
}

.workflow-steps p {
    color: var(--color-text-muted);
    font-size: .9rem
}

.include-compare {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-paper);
    color: var(--color-text-dark);
    padding: 50px max(28px, calc((100vw - 1440px)/2));
    width: 100%
}

.include-compare h2 {
    font-family: "Gloock", serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin: 0 0 8px
}

.include-compare p {
    color: var(--color-text-muted-dark);
    max-width: 760px
}

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

.about-lead h2 {
    font-family: "Gloock", serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.04
}

.about-lead p {
    color: var(--color-text-muted)
}

.about-image {
    margin: 0;
    height: 650px;
    border-radius: var(--radius-lg);
    overflow: hidden
}

.company-panel {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 60px;
    background: var(--color-paper);
    color: var(--color-text-dark);
    padding: 60px max(28px, calc((100vw - 1440px)/2));
    width: 100%
}

.company-panel h2 {
    font-family: "Gloock", serif;
    font-size: 3rem;
    font-weight: 400;
    margin: 8px 0
}

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

.company-data p {
    margin: 0;
    padding: 20px;
    border: 1px solid var(--color-line-dark);
    border-radius: var(--radius-md)
}

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

.values-grid article {
    padding: 28px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md)
}

.values-grid svg {
    color: var(--color-primary)
}

.values-grid h3 {
    font-family: "Gloock", serif;
    font-size: 1.8rem;
    font-weight: 400
}

.values-grid p {
    color: var(--color-text-muted)
}

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

.contact-card {
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 34px
}

.contact-card h2 {
    font-family: "Gloock", serif;
    font-size: 2.6rem;
    font-weight: 400
}

.contact-data {
    display: grid;
    gap: 12px;
    margin: 28px 0
}

.contact-data>div {
    display: flex;
    gap: 16px;
    border-top: 1px solid var(--color-line);
    padding-top: 16px
}

.contact-data svg {
    width: 20px;
    color: var(--color-primary)
}

.contact-data p {
    margin: 0;
    color: var(--color-text-muted)
}

.contact-data b {
    color: var(--color-text)
}

.contact-note {
    background: var(--color-surface);
    padding: 18px;
    border-radius: 14px
}

.contact-note p {
    color: var(--color-text-muted);
    margin-bottom: 0
}

.contact-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding-top: 0
}

.contact-facts article {
    padding: 26px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md)
}

.contact-facts span {
    font-family: "IBM Plex Mono", monospace;
    color: var(--color-primary)
}

.contact-facts h3 {
    font-family: "Gloock", serif;
    font-size: 1.8rem;
    font-weight: 400
}

.contact-facts p {
    color: var(--color-text-muted)
}

.legal-hero {
    width: var(--container);
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    padding: 70px 56px
}

.legal-hero h1 {
    font-family: "Gloock", serif;
    font-size: var(--text-h1);
    font-weight: 400;
    margin: 0 0 14px
}

.legal-hero .last-updated {
    color: #b8c4c5;
    font-size: .88rem;
    margin: 0 0 14px
}

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

.legal-hero>span {
    font-family: "IBM Plex Mono", monospace;
    font-size: .72rem;
    color: var(--color-primary)
}

.legal-shell {
    width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 70px;
    padding: 80px 0 110px
}

.legal-aside {
    align-self: start;
    position: sticky;
    top: 24px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    padding: 24px
}

.legal-aside p {
    color: var(--color-text-muted);
    font-size: .82rem;
    margin: 24px 0
}

.legal-aside nav {
    display: grid
}

.legal-aside nav a {
    padding: 9px 0;
    border-top: 1px solid var(--color-line);
    font-size: .83rem
}

.legal-content {
    background: var(--color-paper);
    color: var(--color-text-dark);
    border-radius: var(--radius-lg);
    padding: 52px;
    word-break: break-word
}

.last-updated {
    color: var(--color-text-muted-dark);
    font-size: .9rem;
    margin: 0 0 12px
}

.legal-content section {
    padding: 32px 0;
    border-bottom: 1px solid var(--color-line-dark)
}

.legal-content section:first-child {
    padding-top: 0
}

.legal-content section:last-child {
    border-bottom: 0;
    padding-bottom: 0
}

.legal-content h2 {
    font-family: "Gloock", serif;
    font-size: 2.1rem;
    font-weight: 400;
    margin: 0 0 18px
}

.legal-content p {
    color: #4e595b;
    margin: 0 0 14px
}

.legal-content p:last-child {
    margin-bottom: 0
}

.thanks-hero {
    width: var(--container);
    margin: 0 auto;
    height: 570px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #182124, #0b1012);
    display: grid;
    place-items: center;
    text-align: center;
    position: relative;
    overflow: hidden
}

.thanks-hero>div:last-child {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: 30px
}

.thanks-hero h1 {
    font-family: "Gloock", serif;
    font-size: var(--text-h1);
    font-weight: 400;
    margin: 12px 0
}

.thanks-hero p {
    color: var(--color-text-muted)
}

.thanks-hero .btn {
    margin-top: 18px
}

.thanks-orbit {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50%
}

.thanks-orbit:before,
.thanks-orbit:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(255, 255, 255, .12);
    transform: translate(-50%, -50%)
}

.thanks-orbit:before {
    height: 110%;
    width: 1px
}

.thanks-orbit:after {
    width: 110%;
    height: 1px
}

.step-grid,
.useful-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.step-grid article,
.useful-grid p {
    padding: 26px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-md);
    margin: 0
}

.step-grid b {
    font-family: "IBM Plex Mono", monospace;
    color: var(--color-primary)
}

.step-grid h3 {
    font-family: "Gloock", serif;
    font-size: 1.8rem;
    font-weight: 400
}

.step-grid p,
.useful-grid p {
    color: var(--color-text-muted)
}

.useful-info {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 60px;
    padding-top: 0
}

.useful-info h2 {
    font-family: "Gloock", serif;
    font-size: 3rem;
    font-weight: 400
}

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

.useful-grid b {
    color: var(--color-text)
}

.site-footer {
    position: relative;
    padding: 80px max(28px, calc((100vw - 1440px)/2)) 24px;
    background: #070b0d;
    border-top: 1px solid var(--color-line);
    overflow: hidden
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr .7fr;
    gap: 60px;
    position: relative;
    z-index: 2
}

.footer-brand p,
.footer-grid>div>p {
    color: #8f9b9d;
    font-size: .85rem
}

.footer-grid h2 {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .72rem;
    color: var(--color-primary);
    margin: 4px 0 16px
}

.footer-grid>div:last-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.footer-grid>div:last-child a {
    color: #bbc5c6;
    padding: 5px 0
}

.footer-disclaimer {
    border-top: 1px solid var(--color-line);
    margin-top: 48px;
    padding-top: 26px;
    position: relative;
    z-index: 2
}

.footer-disclaimer p {
    color: #778487;
    font-size: .76rem;
    max-width: 1200px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--color-line);
    padding-top: 20px;
    margin-top: 24px;
    color: #7f8a8c;
    font-family: "IBM Plex Mono", monospace;
    font-size: .7rem;
    position: relative;
    z-index: 2
}

.footer-orbit {
    position: absolute;
    right: -180px;
    bottom: -250px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%
}

.footer-orbit:before,
.footer-orbit:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(255, 255, 255, .07);
    transform: translate(-50%, -50%)
}

.footer-orbit:before {
    height: 110%;
    width: 1px
}

.footer-orbit:after {
    width: 110%;
    height: 1px
}

.cookie-banner {
    position: fixed;
    z-index: 100;
    left: 24px;
    right: 24px;
    bottom: 20px;
    max-width: 880px;
    margin: auto;
    background: var(--color-paper);
    color: var(--color-text-dark);
    border: 1px solid rgba(17, 23, 24, .18);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
    border-radius: 18px;
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center
}

.cookie-banner[hidden] {
    display: none
}

.cookie-banner strong {
    font-family: "Gloock", serif;
    font-size: 1.3rem;
    font-weight: 400
}

.cookie-banner p {
    font-size: .78rem;
    color: var(--color-text-muted-dark);
    margin: 4px 0
}

.cookie-banner a {
    text-decoration: underline
}

.cookie-actions {
    display: flex;
    gap: 8px
}

:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 3px
}

@media(max-width:1180px) {
    :root {
        --container: min(100% - 36px, 1100px)
    }

    .main-nav {
        gap: 14px;
        font-size: .8rem
    }

    .header-cta {
        display: none
    }

    .site-header {
        grid-template-columns: auto 1fr
    }

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

    .gallery-mosaic {
        grid-template-columns: 1.2fr .8fr;
        grid-template-rows: 260px 260px
    }

    .gallery-mosaic .tall {
        display: none
    }

    .tour-detail-copy h2 {
        font-size: 3rem
    }
}

@media(max-width:900px) {
    :root {
        --space-8: 82px;
        --space-7: 64px
    }

    .ad-ribbon {
        padding: 0 18px
    }

    .site-header {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        padding: 8px 18px 10px;
        min-height: 74px;
        height: auto;
        grid-template-columns: 1fr auto;
        align-items: center
    }

    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 2
    }

    .brand {
        position: relative;
        z-index: 2
    }

    .main-nav {
        position: absolute;
        left: 18px;
        right: 18px;
        top: calc(100% + 6px);
        display: none;
        flex-direction: column;
        background: #101619;
        border: 1px solid var(--color-line);
        border-radius: 18px;
        padding: 18px;
        z-index: 1
    }

    .main-nav.is-open {
        display: flex
    }

    .hero {
        height: 720px
    }

    .hero-flight-card {
        display: none
    }

    .hero-content {
        left: 28px;
        right: 28px;
        bottom: 40px
    }

    .section-head,
    .history-grid,
    .day-layout,
    .booking-section,
    .story-grid,
    .intro-grid,
    .tour-detail-top,
    .tour-detail-bottom,
    .gallery-main,
    .workflow,
    .about-editorial,
    .contact-layout,
    .legal-shell,
    .useful-info,
    .company-panel {
        grid-template-columns: 1fr
    }

    .section-head {
        gap: 18px
    }

    .history-grid {
        gap: 38px
    }

    .intro-grid {
        gap: 24px
    }

    .intro-grid > * {
        min-width: 0;
        max-width: 100%
    }

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

    .tour-card {
        display: block
    }

    .history-block,
    .day-section {
        padding-left: 20px;
        padding-right: 20px
    }

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

    .stats-band {
        grid-template-columns: repeat(2, 1fr)
    }

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

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

    .day-visual {
        min-height: 500px
    }

    .gallery-mosaic {
        grid-template-columns: 1fr 1fr
    }

    .gallery-mosaic .wide {
        grid-column: span 2;
        grid-row: auto
    }

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

    .route-duo>figure {
        min-height: 360px
    }

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

    .about-image {
        height: 520px
    }

    .legal-aside {
        position: static
    }

    .gallery-cta,
    .include-compare {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px
    }

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

    .footer-brand {
        grid-column: span 2
    }

    .story-chapters,
    .principle-grid,
    .values-grid,
    .contact-facts {
        grid-template-columns: 1fr
    }

    .route-stage {
        min-height: 500px
    }

    .route-info h3 {
        font-size: 2.3rem
    }
}

@media(max-width:640px) {
    :root {
        --container: calc(100% - 24px);
        --text-display: clamp(2.7rem, 13vw, 4.2rem)
    }

    .ad-ribbon span:last-child {
        display: none
    }

    .brand {
        font-size: 1.25rem
    }

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

    .hero {
        min-height: 660px;
        height: calc(100vh - 106px);
        border-radius: 22px
    }

    .hero-content {
        left: 22px;
        right: 22px
    }

    .hero-content p {
        font-size: .98rem
    }

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

    .hero-actions .btn {
        width: 100%
    }

    .rotor-mark {
        width: 430px;
        height: 430px
    }

    .section {
        padding: 64px 0
    }

    .history-block,
    .day-section,
    .booking-section {
        padding-left: 20px;
        padding-right: 20px
    }

    .tour-card {
        display: block
    }

    .tour-image {
        aspect-ratio: 16/10
    }

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

    .service-panel:not(.image-panel) {
        min-width: 0
    }

    .service-panel.primary,
    .service-panel.image-panel {
        grid-column: span 1
    }

    .stats-band {
        grid-template-columns: 1fr;
        padding: 0 20px
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid var(--color-line)
    }

    .stat:last-child {
        border-bottom: 0
    }

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

    .day-timeline div:nth-child(2) {
        border-right: 0
    }

    .day-timeline div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .16)
    }

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

    .booking-form {
        padding: 24px
    }

    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-template-rows: auto
    }

    .gallery-mosaic .wide {
        grid-column: auto
    }

    .gallery-mosaic figure {
        aspect-ratio: 4/3
    }

    .subhero {
        height: 500px;
        border-radius: 22px
    }

    .subhero-content {
        left: 22px;
        right: 22px;
        bottom: 28px
    }

    .subhero-content h1 {
        font-size: 2.8rem
    }

    .story-chapters {
        padding-top: 0
    }

    .image-quote {
        grid-template-columns: 1fr;
        min-height: 0
    }

    .image-quote>img {
        height: 330px
    }

    .image-quote>div {
        padding: 30px
    }

    .image-quote blockquote {
        font-size: 2rem
    }

    .tour-detail {
        margin-bottom: 70px;
        padding-top: 50px
    }

    .tour-detail-copy h2 {
        font-size: 2.6rem
    }

    .tour-detail-copy,
    .tour-detail-copy h2,
    .tour-detail-copy p,
    .tour-detail-copy .eyebrow,
    .tour-detail-copy .eyebrow span {
        word-break: break-all;
        min-width: 0;
        max-width: 100%
    }

    .tour-detail-copy .eyebrow {
        flex-wrap: wrap;
        gap: 10px
    }

    .intro-grid h2,
    .intro-grid p {
        word-break: break-all
    }

    .legal-hero,
    .legal-hero h1,
    .legal-hero p,
    .legal-hero .last-updated,
    .legal-hero .section-label,
    .legal-hero .section-label span {
        word-break: break-all;
        min-width: 0;
        max-width: 100%
    }

    .legal-hero .section-label {
        flex-wrap: wrap
    }

    .tour-detail-bottom {
        gap: 20px
    }

    .included-card {
        position: static
    }

    .timeline {
        padding: 24px
    }

    .timeline li {
        grid-template-columns: 72px 1fr
    }

    .gallery-main-image {
        height: 430px
    }

    .gallery-thumbs {
        gap: 6px
    }

    .gallery-caption h2 {
        font-size: 2.4rem
    }

    .gallery-notes {
        grid-template-columns: 1fr
    }

    .gallery-cta h2,
    .include-compare h2 {
        font-size: 2.2rem
    }

    .route-line {
        overflow-x: visible;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px
    }

    .route-line>* {
        white-space: normal
    }

    .route-tabs {
        overflow-x: visible;
        flex-wrap: wrap
    }

    .route-tabs button {
        white-space: normal
    }

    .route-info {
        left: 22px;
        right: 22px;
        bottom: 28px
    }

    .route-info h3 {
        font-size: 2rem
    }

    .history-grid > *,
    .contact-layout > *,
    .section-head > *,
    .tour-detail-top > *,
    .tour-detail-bottom > * {
        min-width: 0;
        max-width: 100%
    }

    .brand {
        flex-direction: column;
        align-items: flex-start;
        word-break: break-all;
        min-width: 0
    }

    .brand span {
        min-width: 0
    }

    .ad-ribbon {
        word-break: break-all
    }

    .footer-grid > div {
        word-break: break-all;
        min-width: 0
    }

    .footer-bottom span {
        word-break: break-all
    }

    .service-feature {
        min-height: 300px
    }

    .service-feature h2 {
        font-size: 2.4rem
    }

    .workflow-steps {
        grid-template-columns: 1fr
    }

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

    .about-lead h2 {
        font-size: 2.7rem
    }

    .about-image {
        height: 430px
    }

    .legal-hero {
        padding: 42px 24px
    }

    .legal-shell {
        padding: 50px 0 80px;
        gap: 24px
    }

    .legal-content {
        padding: 26px
    }

    .legal-content h2 {
        font-size: 1.7rem
    }

    .step-grid,
    .useful-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .footer-brand {
        grid-column: auto
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px
    }

    .cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
        grid-template-columns: 1fr
    }

    .cookie-actions {
        justify-content: stretch
    }

    .cookie-actions .btn {
        flex: 1
    }
}

.gallery-single-preview {
    position: relative;
    display: block;
    min-height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-line);
    isolation: isolate
}

.gallery-single-preview:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 9, 11, .78), rgba(5, 9, 11, .05) 65%);
    z-index: 1
}

.gallery-single-preview img {
    position: absolute;
    inset: 0;
    transition: transform .6s ease
}

.gallery-single-preview:hover img {
    transform: scale(1.025)
}

.gallery-single-preview>span {
    position: absolute;
    z-index: 2;
    left: 32px;
    right: 32px;
    bottom: 30px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: end;
    gap: 20px;
    color: #fff
}

.gallery-single-preview small {
    font-family: "IBM Plex Mono", monospace;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--color-primary-2)
}

.gallery-single-preview strong {
    font-family: "Gloock", serif;
    font-size: clamp(1.8rem, 3.4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.05;
    max-width: 850px
}

.gallery-single-preview svg {
    width: 30px;
    height: 30px
}

.home-cta {
    width: 100%;
    padding-left: max(28px, calc((100vw - 1440px)/2));
    padding-right: max(28px, calc((100vw - 1440px)/2));
    display: grid;
    gap: 22px;
    background: radial-gradient(circle at 15% 20%, rgba(186, 137, 76, .2), transparent 34%), linear-gradient(135deg, #0b1012, #151e21);
    border-top: 1px solid var(--color-line)
}

.home-cta-copy {
    padding: 44px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, .03)
}

.home-cta-copy h2 {
    font-family: "Gloock", serif;
    font-weight: 400;
    font-size: var(--text-h2);
    line-height: 1.05;
    margin: 14px 0 20px
}

.home-cta-copy p {
    color: var(--color-text-muted);
    max-width: 720px
}

.home-cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 28px
}

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

.home-cta-facts article {
    min-height: 260px;
    padding: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-line);
    background: var(--color-surface);
    display: flex;
    flex-direction: column
}

.home-cta-facts b {
    font-family: "IBM Plex Mono", monospace;
    color: var(--color-primary)
}

.home-cta-facts span {
    font-family: "Gloock", serif;
    font-size: 1.7rem;
    line-height: 1.05;
    margin: auto 0 10px
}

.home-cta-facts p {
    color: var(--color-text-muted);
    margin: 0;
    font-size: .9rem
}

@media(max-width:900px) {
    .home-cta {
        grid-template-columns: 1fr
    }

    .home-cta-facts {
        grid-template-columns: 1fr 1fr 1fr
    }

    .gallery-single-preview {
        min-height: 440px
    }
}

@media(max-width:640px) {
    .home-cta {
        padding-left: 20px;
        padding-right: 20px
    }

    .home-cta-copy {
        padding: 26px
    }

    .home-cta-facts {
        grid-template-columns: 1fr
    }

    .home-cta-facts article {
        min-height: 200px
    }

    .gallery-single-preview {
        min-height: 360px
    }

    .gallery-single-preview>span {
        left: 22px;
        right: 22px;
        bottom: 22px;
        grid-template-columns: 1fr auto
    }

    .gallery-single-preview small {
        grid-column: 1/-1
    }

    .gallery-single-preview strong {
        font-size: 2rem
    }
}

@media (max-width: 480px) {
    :root {
        --container: calc(100% - 20px)
    }

    .section {
        padding: 48px 0
    }

    .booking-form,
    .contact-card,
    .legal-content,
    .home-cta-copy {
        padding: 18px
    }

    .form-title h2 {
        font-size: 1.9rem
    }

    .subhero-content h1 {
        font-size: 2.2rem
    }

    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 2.8rem)
    }
}