:root {
    --navy: #0b2239;
    --navy-2: #153b5b;
    --orange: #ff7a00;
    --orange-dark: #d95f00;
    --blue-light: #eaf4fa;
    --background: #f7f9fb;
    --white: #ffffff;
    --text: #17212b;
    --muted: #667085;
    --border: #dce3e9;
    --danger: #b42318;
    --success: #16794a;
    --shadow-sm: 0 8px 28px rgba(11, 34, 57, 0.08);
    --shadow-lg: 0 24px 64px rgba(11, 34, 57, 0.18);
    --radius-sm: 10px;
    --radius: 18px;
    --container: 1200px;
    --header-height: 72px;
    --font: Inter, "Noto Sans Georgian", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 70px;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

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

button,
a {
    -webkit-tap-highlight-color: transparent;
}

:focus-visible {
    outline: 3px solid #ffad5c;
    outline-offset: 3px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    font-weight: 750;
    line-height: 1.12;
    letter-spacing: -0.025em;
}

h1 {
    font-size: clamp(2.75rem, 10vw, 6.4rem);
}

h2 {
    font-size: clamp(2rem, 6vw, 3.6rem);
}

h3 {
    font-size: 1.25rem;
}

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

.section {
    padding: 76px 0;
}

.section--compact {
    padding-top: 48px;
}

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

.section--blue {
    background: var(--blue-light);
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--orange-dark);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

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

.eyebrow {
    margin-bottom: 12px;
    color: var(--orange-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #ffc48d;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 36px;
}

.section-heading h2 {
    margin-bottom: 18px;
}

.section-heading p:last-child {
    margin-bottom: 0;
    color: var(--muted);
}

.section-heading--center {
    margin-inline: auto;
    text-align: center;
}

.button-row,
.card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

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

.button--primary {
    color: var(--white);
    background: var(--orange);
    box-shadow: 0 10px 26px rgba(255, 122, 0, 0.24);
}

.button--primary:hover {
    background: var(--orange-dark);
}

.button--whatsapp {
    color: var(--white);
    background: #128c5d;
}

.button--whatsapp:hover {
    background: #0c724a;
}

.button--glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
}

.button--glass:hover {
    background: var(--white);
    color: var(--navy);
}

.button--dark {
    color: var(--white);
    background: var(--navy);
}

.button--outline-dark {
    color: var(--navy);
    border-color: var(--navy);
    background: transparent;
}

.button--outline-dark:hover {
    color: var(--white);
    background: var(--navy);
}

.button--small {
    min-height: 42px;
    padding: 9px 15px;
}

.button--large {
    min-height: 54px;
    padding: 15px 24px;
}

.button--full {
    width: 100%;
}

.text-link {
    color: var(--navy-2);
    font-weight: 800;
    text-decoration-color: var(--orange);
    text-decoration-thickness: 2px;
}

.text-link:hover {
    color: var(--orange-dark);
}

.site-header {
    position: absolute;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    color: var(--white);
    background: linear-gradient(to bottom, rgba(2, 14, 26, 0.65), transparent);
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
body:not(.page-home) .site-header {
    position: fixed;
    background: rgba(11, 34, 57, 0.97);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
    backdrop-filter: blur(12px);
}

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

.text-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 1.02rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-decoration: none;
    white-space: nowrap;
}

.text-logo span {
    color: var(--orange);
}

.menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-content: center;
    gap: 5px;
    padding: 0;
    color: inherit;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 9px;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

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

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

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

.site-header__panel {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    padding: 28px 24px 110px;
    color: var(--white);
    background: var(--navy);
}

.site-header__panel.is-open {
    display: block;
}

.primary-nav ul,
.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.primary-nav a {
    display: block;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.12rem;
    font-weight: 700;
    text-decoration: none;
}

.primary-nav a[aria-current="page"] {
    color: #ffb46d;
}

.language-switcher {
    display: flex;
    gap: 7px;
    margin: 22px 0;
}

.language-switcher a {
    display: grid;
    width: 38px;
    height: 34px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 7px;
    font-size: 0.74rem;
    font-weight: 800;
    text-decoration: none;
}

.language-switcher a[aria-current="true"] {
    color: var(--navy);
    background: var(--white);
}

.header-book {
    width: 100%;
}

.mobile-actions {
    position: fixed;
    z-index: 900;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px max(10px, env(safe-area-inset-left)) calc(8px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 22px rgba(11, 34, 57, 0.12);
}

.mobile-actions .button {
    min-height: 50px;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.hero__media,
.hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero__media {
    object-fit: cover;
}

.hero__overlay {
    background: linear-gradient(90deg, rgba(5, 24, 42, 0.9) 0%, rgba(5, 24, 42, 0.62) 55%, rgba(5, 24, 42, 0.28) 100%), linear-gradient(0deg, rgba(5, 24, 42, 0.52), transparent 45%);
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: calc(var(--header-height) + 80px);
    padding-bottom: 90px;
}

.hero h1 {
    max-width: 900px;
    margin-bottom: 20px;
    color: var(--white);
}

.hero__lead {
    max-width: 650px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.1rem, 3vw, 1.42rem);
}

.hero__trust {
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.85rem;
    font-weight: 700;
}

.hero__scroll {
    position: absolute;
    z-index: 2;
    bottom: 30px;
    left: 50%;
    display: none;
    width: 28px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 20px;
    transform: translateX(-50%);
}

.hero__scroll span {
    position: absolute;
    top: 9px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 4px;
    transform: translateX(-50%);
    animation: scrollCue 1.8s ease-in-out infinite;
}

@keyframes scrollCue {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.4; }
    50% { transform: translate(-50%, 13px); opacity: 1; }
}

.trust-strip {
    background: var(--navy);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.trust-item {
    display: flex;
    min-height: 96px;
    align-items: center;
    gap: 12px;
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item span {
    color: var(--orange);
    font-size: 0.72rem;
    font-weight: 850;
}

.trust-item strong {
    font-size: 0.8rem;
    line-height: 1.35;
}

.flight-grid,
.review-grid,
.feature-grid,
.safety-grid {
    display: grid;
    gap: 22px;
}

.flight-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(11, 34, 57, 0.08);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

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

.flight-card__image,
.gallery-preview__item,
.editorial-media,
.split-feature__media {
    position: relative;
    display: block;
    overflow: hidden;
}

.flight-card__image {
    aspect-ratio: 16 / 10;
    background: var(--blue-light);
}

.flight-card__image img,
.gallery-preview__item img,
.editorial-media img,
.split-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.flight-card:hover .flight-card__image img,
.gallery-preview__item:hover img {
    transform: scale(1.035);
}

.placeholder-badge,
.demo-chip {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 8px;
    color: var(--white);
    background: rgba(11, 34, 57, 0.84);
    border-radius: 5px;
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.flight-card__body {
    padding: 23px;
}

.flight-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 750;
}

.flight-card__meta strong {
    color: var(--orange-dark);
    font-size: 1.05rem;
}

.flight-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.flight-card h3 a {
    text-decoration: none;
}

.flight-card__body > p {
    color: var(--muted);
}

.flight-card .video-label {
    color: var(--navy-2);
    font-size: 0.78rem;
    font-weight: 750;
}

.video-label span {
    color: var(--orange);
}

.card-actions {
    justify-content: space-between;
    padding-top: 8px;
}

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

.feature-card {
    padding: 28px;
    border-top: 3px solid var(--orange);
    background: var(--background);
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.feature-number {
    display: block;
    margin-bottom: 30px;
    color: #a9b5c0;
    font-size: 0.75rem;
    font-weight: 800;
}

.feature-card h3 {
    margin-bottom: 10px;
}

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

.process-section,
.final-cta {
    color: var(--white);
    background: var(--navy);
}

.process-section h2,
.final-cta h2 {
    color: var(--white);
}

.process-list {
    display: grid;
    gap: 0;
    padding: 0;
    margin: 0;
    list-style: none;
    counter-reset: process;
}

.process-list li {
    display: flex;
    min-height: 84px;
    align-items: center;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.process-list li span {
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--navy);
    background: var(--orange);
    border-radius: 50%;
    font-weight: 850;
}

.split-feature {
    display: grid;
    background: var(--white);
}

.split-feature__media {
    min-height: 360px;
}

.split-feature__content {
    align-self: center;
    max-width: 680px;
    padding: 60px 28px;
}

.split-feature__content > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.08rem;
}

.check-list,
.plain-list {
    padding: 0;
    margin: 24px 0;
    list-style: none;
}

.check-list li,
.plain-list li {
    position: relative;
    padding: 9px 0 9px 30px;
}

.check-list li::before {
    position: absolute;
    top: 10px;
    left: 0;
    display: grid;
    width: 20px;
    height: 20px;
    place-items: center;
    color: var(--white);
    background: var(--orange);
    border-radius: 50%;
    content: "✓";
    font-size: 0.7rem;
    font-weight: 900;
}

.plain-list li::before {
    position: absolute;
    top: 19px;
    left: 8px;
    width: 6px;
    height: 6px;
    background: var(--orange);
    border-radius: 50%;
    content: "";
}

.gallery-preview {
    display: grid;
    gap: 16px;
}

.gallery-preview__item {
    min-height: 280px;
    border-radius: var(--radius-sm);
}

.review-card {
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.review-card__top {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card__top img {
    border-radius: 50%;
}

.review-card__top h3 {
    margin: 0 0 2px;
    font-size: 1rem;
}

.review-card__top p,
.review-date {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.demo-chip {
    top: 0;
    right: 0;
    bottom: auto;
    background: #805400;
}

.stars {
    margin: 20px 0 12px;
    color: #f5a623;
    letter-spacing: 0.08em;
}

.stars span {
    color: #d9dee3;
}

.review-card blockquote {
    margin: 0 0 20px;
}

.review-card blockquote p {
    margin: 0;
}

.center-link {
    margin: 30px 0 0;
    text-align: center;
}

.faq-layout {
    display: grid;
    gap: 34px;
}

.faq-list {
    border-top: 1px solid #c5dbe7;
}

.faq-item {
    border-bottom: 1px solid #c5dbe7;
}

.faq-item h3 {
    margin: 0;
}

.faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 21px 0;
    color: var(--navy);
    background: transparent;
    border: 0;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    position: relative;
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    border: 1px solid var(--navy-2);
    border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    background: var(--navy-2);
    content: "";
    transform: translate(-50%, -50%);
}

.faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 160ms ease;
}

.faq-item button[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
    padding: 0 42px 20px 0;
    color: var(--muted);
}

.faq-answer p {
    margin: 0;
}

.meeting-grid,
.contact-grid,
.detail-layout,
.booking-layout,
.faq-page-layout,
.editorial-grid {
    display: grid;
    gap: 36px;
}

.contact-details {
    margin: 28px 0 0;
}

.contact-details div {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-details dt {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-details dd {
    margin: 4px 0 0;
    font-weight: 650;
}

.map-placeholder {
    position: relative;
    display: grid;
    min-height: 380px;
    place-content: center;
    overflow: hidden;
    padding: 28px;
    background: #dcecf4;
    border-radius: var(--radius);
    text-align: center;
}

.map-placeholder__art {
    position: absolute;
    inset: 0;
    opacity: 0.6;
    background-image: linear-gradient(30deg, transparent 48%, rgba(21, 59, 91, 0.16) 49%, rgba(21, 59, 91, 0.16) 51%, transparent 52%), linear-gradient(-35deg, transparent 48%, rgba(21, 59, 91, 0.12) 49%, rgba(21, 59, 91, 0.12) 51%, transparent 52%);
    background-size: 72px 72px, 96px 96px;
}

.map-placeholder__art span {
    position: absolute;
    top: 44%;
    left: 50%;
    width: 34px;
    height: 34px;
    background: var(--orange);
    border: 7px solid var(--white);
    border-radius: 50% 50% 50% 0;
    box-shadow: var(--shadow-sm);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.map-placeholder button,
.map-placeholder small {
    position: relative;
    z-index: 2;
}

.map-placeholder small {
    display: block;
    max-width: 280px;
    margin-top: 12px;
    color: var(--navy);
}

.map-placeholder iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.final-cta {
    padding: 70px 0;
}

.final-cta__inner {
    display: grid;
    gap: 30px;
    align-items: end;
}

.final-cta__inner h2 {
    margin-bottom: 14px;
}

.final-cta__inner p:not(.eyebrow) {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer {
    padding: 70px 0 28px;
    color: rgba(255, 255, 255, 0.72);
    background: #071827;
}

.footer-grid {
    display: grid;
    gap: 36px;
}

.footer-brand p {
    max-width: 360px;
    margin: 20px 0 0;
}

.footer-brand .weather-line {
    color: #ffb46d;
    font-size: 0.82rem;
}

.site-footer h2 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 0.86rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links a {
    display: inline-block;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-languages-title {
    margin-top: 26px;
}

.site-footer .language-switcher {
    margin: 0;
}

.footer-bottom {
    padding-top: 26px;
    margin-top: 46px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.78rem;
}

.footer-bottom p {
    margin: 0;
}

.page-hero,
.flight-detail-hero {
    position: relative;
    display: grid;
    min-height: 440px;
    align-items: end;
    overflow: hidden;
    padding: calc(var(--header-height) + 70px) 0 64px;
    color: var(--white);
    background-color: var(--navy);
    background-image: linear-gradient(110deg, rgba(4, 20, 35, 0.94), rgba(11, 34, 57, 0.58)), url("../images/placeholders/inner-mountains.svg");
    background-position: center;
    background-size: cover;
}

.page-hero__content {
    position: relative;
    z-index: 2;
}

.page-hero h1,
.flight-detail-hero h1 {
    max-width: 950px;
    margin-bottom: 18px;
    color: var(--white);
    font-size: clamp(2.6rem, 8vw, 5rem);
}

.page-hero__content > p:last-child,
.flight-detail-hero__content > p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.08rem;
}

.page-hero--safety {
    background-image: linear-gradient(110deg, rgba(4, 20, 35, 0.94), rgba(11, 34, 57, 0.58)), url("../images/placeholders/safety-pilot.svg");
}

.page-hero--gallery {
    background-image: linear-gradient(110deg, rgba(4, 20, 35, 0.9), rgba(11, 34, 57, 0.5)), url("../images/placeholders/gallery-mountain-2.svg");
}

.breadcrumbs {
    padding-top: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
}

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

.breadcrumbs li:not(:last-child)::after {
    margin-left: 8px;
    color: #a8b1bb;
    content: "/";
}

.breadcrumbs a {
    color: var(--navy-2);
}

.page-intro,
.lead-copy {
    max-width: 850px;
    color: var(--navy);
    font-size: clamp(1.15rem, 3vw, 1.45rem);
    line-height: 1.55;
}

.page-intro {
    margin-bottom: 42px;
}

.notice {
    padding: 20px 22px;
    border-left: 4px solid var(--navy-2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.notice p:last-child,
.notice h2:last-child {
    margin-bottom: 0;
}

.notice h2 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.notice--blue {
    background: var(--blue-light);
}

.notice--warning {
    border-color: #b7791f;
    background: #fff7df;
}

.notice--orange {
    border-color: var(--orange);
    background: #fff1e5;
}

.flight-weather-notice,
.review-demo-notice,
.safety-notice {
    margin-top: 42px;
}

.flight-detail-hero {
    min-height: 620px;
    padding-bottom: 72px;
    background: var(--navy);
}

.flight-detail-hero > img,
.flight-detail-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.flight-detail-hero > img {
    object-fit: cover;
}

.flight-detail-hero__overlay {
    background: linear-gradient(90deg, rgba(4, 20, 35, 0.9), rgba(4, 20, 35, 0.34)), linear-gradient(0deg, rgba(4, 20, 35, 0.62), transparent 50%);
}

.flight-detail-hero__content {
    position: relative;
    z-index: 2;
}

.flight-detail-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 32px;
}

.flight-detail-hero__facts span {
    display: grid;
}

.flight-detail-hero__facts small {
    color: rgba(255, 255, 255, 0.65);
}

.flight-detail-hero__facts strong {
    font-size: 1.3rem;
}

.placeholder-badge--hero {
    z-index: 3;
}

.detail-content > h2 {
    font-size: 2rem;
}

.detail-content > p {
    color: var(--muted);
}

.detail-blocks {
    margin-top: 46px;
}

.detail-blocks section {
    padding: 30px 0;
    border-top: 1px solid var(--border);
}

.detail-blocks h2 {
    font-size: 1.45rem;
}

.detail-blocks p {
    color: var(--muted);
}

.booking-card,
.contact-aside,
.booking-help {
    align-self: start;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.booking-card dl {
    margin: 24px 0;
}

.booking-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.booking-card dt {
    color: var(--muted);
}

.booking-card dd {
    margin: 0;
    font-weight: 800;
    text-align: right;
}

.booking-card .button + .button {
    margin-top: 10px;
}

.booking-card small {
    display: block;
    margin-top: 14px;
    color: var(--muted);
}

.stats-grid {
    display: grid;
    gap: 12px;
    margin: 42px 0 64px;
}

.stats-grid > div {
    display: grid;
    min-height: 160px;
    align-content: center;
    padding: 24px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.74);
}

.stats-grid strong {
    color: var(--orange);
    font-size: 2.4rem;
}

.editorial-grid {
    align-items: center;
}

.editorial-grid p {
    color: var(--muted);
}

.editorial-media {
    min-height: 460px;
    border-radius: var(--radius);
}

.values-panel {
    padding: 34px;
    margin-top: 52px;
    background: var(--blue-light);
    border-radius: var(--radius);
}

.values-panel h2 {
    font-size: 1.8rem;
}

.safety-facts {
    padding: 28px;
    margin-bottom: 34px;
    color: var(--white);
    background: var(--navy);
    border-radius: var(--radius);
}

.safety-facts h2 {
    color: var(--white);
    font-size: 1.4rem;
}

.safety-facts dl {
    display: grid;
    gap: 12px;
    margin: 0;
}

.safety-facts dl div {
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.safety-facts dt {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.safety-facts dd {
    margin: 3px 0 0;
    font-weight: 750;
}

.safety-card {
    padding: 28px;
    background: var(--background);
    border-radius: var(--radius-sm);
}

.safety-card > span {
    color: var(--orange-dark);
    font-size: 0.74rem;
    font-weight: 850;
}

.safety-card h2 {
    margin: 24px 0 12px;
    font-size: 1.4rem;
}

.safety-card p {
    margin: 0;
    color: var(--muted);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 32px 0;
}

.gallery-filters button {
    padding: 9px 17px;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 999px;
    cursor: pointer;
}

.gallery-filters button.is-active {
    color: var(--white);
    background: var(--navy);
    border-color: var(--navy);
}

.gallery-grid {
    display: grid;
    gap: 18px;
}

.gallery-item {
    margin: 0;
}

.gallery-item[hidden] {
    display: none;
}

.gallery-item button {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 0;
    background: var(--blue-light);
    border: 0;
    border-radius: var(--radius-sm);
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 300ms ease;
}

.gallery-item button:hover img {
    transform: scale(1.035);
}

.gallery-item figcaption {
    padding-top: 9px;
    color: var(--muted);
    font-size: 0.83rem;
}

.gallery-empty {
    padding: 40px;
    background: var(--background);
    border-radius: var(--radius);
    text-align: center;
}

.lightbox {
    width: min(94vw, 1100px);
    max-width: none;
    padding: 0;
    color: var(--white);
    background: #071827;
    border: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.lightbox::backdrop {
    background: rgba(3, 12, 20, 0.88);
    backdrop-filter: blur(6px);
}

.lightbox__inner {
    position: relative;
    padding: 48px 16px 18px;
}

.lightbox figure {
    margin: 0;
}

.lightbox img,
.lightbox video {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
}

.lightbox figcaption {
    padding: 14px 50px 0;
    text-align: center;
}

.lightbox__close,
.lightbox__nav {
    position: absolute;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    cursor: pointer;
}

.lightbox__close {
    top: 8px;
    right: 8px;
    font-size: 1.5rem;
}

.lightbox__nav {
    top: 50%;
    font-size: 2rem;
    transform: translateY(-50%);
}

.lightbox__nav--prev {
    left: 8px;
}

.lightbox__nav--next {
    right: 8px;
}

.faq-list--page {
    border-color: var(--border);
}

.contact-aside h2,
.booking-help h2 {
    font-size: 1.7rem;
}

.contact-aside .button + .button {
    margin-top: 10px;
}

.contact-methods {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.contact-methods a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 17px 18px;
    background: var(--background);
    border-radius: var(--radius-sm);
    text-decoration: none;
}

.contact-methods span {
    color: var(--muted);
    font-size: 0.8rem;
}

.contact-methods strong {
    color: var(--navy);
    text-align: right;
}

.map-placeholder--wide {
    margin-top: 38px;
}

.booking-form {
    display: grid;
    gap: 22px;
}

.booking-form fieldset {
    padding: 24px;
    margin: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.booking-form legend {
    padding: 0 8px;
    color: var(--navy);
    font-size: 1.15rem;
    font-weight: 800;
}

.form-grid {
    display: grid;
    gap: 18px;
}

.field {
    display: grid;
    align-content: start;
    gap: 7px;
}

.field label,
.field-label,
.weights-heading > span {
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 750;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 13px;
    color: var(--text);
    background: var(--white);
    border: 1px solid #bac5cf;
    border-radius: 8px;
}

.field textarea {
    resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--navy-2);
    box-shadow: 0 0 0 3px rgba(21, 59, 91, 0.12);
    outline: 0;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea,
.weights-group.has-error input {
    border-color: var(--danger);
}

.field-error {
    min-height: 1.1em;
    color: var(--danger);
    font-size: 0.76rem;
}

.package-summary {
    padding: 12px 15px;
    margin-top: 18px;
    color: var(--navy);
    background: var(--blue-light);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
}

.weights-group {
    margin-top: 22px;
}

.weights-heading {
    display: grid;
    margin-bottom: 14px;
}

.weights-heading small {
    color: var(--muted);
}

.weights-grid {
    display: grid;
    gap: 12px;
}

.field--radio {
    margin-top: 24px;
}

.field--radio label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.field--radio input,
.checkbox-field input {
    width: 18px;
    min-height: 18px;
}

.checkbox-field {
    grid-template-columns: auto 1fr;
    align-items: start;
}

.checkbox-field a,
.checkbox-field .field-error {
    grid-column: 2;
}

.required-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.8rem;
}

.error-summary {
    padding: 18px;
    color: #7a271a;
    background: #fef3f2;
    border-left: 4px solid var(--danger);
    border-radius: 0 8px 8px 0;
}

.error-summary p {
    margin: 5px 0 0;
}

.form-submit {
    display: grid;
    gap: 10px;
}

.form-submit p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
}

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

.booking-success {
    padding: 36px;
    background: #effaf4;
    border: 1px solid #a6dfc2;
    border-radius: var(--radius);
}

.success-mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 22px;
    color: var(--white);
    background: var(--success);
    border-radius: 50%;
    font-size: 1.5rem;
}

.booking-help .notice {
    margin: 24px 0;
}

.legal-content {
    max-width: 820px;
}

.legal-updated {
    color: var(--muted);
}

.legal-content section {
    padding: 28px 0;
    border-top: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 1.55rem;
}

.legal-content p {
    color: #475467;
}

.error-page {
    display: grid;
    min-height: 100svh;
    align-items: center;
    padding: calc(var(--header-height) + 60px) 0 90px;
    color: var(--white);
    background: linear-gradient(110deg, rgba(4, 20, 35, 0.95), rgba(11, 34, 57, 0.65)), url("../images/placeholders/hero-gudauri.svg") center / cover;
}

.error-page__content {
    max-width: 760px;
}

.error-page h1 {
    margin-bottom: 18px;
    color: var(--white);
}

.error-page__content > p:not(.error-code) {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.2rem;
}

.error-code {
    margin-bottom: 10px;
    color: var(--orange);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.2em;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal {
    opacity: 0;
    transform: translateY(20px);
}

.js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 600px) {
    .container { width: min(100% - 56px, var(--container)); }
    .trust-grid { grid-template-columns: repeat(3, 1fr); }
    .trust-item:nth-child(odd) { border-right: 0; }
    .trust-item:not(:nth-child(3n)) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
    .feature-grid, .safety-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-preview, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .review-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .form-grid--2, .weights-grid { grid-template-columns: repeat(2, 1fr); }
    .field--wide { grid-column: 1 / -1; }
    .check-list--columns { columns: 2; column-gap: 40px; }
    .hero__scroll { display: block; }
}

@media (min-width: 800px) {
    .section { padding: 104px 0; }
    .section--compact { padding-top: 70px; }
    .section-heading--split { display: grid; max-width: none; grid-template-columns: 1.15fr 0.85fr; gap: 70px; align-items: end; }
    .flight-grid { grid-template-columns: repeat(3, 1fr); }
    .flight-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; }
    .process-list { grid-template-columns: repeat(5, 1fr); }
    .process-list li { display: grid; align-content: start; padding: 20px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 0; }
    .process-list li:last-child { border-right: 0; }
    .process-list li strong { margin-top: 18px; }
    .split-feature { grid-template-columns: 1fr 1fr; }
    .split-feature__media { min-height: 640px; }
    .split-feature__content { padding: 80px clamp(48px, 8vw, 110px); }
    .gallery-preview { grid-template-columns: 1.15fr 0.85fr; grid-template-rows: repeat(2, 230px); }
    .gallery-preview__item { min-height: 0; }
    .gallery-preview__item:first-child { grid-row: 1 / 3; }
    .review-grid { grid-template-columns: repeat(3, 1fr); }
    .review-grid--all { grid-template-columns: repeat(2, 1fr); }
    .faq-layout { grid-template-columns: 0.78fr 1.22fr; gap: 80px; }
    .meeting-grid, .contact-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
    .final-cta__inner { grid-template-columns: 1fr auto; }
    .footer-grid { grid-template-columns: 1.5fr repeat(3, 1fr); }
    .detail-layout { grid-template-columns: minmax(0, 1fr) 340px; gap: 70px; }
    .booking-card { position: sticky; top: calc(var(--header-height) + 24px); }
    .editorial-grid { grid-template-columns: 1fr .85fr; gap: 70px; }
    .safety-facts dl { grid-template-columns: repeat(3, 1fr); }
    .safety-facts dl div { padding: 0 20px; border-top: 0; border-right: 1px solid rgba(255, 255, 255, 0.15); }
    .safety-facts dl div:last-child { border-right: 0; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-item:nth-child(4n + 1) { grid-column: span 2; }
    .gallery-item:nth-child(4n + 1) button { aspect-ratio: 2 / 1; }
    .faq-page-layout { grid-template-columns: minmax(0, 1fr) 310px; gap: 70px; }
    .contact-aside, .booking-help { position: sticky; top: calc(var(--header-height) + 24px); }
    .booking-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 52px; align-items: start; }
    .form-grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
    :root { --header-height: 82px; }
    body { padding-bottom: 0; }
    .site-header__inner { gap: 25px; }
    .menu-toggle { display: none; }
    .site-header__panel { position: static; display: flex; flex: 1; align-items: center; justify-content: flex-end; gap: 18px; overflow: visible; padding: 0; background: transparent; }
    .primary-nav ul { display: flex; align-items: center; gap: clamp(10px, 1.25vw, 20px); }
    .primary-nav a { position: relative; padding: 28px 0; border: 0; font-size: clamp(.9rem, .74vw, .83rem); }
    .primary-nav a::after { position: absolute; right: 0; bottom: 21px; left: 0; height: 2px; background: var(--orange); content: ""; transform: scaleX(0); transition: transform 180ms ease; }
    .primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
    .site-header__panel .language-switcher { margin: 0; }
    .site-header__panel .language-switcher a { width: 31px; height: 30px; font-size: .64rem; }
    .header-book { width: auto; min-height: 42px; padding: 9px 14px; }
    .mobile-actions { display: none; }
    .hero__content { padding-top: calc(var(--header-height) + 100px); }
    .trust-grid { grid-template-columns: repeat(6, 1fr); }
    .trust-item:not(:nth-child(3n)) { border-right: 0; }
    .trust-item:not(:last-child) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
    .feature-grid { grid-template-columns: repeat(3, 1fr); }
    .review-grid--all { grid-template-columns: repeat(3, 1fr); }
    .form-grid--3 { grid-template-columns: 1.35fr 1fr 1fr; }
    .form-grid--3 .field--wide { grid-column: auto; }
}

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