:root {
    --black: #050505;
    --ink: #102739;
    --accent: #ef6b4a;
    --accent-deep: #c94f36;
    --coral: #f06f4f;
    --gold: #f5ba38;
    --green: #a8cb25;
    --paper: #ffffff;
    --mist: #f3f5f6;
    --line: #d9dee2;
    --muted: #5d6d78;
    --header-height: 98px;
    --shell: 1120px;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: "Helvetica Neue", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0;
    -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
body.home-page { height: 100vh; overflow: hidden; background: var(--black); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; letter-spacing: 0; }
button { color: inherit; }
[hidden] { display: none !important; }

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 12px;
    left: 12px;
    padding: 8px 12px;
    color: var(--black);
    background: #fff;
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.content-shell { width: min(calc(100% - 96px), var(--shell)); margin: 0 auto; }

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: var(--header-height);
    color: #fff;
    transition: background-color .3s ease, height .3s ease;
}
.site-header--home { background: var(--black); }
.site-header--overlay { background: rgba(0, 0, 0, .08); }
.site-header.is-scrolled { height: 76px; background: rgba(5, 5, 5, .96); }
.site-header__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 34px 0 30px;
}
.brand { display: inline-flex; align-items: center; gap: 16px; flex: 0 0 auto; color: #fff; }
.brand__mark { width: 42px; height: 42px; display: grid; place-items: center; overflow: hidden; }
.brand__mark img { width: 100%; height: 100%; object-fit: contain; }
.brand__wordmark { display: grid; line-height: 1; }
.brand__wordmark strong { font-size: 19px; font-weight: 650; }
.brand__wordmark small { margin-top: 7px; font-size: 9px; font-weight: 600; color: rgba(255,255,255,.62); }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: 44px; }
.site-nav > a, .site-nav__main, .site-nav__context-title {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,.74);
    border-bottom: 1px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}
.site-nav > a:hover, .site-nav > a:focus-visible, .site-nav > a.is-active,
.site-nav__main:hover, .site-nav__main:focus-visible, .site-nav__main.is-active,
.site-nav__context-title:hover, .site-nav__context-title:focus-visible { color: #fff; border-bottom-color: var(--gold); }
.site-nav__group { position: relative; display: flex; align-items: center; }
.site-nav__submenu {
    position: fixed;
    z-index: 90;
    top: var(--header-height);
    right: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    color: #fff;
    background: rgba(5,5,5,.97);
    border-top: 1px solid rgba(255,255,255,.14);
    transition: opacity .22s ease, transform .22s var(--ease), visibility .22s ease;
}
.site-header.is-scrolled .site-nav__submenu { top: 76px; }
.site-nav__group:hover > .site-nav__submenu,
.site-nav__group:focus-within > .site-nav__submenu { visibility: visible; opacity: 1; pointer-events: auto; transform: translateY(0); }
.site-nav__submenu-inner { width: min(calc(100% - 96px), var(--shell)); min-height: 154px; display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 54px; align-items: center; margin: 0 auto; padding: 30px 0; }
.site-nav__overview { display: grid; gap: 8px; padding-right: 38px; border-right: 1px solid rgba(255,255,255,.22); }
.site-nav__overview strong { font-size: 23px; font-weight: 400; }
.site-nav__overview span { color: rgba(255,255,255,.52); font-size: 11px; }
.site-nav__submenu-links { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 5px 28px; }
.site-nav__submenu-links a { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.72); border-bottom: 1px solid rgba(255,255,255,.12); font-size: 12px; }
.site-nav__submenu-links a:hover, .site-nav__submenu-links a:focus-visible { color: #fff; border-color: var(--accent); }
.site-nav__submenu-arrow {
    position: relative;
    flex: 0 0 13px;
    width: 13px;
    height: 13px;
    border-top: 1.5px solid var(--gold);
    border-right: 1.5px solid var(--gold);
}
.site-nav__submenu-arrow::after {
    content: "";
    position: absolute;
    top: 5px;
    right: -1px;
    width: 16px;
    height: 1.5px;
    background: var(--gold);
    transform: rotate(-45deg);
    transform-origin: right center;
}
.site-nav--context { gap: 0; }
.site-nav__context-group { gap: 18px; }
.site-nav__context-group::before { content: ""; width: 1px; height: 24px; margin-right: 4px; background: rgba(255,255,255,.4); }
.site-nav__context-title { color: #fff; font-size: 13px; }
.site-nav__context-current { color: rgba(255,255,255,.42); font-size: 10px; }
.site-nav__mobile-directory { display: none; }
.ops-entry {
    width: 30px;
    height: 40px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    margin-left: auto;
    border: 0;
    background: transparent;
    transition: transform .2s ease, opacity .2s ease;
}
.ops-entry:hover, .ops-entry:focus-visible { opacity: .78; transform: translateY(-1px) scale(1.04); }
.ops-entry img { width: 30px; height: 40px; object-fit: contain; }
.menu-toggle { display: none; width: 46px; height: 46px; margin-left: auto; padding: 0; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 30px; height: 2px; margin: 6px auto; background: currentColor; transition: transform .25s ease, opacity .25s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-8px) rotate(-45deg); }

.home-stage { height: 100vh; padding-top: var(--header-height); }
.home-hero { position: relative; height: calc(100vh - var(--header-height)); min-height: 520px; overflow: hidden; color: #fff; background: var(--ink); }
.home-hero__media, .home-hero__shade { position: absolute; inset: 0; }
.home-hero__media img { width: 100%; height: 100%; object-fit: cover; animation: home-image-in 1.2s var(--ease) both, home-image-breathe 20s 1.2s ease-in-out infinite alternate; }
.home-hero__shade { background: linear-gradient(to bottom, rgba(0,0,0,.08), rgba(0,0,0,.14) 50%, rgba(0,0,0,.58)); }
.home-hero__content { position: relative; z-index: 1; height: 100%; display: grid; place-items: center; padding: 48px 48px 132px; text-align: center; }
.home-hero__messages { position: relative; width: min(100%, 1020px); min-height: 100px; }
.home-hero__message {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .8s var(--ease), transform .8s var(--ease);
    pointer-events: none;
}
.home-hero__message.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; animation: home-title-fade 6s ease-in-out infinite; }
.home-hero h1 { max-width: 1020px; margin: 0; color: #fff; font-size: 31px; line-height: 1.45; font-weight: 500; }
.home-hero h1 span, .home-hero h1 strong { display: inline; font-weight: inherit; }
.home-hero__foot {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 22px;
    left: 34px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    color: rgba(255,255,255,.68);
    font-size: 10px;
}

.page-hero { position: relative; min-height: 720px; height: 100vh; overflow: hidden; color: #fff; background: var(--ink); }
.page-hero__media, .page-hero__shade { position: absolute; inset: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); animation: page-image-in 1.1s var(--ease) both; }
.page-hero__shade { background: linear-gradient(90deg, rgba(0,0,0,.76) 0%, rgba(0,0,0,.48) 48%, rgba(0,0,0,.16) 78%, rgba(0,0,0,.3) 100%); }
.page-hero__layout {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 136px), var(--shell));
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 80px;
    align-items: center;
    padding-top: var(--header-height);
}
.page-hero__copy { align-self: center; max-width: 700px; }
.page-hero h1 { margin: 0; font-size: 60px; line-height: 1.18; font-weight: 300; color: #fff; }
.page-hero__copy > p { max-width: 670px; margin: 28px 0 0; color: rgba(255,255,255,.82); font-size: 16px; line-height: 1.8; }
.page-hero__continue { display: inline-flex; align-items: center; gap: 22px; margin-top: 38px; padding-left: 16px; border-left: 2px solid var(--gold); font-size: 12px; font-weight: 600; }
.section-switcher { align-self: center; overflow: hidden; background: var(--black); }
.section-switcher__item {
    position: relative;
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 26px;
    color: rgba(255,255,255,.88);
    border: 0;
    border-bottom: 2px solid #fff;
    background: var(--black);
    font-size: 12px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    isolation: isolate;
    transition: background .24s ease, color .24s ease;
}
.section-switcher__item::before, .section-switcher__item::after { content: ""; position: absolute; inset: 0; z-index: -2; opacity: 0; transition: opacity .32s ease, transform .7s var(--ease); }
.section-switcher__item::before { background-image: var(--switch-image); background-size: cover; background-position: center; transform: scale(1.05); }
.section-switcher__item::after { z-index: -1; background: rgba(0,0,0,.42); }
.section-switcher__item:last-child { border-bottom: 0; }
.section-switcher__item:hover::before, .section-switcher__item:hover::after,
.section-switcher__item:focus-visible::before, .section-switcher__item:focus-visible::after { opacity: 1; transform: scale(1); }
.section-switcher__item.is-active { color: #fff; background: var(--accent); }
.section-switcher__item.is-active::before, .section-switcher__item.is-active::after { opacity: 0; }
.section-switcher__item.is-active b { visibility: hidden; }
.section-switcher__item span, .section-switcher__item b { position: relative; z-index: 1; }
.section-switcher__item b { font-size: 25px; font-weight: 300; }

.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: 11px; font-weight: 700; }
.section-title { margin-bottom: 52px; }
.section-title h2, .contact-section h2, .contact-band h2 { margin: 0; color: var(--ink); font-size: 40px; line-height: 1.3; font-weight: 400; }
.section-title--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.section-title--row > span { color: var(--muted); font-size: 12px; }

.about-overview { padding: 108px 0 92px; background: #fff; }
.about-overview__inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 84px; align-items: start; }
.about-overview blockquote { margin: 0; color: var(--ink); font-size: 35px; line-height: 1.5; font-weight: 300; }
.metric-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.metric { min-height: 146px; display: flex; flex-direction: column; justify-content: center; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.metric strong { color: var(--accent-deep); font-size: 38px; line-height: 1; font-weight: 400; }
.metric span { margin-top: 14px; color: var(--muted); font-size: 12px; }

.service-section { padding: 100px 0 124px; color: #fff; background: var(--black); }
.service-section .section-title h2, .service-section .eyebrow { color: #fff; }
.service-list { border-top: 1px solid rgba(255,255,255,.25); }
.service-item {
    min-height: 126px;
    display: grid;
    grid-template-columns: 64px minmax(180px, .7fr) minmax(0, 1.3fr) 36px;
    gap: 30px;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.25);
    transition: background .25s ease, padding .25s var(--ease);
}
.service-item:hover { padding: 0 20px; background: rgba(255,255,255,.06); }
.service-item__index { color: var(--gold); font-size: 12px; }
.service-item h3 { margin: 0; color: #fff; font-size: 25px; line-height: 1.4; font-weight: 400; }
.service-item p { margin: 0; color: rgba(255,255,255,.65); font-size: 14px; }
.service-item__arrow { color: #fff; font-size: 28px; }

.partner-section { padding: 100px 0 124px; background: #fff; }
.partner-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 48px 34px; }
.partner-list > .managed-state { grid-column: 1 / -1; }
.partner-item { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 28px; align-items: center; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.partner-item__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.partner-item__media img { width: 100%; height: 100%; object-fit: cover; }
.partner-item h3 { margin: 0; color: var(--ink); font-size: 24px; font-weight: 400; }
.partner-item p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }

.catalog-section { padding: 82px 0 126px; background: #fff; }
.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 40px; margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.catalog-toolbar__title { display: flex; align-items: baseline; gap: 12px; }
.catalog-toolbar__title strong { color: var(--ink); font-size: 38px; line-height: 1; font-weight: 400; }
.catalog-toolbar__title span { color: var(--muted); font-size: 12px; }
.filter-bar { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.filter-button { min-height: 38px; padding: 0 14px; border: 1px solid var(--line); background: #fff; cursor: pointer; color: var(--muted); font-size: 12px; }
.filter-button:hover, .filter-button.is-active { color: #fff; border-color: var(--black); background: var(--black); }
.catalog-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px 34px; }
.catalog-grid > .managed-state { grid-column: 1 / -1; }
.route-card-link[hidden] { display: none; }
.route-card { height: 100%; background: #fff; }
.route-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--ink); }
.route-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.route-card-link:hover .route-card__media img { transform: scale(1.035); }
.route-card__category { position: absolute; top: 0; left: 0; padding: 9px 12px; color: #fff; background: var(--black); font-size: 11px; }
.route-card__body { padding: 24px 0 20px; border-bottom: 1px solid var(--line); }
.route-card__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 12px; color: var(--accent-deep); font-size: 11px; }
.route-card h3 { margin: 0; color: var(--ink); font-size: 26px; line-height: 1.45; font-weight: 400; }
.route-card p { margin: 14px 0 0; color: var(--muted); font-size: 14px; display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.route-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; color: var(--ink); font-size: 12px; }
.route-card__foot span:last-child { color: var(--coral); font-size: 26px; }
.media-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--ink), var(--accent)); }

.contact-band { padding: 70px 0; color: #fff; background: var(--accent-deep); }
.contact-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.contact-band h2 { color: #fff; font-size: 34px; }
.contact-band p { margin: 10px 0 0; color: rgba(255,255,255,.72); }
.contact-band__actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }

.news-section { padding: 96px 0 126px; background: #fff; }
.news-list { border-top: 1px solid var(--line); }
.news-item { min-height: 190px; display: grid; grid-template-columns: 210px minmax(0, 1fr) 40px; gap: 34px; align-items: center; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s var(--ease); }
.news-item[hidden] { display: none; }
.news-item:hover { padding: 0 18px; background: var(--mist); }
.news-item__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.news-item__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.news-item:hover img { transform: scale(1.035); }
.news-item__meta { margin-bottom: 10px; color: var(--accent-deep); font-size: 11px; }
.news-item h3 { margin: 0; color: var(--ink); font-size: 25px; line-height: 1.45; font-weight: 400; }
.news-item p { max-width: 680px; margin: 12px 0 0; color: var(--muted); font-size: 14px; display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.news-item__arrow { color: var(--coral); font-size: 30px; }

.contact-section { padding: 110px 0 126px; background: #fff; }
.contact-section__layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.contact-section h2 { max-width: 480px; }
.contact-section p:not(.eyebrow) { max-width: 520px; margin: 22px 0 0; color: var(--muted); }
.contact-actions { display: flex; flex-wrap: wrap; align-content: start; justify-content: flex-end; gap: 10px; }
.contact-details { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.contact-details > div { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 24px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-details span { color: var(--accent-deep); font-size: 11px; }
.contact-details a, .contact-details strong { margin-top: 8px; color: var(--ink); font-size: 19px; font-weight: 400; overflow-wrap: anywhere; }
.contact-qr-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 36px; }
.contact-qr-item { min-width: 0; }
.contact-qr-item__media { width: min(100%, 320px); aspect-ratio: 1 / 1; display: grid; place-items: center; overflow: hidden; background: var(--mist); }
.contact-qr-item__media img { width: 100%; height: 100%; object-fit: contain; background: #fff; }
.contact-qr-item__media span { width: 48px; height: 48px; border: 1px solid #b7c0c6; position: relative; }
.contact-qr-item__media span::before, .contact-qr-item__media span::after { content: ""; position: absolute; background: #b7c0c6; }
.contact-qr-item__media span::before { width: 20px; height: 1px; left: 13px; top: 23px; }
.contact-qr-item__media span::after { width: 1px; height: 20px; left: 23px; top: 13px; }
.contact-qr-item h3 { margin: 18px 0 0; color: var(--ink); font-size: 20px; font-weight: 500; }
.contact-qr-item p { margin: 5px 0 0 !important; color: var(--muted); font-size: 12px; }

.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border: 1px solid transparent; border-radius: 0; font-size: 13px; font-weight: 600; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--ink { color: #fff; background: var(--black); }
.button--light { color: var(--black); background: #fff; }
.button--outline { color: var(--ink); border-color: var(--ink); background: transparent; }
.button--outline-light { color: #fff; border-color: rgba(255,255,255,.65); background: transparent; }
.contact-unavailable { color: var(--muted); font-size: 13px; }
.contact-band .contact-unavailable { color: rgba(255,255,255,.7); }

.site-footer { color: rgba(255,255,255,.62); background: var(--black); }
.site-footer__top { min-height: 180px; display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: center; border-bottom: 1px solid rgba(255,255,255,.16); }
.brand--footer { color: #fff; }
.site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; font-size: 12px; }
.site-footer__nav a:hover { color: #fff; }
.site-footer__contact { display: grid; justify-items: end; gap: 3px; font-size: 12px; }
.site-footer__bottom { min-height: 68px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: 11px; }

.managed-state { min-height: 170px; display: grid; place-items: center; padding: 36px; border: 1px solid var(--line); color: var(--muted); text-align: center; }
.service-list .managed-state { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.65); }
.managed-state.is-error { color: var(--coral); }

/* Content detail pages keep the same cloud-rendered document contract. */
.content-detail-main { min-height: 70vh; padding-top: var(--header-height); background: #fff; }
.content-loading { min-height: 520px; border: 0; }
.content-hero { position: relative; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; color: #fff; background: var(--ink); }
.content-hero__media, .content-hero__shade { position: absolute; inset: 0; }
.content-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.content-hero__shade { background: linear-gradient(to top, rgba(0,0,0,.92), rgba(0,0,0,.48) 62%, rgba(0,0,0,.16)); }
.content-hero__inner { position: relative; z-index: 1; width: min(calc(100% - 96px), var(--shell)); margin: 0 auto; padding: 150px 0 66px; }
.content-hero__back { display: inline-flex; margin-bottom: 36px; padding-bottom: 3px; border-bottom: 1px solid rgba(255,255,255,.45); font-size: 12px; color: rgba(255,255,255,.75); }
.content-hero h1 { max-width: 900px; margin: 0; color: #fff; font-size: 54px; line-height: 1.28; font-weight: 300; }
.content-hero__summary { max-width: 740px; margin: 22px 0 0; color: rgba(255,255,255,.74); font-size: 16px; }
.content-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 24px; color: var(--gold); font-size: 11px; }
.editorial-body { width: min(calc(100% - 48px), 860px); margin: 0 auto; padding: 88px 0 118px; }
.editorial-body--wide { width: min(calc(100% - 48px), 1120px); }
.editorial-section { margin: 0 0 66px; }
.editorial-section h2 { margin: 0 0 22px; color: var(--ink); font-size: 32px; line-height: 1.4; font-weight: 400; }
.editorial-section h3 { margin: 36px 0 12px; color: var(--ink); font-size: 20px; }
.editorial-section p { margin: 0 0 18px; color: #465d6a; font-size: 17px; line-height: 2; }
.editorial-section ul, .editorial-section ol { margin: 0; padding-left: 24px; color: #465d6a; }
.editorial-section li { margin: 9px 0; padding-left: 5px; }
.editorial-lead { padding-left: 24px; border-left: 3px solid var(--accent); color: var(--ink) !important; font-size: 20px !important; }
.editorial-list { list-style: none; padding: 0 !important; border-top: 1px solid var(--line); }
.editorial-list li { margin: 0; padding: 16px 0 16px 24px; border-bottom: 1px solid var(--line); }
.itinerary-list { border-top: 1px solid var(--line); }
.itinerary-item { display: grid; grid-template-columns: 145px minmax(0, 1fr); gap: 28px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.itinerary-item h3, .itinerary-item p { margin: 0; }
.content-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-bottom: 76px; }
.content-gallery figure { aspect-ratio: 4 / 3; margin: 0; overflow: hidden; background: var(--mist); }
.content-gallery img { width: 100%; height: 100%; object-fit: cover; }
.source-pages { width: min(100%, 980px); margin: 0 auto 76px; background: #fff; }
.source-pages img { width: 100%; margin: 0; }
.source-frame { width: 100%; min-height: 78vh; border: 1px solid var(--line); background: var(--mist); }
.source-card { padding: 32px; border-left: 4px solid var(--accent); background: var(--mist); }
.detail-cta { margin-top: 76px; padding: 42px; color: #fff; background: var(--black); }
.detail-cta h2 { color: #fff; }
.detail-cta p { color: rgba(255,255,255,.7); }
.detail-cta__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.related-route { margin-top: 66px; padding-top: 54px; border-top: 1px solid var(--line); }
.related-route > h2 { margin-bottom: 26px; }
.related-route .route-card-link { display: block; max-width: 520px; }
.content-error { min-height: 520px; display: grid; place-items: center; padding: 140px 24px 80px; text-align: center; }
.content-error h1 { margin: 0 0 12px; color: var(--ink); font-size: 40px; font-weight: 400; }
.content-error p { margin: 0 0 22px; color: var(--muted); }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { transform: translateY(16px); transition: transform .7s var(--ease); }
.motion-ready .reveal.is-visible { transform: translateY(0); }

@keyframes home-image-in { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1.01); } }
@keyframes home-image-breathe { from { transform: scale(1.01); } to { transform: scale(1.055); } }
@keyframes page-image-in { from { opacity: 0; transform: scale(1.08); } to { opacity: 1; transform: scale(1.02); } }
@keyframes home-title-fade {
    0%, 100% { opacity: .38; filter: blur(.2px); }
    45%, 60% { opacity: 1; filter: blur(0); }
}

@media (max-width: 1050px) {
    .site-nav { gap: 20px; margin-left: 30px; }
    .page-hero__layout { width: min(calc(100% - 80px), var(--shell)); grid-template-columns: minmax(0, 1fr) 300px; gap: 48px; }
    .page-hero h1 { font-size: 52px; }
    .about-overview__inner { gap: 54px; }
    .site-footer__top { grid-template-columns: 1fr 1fr; }
    .site-footer__nav { justify-content: flex-end; }
    .site-footer__contact { grid-column: 1 / -1; justify-items: start; padding-bottom: 28px; }
}

@media (max-width: 820px) {
    :root { --header-height: 84px; }
    .content-shell { width: min(calc(100% - 40px), var(--shell)); }
    .site-header__inner { padding: 0 22px 0 22px; }
    .site-header .brand { position: relative; z-index: 3; }
    .ops-entry { position: relative; z-index: 3; width: 26px; height: 36px; margin-left: auto; margin-right: 10px; }
    .ops-entry img { width: 26px; height: 36px; }
    .menu-toggle { position: relative; z-index: 3; display: block; }
    .menu-toggle { margin-left: 0; }
    .site-nav {
        position: fixed;
        z-index: 2;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        margin: 0;
        padding: 132px 54px 60px;
        visibility: hidden;
        opacity: 0;
        background: var(--black);
        transition: opacity .25s ease, visibility .25s ease;
        overflow-y: auto;
        pointer-events: none;
    }
    .site-nav.is-open { visibility: visible; opacity: 1; background: #050505; pointer-events: auto; }
    .site-nav--context > .site-nav__context-group { display: none; }
    .site-nav__mobile-directory { width: 100%; display: block; }
    .site-nav__group { width: 100%; display: block; }
    .site-nav > a, .site-nav__main, .site-nav__context-title, .site-nav__mobile-directory > a { width: 100%; min-height: 58px; display: flex; align-items: center; color: #fff; border: 0; font-size: 16px; }
    .site-nav > a.is-active::before, .site-nav__main.is-active::before { content: ""; width: 2px; height: 22px; margin-right: 18px; background: var(--gold); }
    .site-nav__submenu { position: static; display: block; visibility: hidden; opacity: 1; pointer-events: none; transform: none; border: 0; background: transparent; }
    .site-nav.is-open .site-nav__submenu { visibility: visible; pointer-events: auto; }
    .site-nav--primary > .site-nav__group > .site-nav__submenu,
    .site-nav__mobile-directory .site-nav__group:not(.is-active) > .site-nav__submenu { display: none; }
    .site-nav__submenu-inner { width: 100%; min-height: 0; display: block; padding: 0 0 22px 20px; }
    .site-nav__overview { display: none; }
    .site-nav__submenu-links { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 20px; }
    .site-nav__submenu-links a { min-height: 38px; font-size: 12px; }
    .home-stage { padding-top: 0; }
    .home-hero { height: 100vh; min-height: 650px; }
    .home-hero__content { padding: 110px 36px 138px; align-items: end; }
    .home-hero__messages { min-height: 64px; }
    .home-hero h1 { max-width: none; font-size: 24px; line-height: 1.4; white-space: nowrap; }
    .home-hero h1 span, .home-hero h1 strong { display: inline; }
    .home-hero__foot { right: 20px; bottom: 18px; left: 20px; }
    .page-hero { min-height: 920px; height: auto; }
    .page-hero__shade { background: linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.72) 68%, rgba(0,0,0,.84)); }
    .page-hero__layout { width: min(calc(100% - 56px), var(--shell)); min-height: 920px; grid-template-columns: 1fr; gap: 48px; align-content: start; padding: 134px 0 54px; }
    .page-hero__copy { align-self: start; max-width: 620px; }
    .page-hero h1 { max-width: 8.5em; font-size: 40px; line-height: 1.28; }
    .page-hero__copy > p { font-size: 15px; }
    .section-switcher {
        position: relative;
        align-self: end;
        width: min(100%, 248px);
        height: 174px;
        justify-self: center;
        overflow: hidden;
        background: transparent;
        touch-action: pan-x;
    }
    .section-switcher::before {
        content: "";
        position: absolute;
        z-index: 2;
        top: 50%;
        left: 0;
        width: 3px;
        height: 30px;
        background: var(--gold);
        transform: translateY(-50%);
        pointer-events: none;
    }
    .section-switcher__item {
        position: absolute;
        inset: 58px 0 auto;
        min-height: 58px;
        padding: 0 18px;
        border: 0;
        background: transparent;
        opacity: 1;
        transform: translateY(0) scale(1);
        transition: opacity .28s ease, transform .34s var(--ease), color .28s ease;
    }
    .section-switcher__item::before, .section-switcher__item::after { display: none; }
    .section-switcher__item.is-prev { opacity: .34; transform: translateY(-58px) scale(.9); }
    .section-switcher__item.is-next { opacity: .34; transform: translateY(58px) scale(.9); }
    .section-switcher__item.is-wheel-hidden { visibility: hidden; opacity: 0; transform: translateY(0) scale(.82); pointer-events: none; }
    .section-switcher__item.is-active { z-index: 1; color: #fff; background: transparent; }
    .section-switcher__item.is-active span { font-size: 17px; font-weight: 600; }
    .section-switcher__item b { display: none; }
    .about-overview__inner { grid-template-columns: 1fr; }
    .service-item { grid-template-columns: 48px minmax(160px, .75fr) minmax(0, 1.25fr); gap: 20px; }
    .service-item__arrow { display: none; }
    .contact-section__layout { grid-template-columns: 1fr; gap: 40px; }
    .contact-actions { justify-content: flex-start; }
    .contact-details { grid-column: auto; }
    .news-item { grid-template-columns: 170px minmax(0, 1fr) 32px; gap: 24px; }
    .contact-band__inner { align-items: flex-start; flex-direction: column; gap: 26px; }
    .contact-band__actions { justify-content: flex-start; }
    .content-hero h1 { font-size: 46px; }
}

@media (max-width: 600px) {
    :root { --header-height: 76px; }
    .content-shell { width: min(calc(100% - 32px), var(--shell)); }
    .brand { gap: 12px; }
    .brand__mark { width: 38px; height: 38px; }
    .brand__wordmark strong { font-size: 18px; }
    .site-nav { padding: 118px 52px 50px; }
    .home-hero h1 { max-width: none; font-size: 22px; line-height: 1.4; white-space: nowrap; }
    .home-hero h1 span, .home-hero h1 strong { display: inline; }
    .home-hero__foot span:last-child { display: none; }
    .page-hero { min-height: 860px; }
    .page-hero__layout { width: calc(100% - 48px); min-height: 860px; padding: 122px 0 42px; }
    .page-hero h1 { max-width: 9em; font-size: 34px; line-height: 1.3; }
    .page-hero__copy > p { margin-top: 22px; font-size: 14px; line-height: 1.75; }
    .page-hero__continue { margin-top: 28px; }
    .section-switcher { width: min(100%, 224px); height: 162px; }
    .section-switcher::before { height: 28px; }
    .section-switcher__item { inset: 54px 0 auto; min-height: 54px; padding: 0 16px; }
    .section-switcher__item.is-prev { transform: translateY(-54px) scale(.9); }
    .section-switcher__item.is-next { transform: translateY(54px) scale(.9); }
    .section-switcher__item.is-active span { font-size: 15px; }
    .about-overview, .service-section, .partner-section, .news-section, .contact-section { padding: 76px 0 90px; }
    .about-overview blockquote { font-size: 28px; }
    .metric-grid { grid-template-columns: 1fr; }
    .metric { min-height: 112px; }
    .section-title { margin-bottom: 36px; }
    .section-title h2, .contact-section h2 { font-size: 32px; }
    .section-title--row { align-items: flex-start; flex-direction: column; gap: 12px; }
    .service-item { min-height: 0; grid-template-columns: 36px minmax(0, 1fr); gap: 12px; align-items: start; padding: 24px 0; }
    .service-item:hover { padding: 24px 8px; }
    .service-item h3 { font-size: 22px; }
    .service-item p { grid-column: 2; font-size: 14px; }
    .partner-list { grid-template-columns: 1fr; }
    .partner-item { grid-template-columns: 112px minmax(0, 1fr); gap: 18px; }
    .catalog-section { padding: 58px 0 88px; }
    .catalog-toolbar { align-items: flex-start; flex-direction: column; gap: 20px; margin-bottom: 34px; }
    .filter-bar { width: 100%; flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
    .filter-bar::-webkit-scrollbar { display: none; }
    .filter-button { flex: 0 0 auto; }
    .catalog-grid { grid-template-columns: 1fr; gap: 44px; }
    .route-card h3 { font-size: 23px; }
    .news-item { min-height: 138px; grid-template-columns: 104px minmax(0, 1fr); gap: 16px; padding: 18px 0; }
    .news-item:hover { padding: 18px 8px; }
    .news-item__arrow, .news-item p { display: none; }
    .news-item h3 { font-size: 18px; }
    .contact-details { grid-template-columns: 1fr; }
    .contact-qr-grid { grid-template-columns: 1fr; gap: 42px; }
    .contact-qr-item__media { width: min(100%, 358px); }
    .contact-band { padding: 56px 0; }
    .contact-band h2 { font-size: 29px; }
    .button { min-height: 48px; padding: 0 18px; }
    .site-footer__top { min-height: 0; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; padding: 46px 0; }
    .site-footer__nav { justify-content: flex-start; gap: 12px 20px; }
    .site-footer__contact { padding: 0; }
    .site-footer__bottom { min-height: 90px; align-items: flex-start; justify-content: center; flex-direction: column; gap: 4px; }
    .content-hero { min-height: 560px; }
    .content-hero__inner { width: calc(100% - 32px); padding: 118px 0 46px; }
    .content-hero h1 { font-size: 37px; }
    .content-hero__summary { font-size: 15px; }
    .editorial-body, .editorial-body--wide { width: calc(100% - 32px); padding: 62px 0 88px; }
    .editorial-section h2 { font-size: 27px; }
    .editorial-section p { font-size: 16px; }
    .itinerary-item { grid-template-columns: 1fr; gap: 9px; }
    .content-gallery { grid-template-columns: 1fr; }
    .detail-cta { padding: 28px 22px; }
}

@media (max-width: 340px) {
    .home-hero h1 { font-size: 19px; }
    .page-hero h1 { font-size: 31px; }
    .section-switcher { width: min(100%, 206px); }
}

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