:root {
    --ink: #071923;
    --ink-soft: #173441;
    --ocean: #062535;
    --ocean-deep: #041822;
    --sea: #0b6e83;
    --foam: #f4f8f7;
    --white: #ffffff;
    --muted: #617680;
    --line: rgba(7, 25, 35, 0.14);
    --coral: #ff6b4a;
    --coral-action: #bd3923;
    --coral-dark: #982a19;
    --sand: #f4eee5;
    --container: 1240px;
    --shadow: 0 28px 70px rgba(6, 37, 53, 0.15);
    --radius: 4px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--foam);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

button,
select {
    cursor: pointer;
}

button {
    border: 0;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 8px;
    left: 8px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--ocean-deep);
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

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

:focus-visible {
    outline: 3px solid rgba(255, 107, 74, 0.6);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    z-index: 100;
    inset: 0 0 auto;
    height: 86px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    transition: background 0.25s ease, height 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
    height: 72px;
    background: rgba(4, 24, 34, 0.94);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

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

.brand-name {
    color: var(--white);
    font-size: 1.55rem;
    font-weight: 750;
    letter-spacing: -0.055em;
}

.brand-name span {
    color: var(--coral);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    font-size: 0.92rem;
    font-weight: 600;
}

.site-nav > a:not(.nav-cta) {
    position: relative;
    padding-block: 14px;
}

.site-nav > a:not(.nav-cta)::after {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    height: 1px;
    background: var(--coral);
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    color: var(--white);
    background: var(--coral-action);
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background: var(--coral-dark);
    transform: translateY(-1px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: var(--white);
    background: transparent;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
    position: relative;
    height: min(860px, 92vh);
    min-height: 690px;
    overflow: hidden;
    color: var(--white);
    background: var(--ocean-deep);
}

.hero-track,
.hero-slide,
.hero-slide picture,
.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.9s ease, visibility 0.9s;
}

.hero-slide.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
}

.hero-slide img {
    object-fit: cover;
    object-position: center;
    transform: scale(1.035);
    transition: transform 7s ease-out;
}

.hero-slide.is-active img {
    transform: scale(1);
}

.hero-slide:first-child img {
    object-position: 62% center;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 22, 32, 0.9) 0%, rgba(3, 22, 32, 0.62) 38%, rgba(3, 22, 32, 0.1) 72%),
        linear-gradient(0deg, rgba(3, 22, 32, 0.55) 0%, transparent 42%),
        linear-gradient(180deg, rgba(2, 17, 25, 0.35), transparent 30%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-top: 68px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 20px;
    color: var(--coral);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.82);
}

.eyebrow span {
    width: 34px;
    height: 2px;
    background: var(--coral);
}

.hero h1,
.hero h2 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(3.5rem, 7.4vw, 7.25rem);
    font-weight: 680;
    letter-spacing: -0.07em;
    line-height: 0.88;
}

.hero h1 em,
.hero h2 em,
.routes-panel h2 em,
.request-copy h2 em {
    color: var(--coral);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.section-heading h2 em {
    color: var(--coral-action);
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.045em;
}

.hero-copy {
    max-width: 590px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.83);
    font-size: clamp(1rem, 1.5vw, 1.23rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 34px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 28px;
    border: 1px solid transparent;
    font-size: 0.94rem;
    font-weight: 750;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button-primary {
    color: var(--white);
    background: var(--coral-action);
}

.button-primary:hover {
    background: var(--coral-dark);
    transform: translateY(-2px);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 44px;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 0.93rem;
    font-weight: 700;
}

.text-link span {
    color: var(--coral);
    font-size: 1.2rem;
}

.hero-controls {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 52px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    pointer-events: none;
}

.hero-controls > * {
    pointer-events: auto;
}

.slider-arrow {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(3, 22, 32, 0.3);
    backdrop-filter: blur(8px);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.slider-arrow:hover {
    border-color: var(--coral-action);
    background: var(--coral-action);
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dots button {
    width: 24px;
    height: 3px;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots button.is-active {
    width: 44px;
    background: var(--coral);
}

.slide-count {
    min-width: 57px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
}

.slide-count strong {
    color: var(--white);
    font-size: 1rem;
}

.hero-scroll {
    position: absolute;
    z-index: 5;
    bottom: 54px;
    left: max(24px, calc((100% - var(--container)) / 2));
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-scroll span {
    position: relative;
    width: 18px;
    height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
}

.hero-scroll span::after {
    position: absolute;
    top: 6px;
    left: 7px;
    width: 2px;
    height: 6px;
    background: var(--coral);
    content: "";
    animation: scroll-cue 1.8s ease-in-out infinite;
}

@keyframes scroll-cue {
    0%, 100% { opacity: 0.4; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(8px); }
}

.quick-strip {
    position: relative;
    z-index: 10;
    margin-top: -1px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(6, 37, 53, 0.07);
}

.quick-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 1fr);
}

.quick-intro,
.quick-grid > a {
    min-height: 126px;
    padding: 28px;
}

.quick-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    background: var(--ocean);
}

.micro-label {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.7rem;
    font-weight: 750;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.quick-intro strong {
    max-width: 260px;
    font-size: 1.14rem;
    line-height: 1.35;
}

.quick-grid > a {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 14px;
    border-right: 1px solid var(--line);
    transition: color 0.2s ease, background 0.2s ease;
}

.quick-grid > a:hover {
    color: var(--white);
    background: var(--coral-action);
}

.quick-grid > a:hover small,
.quick-grid > a:hover .quick-icon {
    color: rgba(255, 255, 255, 0.72);
}

.quick-icon {
    color: var(--coral);
    font-family: Georgia, serif;
    font-size: 2rem;
}

.quick-grid a span:nth-child(2) {
    display: flex;
    flex-direction: column;
    font-size: 0.92rem;
    font-weight: 750;
}

.quick-grid small {
    margin-bottom: 3px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 650;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.quick-grid b {
    font-size: 1.05rem;
}

.section {
    padding-block: 118px;
}

.fleet-section {
    background:
        radial-gradient(circle at 90% 12%, rgba(11, 110, 131, 0.07), transparent 28%),
        var(--foam);
}

.section-heading {
    display: grid;
    grid-template-columns: 1.5fr 0.65fr;
    align-items: end;
    gap: 60px;
    margin-bottom: 52px;
}

.section-kicker {
    margin-bottom: 13px;
    color: var(--coral-action);
}

.section-heading h2,
.routes-panel h2,
.request-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.6rem, 5vw, 5rem);
    font-weight: 680;
    letter-spacing: -0.065em;
    line-height: 0.98;
}

.section-heading > p {
    max-width: 420px;
    margin: 0 0 8px;
    color: var(--muted);
    font-size: 1.03rem;
}

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

.offer-card {
    min-width: 0;
    background: var(--white);
    box-shadow: 0 13px 35px rgba(6, 37, 53, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.offer-image {
    position: relative;
    aspect-ratio: 1 / 0.79;
    overflow: hidden;
    background: #bfd3d7;
}

.offer-image picture,
.offer-image img {
    width: 100%;
    height: 100%;
}

.offer-image img {
    object-fit: cover;
    transition: transform 0.55s ease;
}

.offer-card:hover .offer-image img {
    transform: scale(1.04);
}

.offer-image-speed img {
    object-position: 68% center;
}

.offer-index,
.offer-badge {
    position: absolute;
    top: 18px;
    min-height: 30px;
    padding: 6px 10px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-index {
    left: 18px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(3, 22, 32, 0.35);
    backdrop-filter: blur(8px);
}

.offer-badge {
    right: 18px;
    color: var(--ink);
    background: var(--white);
}

.offer-body {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 18px;
    padding: 25px 26px 27px;
}

.offer-body p {
    margin: 0 0 6px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.065em;
    text-transform: uppercase;
}

.offer-body h3 {
    margin: 0;
    font-size: 1.62rem;
    letter-spacing: -0.045em;
    line-height: 1.15;
}

.offer-body > a {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--white);
    background: var(--ocean);
    font-size: 1.15rem;
    transition: background 0.2s ease;
}

.offer-body > a:hover {
    background: var(--coral-action);
}

.offer-price {
    grid-column: 1 / -1;
    padding-top: 16px;
    color: var(--ink-soft);
    border-top: 1px solid var(--line);
    font-size: 0.85rem;
    font-weight: 650;
}

.routes-section {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    min-height: 760px;
    background: var(--ocean-deep);
}

.routes-image {
    min-height: 600px;
    background-image:
        linear-gradient(90deg, transparent 70%, rgba(4, 24, 34, 0.65)),
        url("/assets/img/hero-vladivostok.webp");
    background-position: 67% center;
    background-size: cover;
}

.routes-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px clamp(40px, 7vw, 120px);
    color: var(--white);
}

.section-kicker-light {
    color: var(--coral);
}

.routes-panel h2,
.request-copy h2 {
    color: var(--white);
}

.routes-lead {
    max-width: 600px;
    margin: 26px 0 35px;
    color: rgba(255, 255, 255, 0.66);
}

.route-list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.route-list button {
    display: grid;
    width: 100%;
    grid-template-columns: 38px 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    background: transparent;
    text-align: left;
    transition: color 0.2s ease, padding 0.2s ease;
}

.route-list button:hover {
    padding-left: 8px;
    color: var(--coral);
}

.route-list button span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.73rem;
    letter-spacing: 0.06em;
}

.route-list button strong {
    font-size: 1rem;
    font-weight: 650;
}

.route-list button i {
    font-style: normal;
}

.how-section {
    position: relative;
    overflow: hidden;
    background: var(--sand);
}

.how-section::after {
    position: absolute;
    right: -150px;
    bottom: -340px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(11, 110, 131, 0.14);
    border-radius: 50%;
    box-shadow: 0 0 0 80px rgba(11, 110, 131, 0.025), 0 0 0 160px rgba(11, 110, 131, 0.02);
    content: "";
}

.centered-heading {
    display: block;
    text-align: center;
}

.steps {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--white);
    box-shadow: 0 24px 64px rgba(6, 37, 53, 0.08);
}

.steps li {
    position: relative;
    min-height: 290px;
    padding: 42px;
    border-right: 1px solid var(--line);
}

.steps li:last-child {
    border-right: 0;
}

.steps li > span {
    position: absolute;
    top: 24px;
    right: 26px;
    color: #b5c2c6;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.step-icon {
    display: grid;
    width: 60px;
    height: 60px;
    margin-bottom: 35px;
    place-items: center;
    color: var(--white);
    background: var(--coral-action);
    font-family: Georgia, serif;
    font-size: 1.55rem;
}

.steps h3 {
    margin: 0 0 10px;
    font-size: 1.35rem;
    letter-spacing: -0.035em;
}

.steps p {
    max-width: 290px;
    margin: 0;
    color: var(--muted);
}

.request-section {
    position: relative;
    overflow: hidden;
    padding-block: 118px;
    color: var(--white);
    background:
        radial-gradient(circle at 7% 92%, rgba(11, 110, 131, 0.38), transparent 28%),
        var(--ocean);
}

.request-section::before {
    position: absolute;
    top: -220px;
    left: 28%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    content: "";
}

.request-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    align-items: start;
    gap: clamp(55px, 8vw, 120px);
}

.request-copy {
    position: sticky;
    top: 105px;
    padding-top: 12px;
}

.request-copy > p:not(.section-kicker) {
    max-width: 460px;
    margin: 28px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1.03rem;
}

.request-note {
    display: grid;
    max-width: 460px;
    grid-template-columns: 38px 1fr;
    align-items: start;
    gap: 14px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.request-note span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--coral);
    border: 1px solid rgba(255, 107, 74, 0.65);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-style: italic;
}

.request-note p {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.86rem;
}

.form-shell {
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.17);
}

.contact-form {
    position: relative;
    padding: clamp(28px, 4vw, 52px);
}

.form-topline {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 34px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--line);
}

.form-topline h3 {
    margin: 0;
    font-size: 1.65rem;
    letter-spacing: -0.045em;
}

.form-topline span {
    color: var(--muted);
    font-size: 0.76rem;
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.field,
.captcha-copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field > span,
.captcha-copy > span {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 14px;
    border: 1px solid #ced8dc;
    border-radius: 0;
    outline: 0;
    background: #fbfcfc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
    min-height: 105px;
    resize: vertical;
}

.field select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%);
    background-position: calc(100% - 18px) 22px, calc(100% - 13px) 22px;
    background-repeat: no-repeat;
    background-size: 5px 5px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--sea);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(11, 110, 131, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: #c43d30;
    box-shadow: 0 0 0 3px rgba(196, 61, 48, 0.08);
}

.field small,
.consent-error {
    min-height: 0;
    color: #a93329;
    font-size: 0.75rem;
}

.field small:empty,
.consent-error:empty {
    display: none;
}

.field-full {
    margin-top: 22px;
}

.captcha-row {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) 135px;
    align-items: end;
    gap: 18px;
    margin-top: 23px;
    padding: 20px;
    border: 1px solid var(--line);
    background: #f3f7f7;
}

.captcha-control {
    display: flex;
    align-items: center;
    gap: 10px;
}

.captcha-control img {
    width: 168px;
    height: 58px;
    border: 1px solid rgba(7, 25, 35, 0.12);
    background: var(--white);
}

.captcha-refresh {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    color: var(--sea);
    background: transparent;
    font-size: 1.35rem;
    transition: color 0.2s ease, transform 0.25s ease;
}

.captcha-refresh:hover {
    color: var(--coral);
    transform: rotate(40deg);
}

.captcha-input input {
    text-align: center;
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.consent {
    display: grid;
    grid-template-columns: 19px 1fr;
    align-items: start;
    gap: 10px;
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.82rem;
}

.consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--coral);
}

.consent-error {
    display: block;
    margin-top: 5px;
}

.form-footer {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 27px;
}

.button-submit {
    min-width: 220px;
    justify-content: space-between;
    color: var(--white);
    background: var(--coral-action);
}

.button-submit:hover {
    background: var(--coral-dark);
}

.button-submit:disabled {
    cursor: wait;
    opacity: 0.68;
}

.button-submit b {
    font-size: 1.2rem;
}

.form-status {
    margin: 0;
    color: var(--muted);
    font-size: 0.85rem;
}

.form-status.is-success {
    color: #167247;
}

.form-status.is-error {
    color: #a93329;
}

.contact-form.is-sent::after {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    content: "";
    pointer-events: none;
}

.honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    color: var(--white);
    background: var(--ocean-deep);
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 50px;
    padding-block: 66px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
}

.footer-main > p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-cta {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 54px;
    padding: 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.9rem;
    font-weight: 750;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-cta:hover {
    border-color: var(--coral-action);
    background: var(--coral-action);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 30px;
    padding-block: 22px;
    color: rgba(255, 255, 255, 0.42);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.72rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1060px) {
    .site-nav {
        gap: 22px;
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr;
    }

    .quick-intro,
    .quick-grid > a {
        min-height: 108px;
    }

    .quick-grid > a:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .quick-grid > a:nth-child(3) {
        border-bottom: 1px solid var(--line);
    }

    .offer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .offer-card:first-child {
        grid-column: 1 / -1;
    }

    .offer-card:first-child .offer-image {
        aspect-ratio: 16 / 7;
    }

    .routes-section {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .routes-panel {
        padding-inline: 52px;
    }

    .request-grid {
        grid-template-columns: 0.72fr 1.28fr;
        gap: 50px;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 800px) {
    .container {
        width: min(calc(100% - 34px), var(--container));
    }

    .site-header,
    .site-header.is-scrolled {
        height: 70px;
    }

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

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

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(4) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .site-nav {
        position: fixed;
        z-index: 1;
        top: 0;
        right: 0;
        left: 0;
        display: flex;
        visibility: hidden;
        height: 100dvh;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 2px;
        padding: 90px 28px 38px;
        background: rgba(4, 24, 34, 0.985);
        opacity: 0;
        transform: translateY(-18px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    }

    .site-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .site-nav > a:not(.nav-cta) {
        padding: 15px 6px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        font-size: 1.3rem;
    }

    .nav-cta {
        justify-content: center;
        margin-top: 22px;
        min-height: 56px;
    }

    .hero {
        height: 790px;
        min-height: 690px;
        max-height: 100svh;
    }

    .hero-shade {
        background:
            linear-gradient(90deg, rgba(3, 22, 32, 0.86), rgba(3, 22, 32, 0.28)),
            linear-gradient(0deg, rgba(3, 22, 32, 0.7), transparent 55%);
    }

    .hero-content {
        justify-content: flex-end;
        padding-top: 90px;
        padding-bottom: 160px;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(3.15rem, 12vw, 5.2rem);
    }

    .hero-copy {
        max-width: 500px;
    }

    .hero-scroll {
        display: none;
    }

    .hero-controls {
        bottom: 44px;
        justify-content: flex-start;
    }

    .quick-grid {
        width: 100%;
    }

    .section {
        padding-block: 86px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-bottom: 38px;
    }

    .section-heading > p {
        max-width: 620px;
    }

    .routes-section {
        grid-template-columns: 1fr;
    }

    .routes-image {
        min-height: 430px;
        background-image:
            linear-gradient(0deg, rgba(4, 24, 34, 0.75), transparent 40%),
            url("/assets/img/hero-vladivostok.webp");
    }

    .routes-panel {
        padding: 76px 28px 82px;
    }

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

    .steps li {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .steps li:last-child {
        border-bottom: 0;
    }

    .request-section {
        padding-block: 86px;
    }

    .request-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .request-copy {
        position: static;
    }

    .field-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .footer-cta {
        grid-column: 1 / -1;
        justify-content: space-between;
    }

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

    .footer-bottom a {
        grid-column: 2;
        grid-row: 1;
        text-align: right;
    }
}

@media (max-width: 580px) {
    .container {
        width: min(calc(100% - 26px), var(--container));
    }

    .brand-name {
        font-size: 1.4rem;
    }

    .hero {
        height: 720px;
        min-height: 650px;
    }

    .hero-slide:first-child img {
        object-position: 69% center;
    }

    .hero-content {
        padding-bottom: 158px;
    }

    .eyebrow {
        font-size: 0.66rem;
        letter-spacing: 0.13em;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(3rem, 15vw, 4.25rem);
        line-height: 0.91;
    }

    .hero-copy {
        margin-top: 22px;
        font-size: 0.98rem;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        margin-top: 27px;
    }

    .button-primary {
        width: 100%;
    }

    .hero-controls {
        gap: 12px;
    }

    .slider-dots button {
        width: 16px;
    }

    .slider-dots button.is-active {
        width: 30px;
    }

    .slide-count {
        display: none;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-intro,
    .quick-grid > a {
        min-height: 94px;
        padding: 21px 22px;
    }

    .quick-grid > a {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .section-heading h2,
    .routes-panel h2,
    .request-copy h2 {
        font-size: clamp(2.55rem, 12vw, 3.65rem);
    }

    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-card:first-child {
        grid-column: auto;
    }

    .offer-card:first-child .offer-image,
    .offer-image {
        aspect-ratio: 1 / 0.78;
    }

    .routes-image {
        min-height: 360px;
    }

    .routes-panel {
        padding-inline: 20px;
    }

    .steps li {
        padding: 34px 28px;
    }

    .field-grid {
        grid-template-columns: 1fr;
    }

    .form-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .captcha-row {
        grid-template-columns: 1fr;
        padding: 16px;
    }

    .captcha-input {
        max-width: 220px;
    }

    .form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .button-submit {
        width: 100%;
    }

    .footer-main,
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .footer-bottom a {
        grid-column: auto;
        grid-row: auto;
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
