:root {
    --bg: #f7f6f2;
    --bg-soft: #ffffff;
    --section-tint: #f1f0eb;
    --card: rgba(255,255,255,0.88);
    --card-strong: #ffffff;
    --card-border: rgba(22,28,45,0.06);
    --text: #1b1f2a;
    --muted: #727887;
    --accent: #d4a62a;
    --accent-2: #eed58a;
    --accent-soft: rgba(212,166,42,0.14);
    --success: #25D366;
    --container: 1180px;
    --radius: 26px;
    --radius-sm: 18px;
    --shadow: 0 18px 60px rgba(25, 32, 56, 0.08);
    --shadow-soft: 0 8px 28px rgba(25, 32, 56, 0.06);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.8), transparent 28%),
        linear-gradient(180deg, #f8f7f3 0%, #f2f1ec 100%);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: 96px 0; }
.section.alt-section {
    background: linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
}
.section-head { max-width: 860px; margin-bottom: 36px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid rgba(212,166,42,0.24);
    color: #c48f00;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
h1, h2, h3, h4, p { margin: 0; }
h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 7vw, 86px);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}
h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5vw, 66px);
    font-weight: 600;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 16px;
}
h3 {
    letter-spacing: -0.03em;
}
p.lead {
    font-size: clamp(17px, 2vw, 20px);
    color: var(--muted);
    max-width: 780px;
}
.muted { color: var(--muted); }

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
}
.reveal.show {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(247,246,242,0.78);
    border-bottom: 1px solid rgba(22,28,45,0.06);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 82px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo-mark {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent));
    display: grid;
    place-items: center;
    box-shadow: 0 10px 25px rgba(212,166,42,0.24);
    flex: 0 0 auto;
}
.logo-mark svg,
.logo-mark-img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
.logo-text {
    color: #1b1f2a;
    line-height: 1.06;
}
.logo-name {
    font-weight: 850;
}
.logo-domain {
    color: #c48f00;
    font-weight: 850;
}
.logo-text small {
    display: inline-block;
    margin-top: 3px;
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0;
}
.nav {
    display: flex;
    gap: 26px;
    align-items: center;
}
.nav a {
    color: #434a5b;
    font-size: 15px;
    font-weight: 600;
    transition: color .2s ease, transform .2s ease;
}
.nav a:hover { color: #111; transform: translateY(-1px); }

.mobile-menu-toggle,
.mobile-menu-close {
    appearance: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(22,28,45,0.08);
    background: rgba(255,255,255,0.84);
    box-shadow: var(--shadow-soft);
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #1b1f2a;
    transition: transform .24s ease, opacity .24s ease;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 58;
    background: rgba(15, 23, 42, 0.38);
    opacity: 0;
    transition: opacity .24s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 59;
    width: min(360px, calc(100% - 24px));
    height: 100vh;
    padding: 24px;
    background: rgba(247,246,242,0.98);
    border-left: 1px solid rgba(22,28,45,0.08);
    box-shadow: -16px 0 40px rgba(25, 32, 56, 0.12);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transform: translateX(100%);
    transition: transform .28s ease;
}

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #1b1f2a;
    background: rgba(255,255,255,0.84);
    border: 1px solid rgba(22,28,45,0.08);
    box-shadow: var(--shadow-soft);
    font-size: 28px;
    line-height: 1;
}

.mobile-menu-nav {
    display: grid;
    gap: 10px;
}

.mobile-menu-nav a {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(22,28,45,0.06);
    color: #1b1f2a;
    font-weight: 700;
}

body.mobile-menu-open {
    overflow: hidden;
}

body.mobile-menu-open .mobile-menu {
    transform: translateX(0);
}

body.mobile-menu-open .mobile-menu-overlay {
    opacity: 1;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 24px;
    border-radius: 16px;
    font-weight: 700;
    transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #131313;
    box-shadow: 0 10px 24px rgba(212,166,42,0.22);
}
.btn-secondary {
    background: rgba(255,255,255,0.82);
    border-color: rgba(22,28,45,0.08);
    color: #111827;
    box-shadow: var(--shadow-soft);
}
.btn-whatsapp {
    background: linear-gradient(135deg, #1faa59, #25D366);
    color: #04110b;
    font-weight: 800;
    box-shadow: 0 10px 22px rgba(37,211,102,0.18);
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(22,28,45,0.08);
    box-shadow: var(--shadow-soft);
}
.lang-btn {
    min-width: 42px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    color: #374151;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.lang-btn:hover { transform: translateY(-1px); }
.lang-btn.active {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #111;
    box-shadow: 0 6px 14px rgba(212,166,42,0.22);
}

.hero {
    padding: 78px 0 38px;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 28px;
    align-items: stretch;
}
.hero-card,
.booking-card,
.route-card,
.feature-card,
.cta-box,
.faq-item,
.stat {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.hero-card {
    padding: 52px;
    position: relative;
    overflow: hidden;
    min-height: 590px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
    pointer-events: none;
}
.hero-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(212,166,42,0.17), transparent 72%);
}
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0 36px;
}
.hero-points span,
.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    border: 1px solid rgba(22,28,45,0.07);
    color: #1b2232;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 18px rgba(25, 32, 56, 0.04);
}

.booking-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: rgba(255,255,255,0.94);
}
.booking-top {
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(22,28,45,0.07);
}
.booking-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    line-height: 1;
    margin-bottom: 8px;
}
.booking-form {
    display: grid;
    gap: 14px;
}
.field {
    display: grid;
    gap: 8px;
}
.field label {
    font-size: 14px;
    color: #4a5366;
    font-weight: 600;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 15px;
    border: 1px solid rgba(22,28,45,0.08);
    background: rgba(255,255,255,0.92);
    color: #111827;
    outline: none;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(212,166,42,0.5);
    box-shadow: 0 0 0 4px rgba(212,166,42,0.12);
}
.field textarea {
    min-height: 120px;
    resize: vertical;
}
.booking-note {
    color: var(--muted);
    font-size: 14px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.stat {
    padding: 24px;
    border-radius: 22px;
    background: rgba(255,255,255,0.75);
}
.stat strong {
    display: block;
    font-size: 30px;
    margin-bottom: 6px;
    letter-spacing: -0.03em;
}
.stat span {
    color: var(--muted);
    font-size: 14px;
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.route-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.route-card:hover,
.feature-card:hover,
.faq-item:hover,
.stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(25, 32, 56, 0.1);
    border-color: rgba(212,166,42,0.18);
}
.route-card h3 {
    font-size: 25px;
    line-height: 1.18;
}
.route-meta {
    display: grid;
    gap: 10px;
    color: #5f6778;
    font-size: 15px;
}
.route-price {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-top: 8px;
    letter-spacing: -0.04em;
}
.route-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature-card {
    padding: 30px 28px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.feature-number {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    font-size: 25px;
    color: #c48f00;
    background: var(--accent-soft);
    border: 1px solid rgba(212,166,42,0.24);
    margin-bottom: 22px;
    font-weight: 800;
}
.feature-card h3 {
    margin-bottom: 12px;
    font-size: 22px;
    color: #262b38;
}
.feature-card p { color: var(--muted); font-size: 15px; }

.faq-list {
    display: grid;
    gap: 16px;
}
.faq-item {
    padding: 26px 28px;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.faq-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #262b38;
}
.faq-item p { color: var(--muted); }

.cta-box {
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: linear-gradient(135deg, rgba(212,166,42,0.12), rgba(255,255,255,0.95));
    border: 1px solid rgba(212,166,42,0.2);
}
.cta-box h2 { margin-bottom: 12px; }

.footer {
    position: relative;
    margin-top: 40px;
    padding: 36px 0 44px;
    border-top: 1px solid rgba(22,28,45,0.08);
    color: var(--muted);
    background:
        linear-gradient(180deg, rgba(243,241,234,0.42) 0%, rgba(236,232,222,0.88) 100%);
}
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, calc(100% - 32px));
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,166,42,0.5), transparent);
}
.footer strong { color: #1b1f2a !important; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    align-items: start;
}
.footer-grid span {
    display: block;
    font-size: 15px;
    line-height: 1.7;
}
.footer-grid a {
    color: #1f2937;
    font-weight: 600;
    transition: color .2s ease;
}
.footer-grid a:hover {
    color: #111;
}

/* Стили для страницы Booking */
.booking-form-wide {
    width: 100%;
    max-width: 520px;
    margin: 40px auto;
}

.booking-form-wide .form-card {
    position: static;
    top: auto;
    width: 100%;
    padding: 34px;
    background: var(--card-strong);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.booking-form-wide .form-card-head {
    margin-bottom: 20px;
}

.booking-form-wide .form-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-form-wide .form-grid label {
    width: 100%;
}

.booking-form-wide input,
.booking-form-wide select,
.booking-form-wide textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border-radius: 15px;
    border: 1px solid rgba(22,28,45,0.08);
    background: rgba(255,255,255,0.92);
    color: #111827;
    outline: none;
    font: inherit;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.booking-form-wide input:focus,
.booking-form-wide select:focus,
.booking-form-wide textarea:focus {
    border-color: rgba(212,166,42,0.5);
    box-shadow: 0 0 0 4px rgba(212,166,42,0.12);
}

.booking-form-wide textarea {
    min-height: 120px;
    resize: vertical;
}

.booking-form-wide .form-note {
    color: var(--muted);
    font-size: 14px;
    margin-top: 14px;
}

.booking-form-wide .form-status {
    margin-top: 14px;
    font-size: 14px;
}

.booking-form-wide .button-primary {
    width: 100%;
    margin-top: 10px;
}

/* Стили для страницы 404 */
.plain-state {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.8), transparent 28%),
        linear-gradient(180deg, #f8f7f3 0%, #f2f1ec 100%);
}

.state-card {
    width: min(660px, 100%);
    padding: 40px;
    text-align: center;
    background: var(--card-strong);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.state-card .eyebrow {
    margin-bottom: 16px;
}

.state-card h1 {
    font-size: clamp(42px, 8vw, 64px);
    margin-bottom: 16px;
    color: var(--text);
}

.state-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-actions .button {
    min-width: 160px;
}

.honeypot-field {
    position: absolute;
    left: -9999px;
}

.form-status-spaced {
    margin-top: 10px;
    padding: 10px;
    border-radius: 8px;
    display: none;
}

.lead-subtext-spaced {
    margin-top: 8px;
}

.btns-top-gap {
    margin-top: 16px;
}

.booking-form-spaced {
    margin-top: 24px;
}

.route-seo-paragraph {
    margin-top: 16px;
}

.logo-mark-icon {
    transform: translateY(-2px);
}

.footer-title {
    display: block;
    color: #fff;
    margin-bottom: 8px;
}

.field input.error,
.field textarea.error,
.field select.error {
    border-color: #dc2626 !important;
    background-color: rgba(220, 38, 38, 0.05) !important;
}

.field input.error:focus,
.field textarea.error:focus,
.field select.error:focus {
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12) !important;
}

.form-status[data-state="error"] {
    background-color: rgba(220, 38, 38, 0.1);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
    display: block !important;
}

.form-status[data-state="success"] {
    background-color: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: block !important;
}

.booking-page {
    padding: 72px 0 88px;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 460px);
    gap: 28px;
    align-items: start;
}

.booking-hero,
.booking-form-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(22, 28, 45, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(25, 32, 56, 0.08);
}

.booking-hero {
    padding: 48px;
}

.booking-form-card {
    padding: 32px;
}

.booking-hero h1,
.booking-form-card h2 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.03em;
    line-height: 0.98;
    margin: 0 0 18px;
}

.booking-hero h1 {
    font-size: clamp(44px, 6vw, 72px);
}

.booking-form-card h2 {
    font-size: clamp(32px, 4vw, 46px);
}

.booking-hero p,
.booking-form-card p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.booking-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.booking-point {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(247, 246, 242, 0.9);
    border: 1px solid rgba(22, 28, 45, 0.06);
    font-weight: 600;
    color: #1f2937;
}

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

.field {
    display: grid;
    gap: 8px;
}

.field label {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
}

.field input,
.field textarea {
    width: 100%;
    min-height: 56px;
    padding: 16px 18px;
    border: 1px solid rgba(22, 28, 45, 0.12);
    border-radius: 16px;
    background: #fff;
    font: inherit;
    color: #111827;
}

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

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: rgba(212, 166, 42, 0.7);
    box-shadow: 0 0 0 4px rgba(212, 166, 42, 0.12);
}

.booking-note {
    font-size: 14px;
    color: #6b7280;
}

.form-status {
    display: none;
    margin: 0;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 14px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    color: #374151;
    font-weight: 700;
    text-decoration: none;
}

.route-page {
    padding-bottom: 96px;
}

.route-hero {
    padding: 72px 0 36px;
}

.route-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
    gap: 28px;
    align-items: start;
}

.route-form-card,
.route-info-card,
.route-box,
.route-faq-item,
.route-cta {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(22, 28, 45, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(25, 32, 56, 0.08);
}

.route-form-card,
.route-box,
.route-cta {
    padding: 32px;
}

.route-form-card h3,
.route-cta h2,
.route-section h2 {
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: -0.03em;
    line-height: 0.98;
    margin: 0 0 16px;
}

.route-cta h2,
.route-section h2 {
    font-size: clamp(34px, 5vw, 56px);
}

.route-form-card h3,
.route-info-card h3,
.route-faq-item h3,
.route-box h3 {
    font-size: 24px;
    color: #111827;
}

.route-form-card p,
.route-box p,
.route-faq-item p,
.route-cta p {
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
    margin: 0;
}

.route-points,
.route-actions,
.route-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.route-points {
    margin: 28px 0 0;
}

.route-points span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(247, 246, 242, 0.92);
    border: 1px solid rgba(22, 28, 45, 0.06);
    font-weight: 700;
    color: #1f2937;
}

.route-actions {
    margin-top: 28px;
}

.route-form {
    display: grid;
    gap: 16px;
    margin-top: 20px;
}

.route-note {
    font-size: 14px;
    color: #6b7280;
}

.route-section {
    padding-top: 36px;
}

.route-info-grid,
.route-box-grid,
.route-faq-grid {
    display: grid;
    gap: 20px;
}

.route-info-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-info-card {
    padding: 24px;
}

.route-info-card strong {
    display: block;
    margin-top: 14px;
    color: #111827;
    font-size: 15px;
}

.route-box-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
}

.route-box ul {
    margin: 16px 0 0;
    padding-left: 20px;
    color: #374151;
    line-height: 1.7;
}

.route-faq-grid {
    margin-top: 24px;
}

.route-faq-item {
    padding: 24px;
}

.route-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 24px;
}

.thanks-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0 88px;
}

.thanks-card {
    width: min(720px, calc(100% - 32px));
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(22, 28, 45, 0.08);
    border-radius: 28px;
    box-shadow: 0 18px 60px rgba(25, 32, 56, 0.08);
    padding: 48px;
    text-align: center;
}

.thanks-card h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin: 0 0 18px;
}

.thanks-card p {
    margin: 0 0 16px;
    color: #6b7280;
    font-size: 17px;
    line-height: 1.7;
}

.comment-box,
.thanks-instruction {
    text-align: left;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(247, 246, 242, 0.9);
    border: 1px solid rgba(22, 28, 45, 0.06);
    margin: 20px 0 0;
}

.comment-box strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
}

.comment-box p,
.thanks-instruction {
    margin-bottom: 0;
    white-space: pre-wrap;
}

.thanks-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

/* Альтернативные стили для 404 (совместимость) */
.not-found-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.not-found-card {
    max-width: 520px;
    width: 100%;
    padding: 40px;
    text-align: center;
    background: var(--card-strong);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.not-found-card h1 {
    font-size: clamp(42px, 8vw, 64px);
    margin-bottom: 16px;
    color: var(--text);
}

.not-found-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.not-found-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.not-found-actions .button {
    min-width: 160px;
}

@media (max-width: 1080px) {
    .hero-grid,
    .features-grid,
    .routes-grid {
        grid-template-columns: 1fr 1fr;
    }
    .stats { grid-template-columns: 1fr 1fr; }
    .nav { display: none; }
    .mobile-menu-toggle { display: inline-flex; }
    .header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 12px;
        align-items: center;
    }
    .lang-switch {
        display: inline-flex;
        padding: 4px;
        gap: 4px;
        justify-self: end;
    }
    .lang-switch .lang-btn {
        min-width: 34px;
        height: 32px;
        font-size: 12px;
    }
}

@media (max-width: 780px) {
    .section { padding: 72px 0; }
    .hero { padding-top: 34px; }
    .hero-grid,
    .features-grid,
    .routes-grid,
    .stats {
        grid-template-columns: 1fr;
    }
    h1 { font-size: clamp(42px, 12vw, 64px); }
    h2 { font-size: clamp(36px, 9vw, 52px); }
    .hero-card,
    .booking-card,
    .cta-box,
    .faq-item,
    .route-card,
    .feature-card,
    .stat {
        padding-left: 22px;
        padding-right: 22px;
    }
    .hero-card { min-height: auto; padding-top: 38px; padding-bottom: 38px; }
    .cta-box {
        align-items: flex-start;
        flex-direction: column;
    }
    .header-inner { min-height: 70px; }
    .logo-text small { display: none; }
    .logo-text {
        font-size: 14px;
        line-height: 1.1;
    }
    .footer {
        padding: 30px 0 36px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .route-bottom { flex-direction: column; align-items: stretch; }
}

@media (max-width: 430px) {
    .header-inner {
        gap: 8px;
    }
    .logo {
        gap: 10px;
        min-width: 0;
    }
    .logo-mark {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    .logo-text {
        font-size: 13px;
    }
    .lang-switch .lang-btn {
        min-width: 30px;
        height: 30px;
        font-size: 11px;
    }
    .mobile-menu-toggle {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 980px) {
    .route-grid,
    .route-info-grid,
    .route-box-grid {
        grid-template-columns: 1fr;
    }

    .route-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-hero,
    .booking-form-card {
        padding: 24px;
    }

    .booking-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .thanks-card {
        padding: 28px;
    }
}
