:root {
    --ink: #090A0C;
    --ink-soft: #15171A;
    --cream: #F1EDE5;
    --paper: #FBFAF7;
    --white: #FFFFFF;
    --gold: #B99561;
    --gold-light: #D7BD94;
    --muted: #6E6E6B;
    --line: rgba(9, 10, 12, 0.14);
    --whatsapp: #25D366;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    zoom: 0.94;
}

.container {
    width: min(1450px, calc(100% - 9vw));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 102px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent);
}

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

.logo {
    display: flex;
    width: 108px;
    height: 98px;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-links a {
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
}

.header-cta {
    padding-bottom: 7px;
    border-bottom: 1px solid var(--gold-light);
}

.hero {
    position: relative;
    display: flex;
    min-height: 94vh;
    min-height: 94svh;
    align-items: flex-end;
    overflow: hidden;
    background: #111;
}

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

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

.hero-media-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

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

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.06) 38%, rgba(0, 0, 0, 0.88) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.5), transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1450px, calc(100% - 9vw));
    margin: 0 auto;
    padding: 190px 0 86px;
    color: var(--white);
}

.eyebrow,
.section-kicker {
    display: block;
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.hero .eyebrow {
    margin-bottom: 20px;
}

.hero h1 {
    max-width: 1120px;
    font-size: clamp(62px, 8vw, 132px);
    font-weight: 500;
    letter-spacing: -0.06em;
    line-height: 0.92;
    text-transform: uppercase;
}

.hero-bottom {
    display: flex;
    margin-top: 38px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.hero-bottom p {
    max-width: 670px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(17px, 1.5vw, 22px);
}

.text-link {
    display: inline-flex;
    min-width: 220px;
    padding: 15px 0;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-bottom: 1px solid var(--gold-light);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
}

.text-link::after {
    content: "→";
    color: var(--gold-light);
    font-size: 20px;
    transition: transform 0.25s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(7px);
}

.section {
    padding: 125px 0;
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    background: var(--ink);
    color: var(--white);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
    gap: 72px;
    margin-bottom: 72px;
    align-items: end;
}

.section-kicker {
    margin-bottom: 20px;
    color: var(--gold);
}

.section-head h2,
.request-heading h2 {
    max-width: 1050px;
    font-size: clamp(44px, 5.8vw, 86px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-transform: uppercase;
}

.section-head > p {
    color: var(--muted);
    font-size: 18px;
}

.section-dark .section-head > p {
    color: rgba(255, 255, 255, 0.62);
}

.destination-list {
    display: grid;
    gap: 28px;
}

.destination {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
    min-height: 520px;
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 24px 75px rgba(30, 25, 18, 0.1);
}

.destination:nth-child(even) .destination-image {
    order: 2;
}

.destination-image {
    min-height: 420px;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.destination-copy {
    display: flex;
    padding: 58px 62px;
    flex-direction: column;
    justify-content: center;
}

.destination-city {
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.destination-copy h3 {
    margin-bottom: 16px;
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -0.045em;
}

.destination-copy > p {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 17px;
}

.restaurant-names {
    list-style: none;
    border-top: 1px solid var(--line);
}

.restaurant-names li {
    display: flex;
    padding: 13px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    font-weight: 600;
}

.restaurant-names li::after {
    content: "по запросу";
    color: #98938C;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

.concierge-card {
    min-height: 250px;
    padding: 34px 30px;
    border-top: 1px solid var(--gold);
    background: rgba(255, 255, 255, 0.055);
}

.concierge-card span {
    display: block;
    margin-bottom: 48px;
    color: var(--gold-light);
    font-size: 12px;
}

.concierge-card h3 {
    margin-bottom: 13px;
    font-size: 21px;
    font-weight: 500;
}

.concierge-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
}

.fleet-card {
    overflow: hidden;
    background: var(--paper);
    box-shadow: 0 18px 60px rgba(30, 25, 18, 0.09);
}

.fleet-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.fleet-copy {
    padding: 30px 28px 34px;
}

.fleet-year {
    display: block;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.fleet-copy h3 {
    margin-bottom: 12px;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.fleet-copy p {
    min-height: 78px;
    color: var(--muted);
    font-size: 15px;
}

.fleet-meta {
    display: flex;
    margin-top: 22px;
    padding-top: 16px;
    justify-content: space-between;
    gap: 15px;
    border-top: 1px solid var(--line);
    color: #77736D;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.request-section {
    position: relative;
    padding: 130px 0 145px;
    overflow: hidden;
    background: var(--cream);
}

.request-section::before {
    content: "SKYFLY";
    position: absolute;
    top: 18px;
    right: -24px;
    color: rgba(185, 149, 97, 0.09);
    font-size: clamp(100px, 17vw, 280px);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 1;
}

.request-heading {
    position: relative;
    max-width: 1080px;
    margin-bottom: 68px;
}

.request-layout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.4fr) minmax(620px, 1fr);
    gap: 88px;
    align-items: start;
}

.request-copy p {
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 18px;
}

.request-copy a {
    display: block;
    width: fit-content;
    margin-top: 10px;
    color: var(--ink);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
}

.request-form {
    padding: 54px 60px 58px;
    border-top: 2px solid var(--gold);
    background: var(--paper);
    box-shadow: 0 30px 85px rgba(29, 25, 20, 0.12);
}

.form-title-row {
    display: flex;
    margin-bottom: 38px;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
}

.request-form h3 {
    font-size: 30px;
    font-weight: 500;
    letter-spacing: -0.035em;
}

.form-step {
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

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

.field-wide {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #77736D;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-control {
    width: 100%;
    min-height: 54px;
    padding: 13px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    outline: none;
    background: transparent;
    color: var(--ink);
    font: inherit;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-control::placeholder {
    color: #A09C95;
}

.form-control:focus {
    border-color: var(--gold);
}

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

select.form-control {
    cursor: pointer;
}

.submit-row {
    display: flex;
    margin-top: 40px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.submit-note {
    max-width: 390px;
    color: #8A867F;
    font-size: 12px;
}

.submit {
    min-width: 220px;
    min-height: 58px;
    padding: 15px 25px;
    border: 1px solid var(--ink);
    background: var(--ink);
    color: var(--white);
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.submit:hover,
.submit:focus-visible {
    border-color: var(--gold);
    background: var(--gold);
}

.success-message {
    margin-bottom: 26px;
    padding: 16px 18px;
    border-left: 3px solid var(--gold);
    background: rgba(185, 149, 97, 0.12);
    color: #4D4438;
}

footer {
    padding: 30px 0;
    background: var(--ink);
    color: rgba(255, 255, 255, 0.66);
}

.footer-row,
.footer-links {
    display: flex;
    align-items: center;
}

.footer-row {
    justify-content: space-between;
    gap: 24px;
}

.footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-right: 72px;
}

.footer-links a {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
}

.footer-instagram {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(215, 189, 148, 0.48);
    border-radius: 50%;
    color: var(--gold-light) !important;
}

.footer-instagram svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.wa-float {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 1000;
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    border-radius: 50%;
    background: var(--whatsapp);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.wa-float svg {
    width: 34px;
    height: 34px;
    fill: currentColor;
}

@media (max-width: 1100px) {
    .concierge-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .request-copy {
        max-width: 650px;
    }
}

@media (max-width: 780px) {
    .section-head {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .destination:nth-child(even) .destination-image {
        order: 0;
    }
}

@media (max-width: 640px) {
    body {
        zoom: 1;
    }

    .container,
    .hero-content {
        width: calc(100% - 32px);
    }

    .site-header {
        height: 82px;
    }

    .logo {
        width: 78px;
        height: 78px;
    }

    .back-link {
        display: none;
    }

    .header-links {
        gap: 0;
    }

    .header-links a {
        font-size: 11px;
    }

    .hero {
        min-height: 100svh;
    }

    .hero-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-media-grid img:nth-child(n+3) {
        display: none;
    }

    .hero-content {
        padding: 150px 0 54px;
    }

    .hero h1 {
        font-size: clamp(44px, 12vw, 56px);
        line-height: 0.94;
    }

    .hero-bottom {
        display: block;
        margin-top: 28px;
    }

    .hero-bottom p {
        font-size: 16px;
    }

    .text-link {
        margin-top: 22px;
    }

    .section,
    .request-section {
        padding: 82px 0 92px;
    }

    .section-head,
    .request-heading {
        margin-bottom: 46px;
    }

    .section-head h2,
    .request-heading h2 {
        font-size: 42px;
    }

    .destination {
        min-height: 0;
    }

    .destination-image {
        min-height: 300px;
    }

    .destination-copy {
        padding: 38px 24px 42px;
    }

    .restaurant-names li {
        align-items: flex-start;
    }

    .restaurant-names li::after {
        display: none;
    }

    .concierge-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .fleet-card img {
        aspect-ratio: 4 / 3;
    }

    .request-form {
        padding: 38px 22px 30px;
    }

    .form-title-row,
    .submit-row {
        display: block;
    }

    .form-step {
        display: block;
        margin-top: 10px;
    }

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

    .field-wide {
        grid-column: auto;
    }

    .submit-note {
        margin-bottom: 22px;
    }

    .submit {
        width: 100%;
    }

    .footer-row {
        flex-direction: column;
    }

    .footer-links {
        margin-right: 0;
    }

    .wa-float {
        right: 18px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }
}

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