:root {
    --amber: #d97706;
    --amber-dark: #b45309;
    --orange: #ea580c;
    --blue: #2563eb;
    --green: #16a34a;
    --text: #111827;
    --muted: #5f6877;
    --line: #e5e7eb;
    --soft: #fff7ed;
    --white: #ffffff;
    --shadow: 0 18px 45px rgba(17, 24, 39, 0.11);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

.container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    color: white;
    background: linear-gradient(90deg, #f59e0b, var(--orange));
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    min-width: 150px;
}

.brand img {
    display: block;
    width: 150px;
    height: auto;
}

nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

nav a:hover {
    color: #ffedd5;
}

.book-link,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: 8px;
    font-weight: 700;
    border: 2px solid transparent;
    cursor: pointer;
}

.book-link,
.btn.light {
    background: white;
    color: var(--amber);
}

.btn.primary {
    color: white;
    background: linear-gradient(90deg, var(--amber), var(--orange));
}

.btn.outline {
    color: var(--amber);
    border-color: var(--amber);
    background: white;
}

.btn.ghost-light {
    color: white;
    border-color: white;
}

.btn.full {
    width: 100%;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.center-actions {
    justify-content: center;
}

.hero,
.soft {
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.hero {
    padding: 86px 0;
}

.hero-grid,
.split,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
}

.hero h1 {
    margin: 0 0 22px;
    font-size: clamp(40px, 6vw, 64px);
    line-height: 1.05;
}

.hero h1 span {
    color: var(--amber);
}

.lead {
    font-size: 20px;
    color: var(--muted);
    margin: 0 0 30px;
}

.small-lead {
    font-size: 18px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    padding: 8px 14px;
    color: #92400e;
    background: #fef3c7;
    border-radius: 999px;
    font-weight: 700;
}

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    color: var(--amber);
    background: #fef3c7;
    border-radius: 50%;
}

.icon svg {
    width: 22px;
    height: 22px;
}

.stats-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 30px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fbbf24, var(--orange));
    box-shadow: var(--shadow);
}

.stats-panel.small {
    padding: 24px;
}

.stat {
    min-height: 150px;
    padding: 24px;
    text-align: center;
    background: white;
    border-radius: 16px;
}

.stat .icon {
    margin: 0 auto 10px;
}

.stat strong,
.stat span {
    display: block;
}

.stat strong {
    font-size: 34px;
    line-height: 1.1;
}

.stat span {
    color: var(--muted);
}

.section {
    padding: 78px 0;
}

.section-title {
    max-width: 780px;
    margin: 0 auto 44px;
    text-align: center;
}

.section-title.compact {
    margin-top: 62px;
}

h1,
h2,
h3,
p {
    overflow-wrap: anywhere;
}

h2 {
    margin: 0 0 18px;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.15;
}

h3 {
    margin: 0 0 10px;
}

.section-title p {
    margin: 0;
    color: var(--muted);
    font-size: 19px;
}

.three-grid,
.route-grid,
.fleet-grid,
.benefit-grid,
.footer-grid {
    display: grid;
    gap: 24px;
}

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

.route-grid,
.fleet-grid,
.benefit-grid {
    grid-template-columns: repeat(2, 1fr);
}

.feature-card,
.price-card,
.route-card,
.fleet-card,
.review,
.team-card,
.notice,
.quote-form,
.map-box {
    border-radius: 16px;
    background: white;
}

.feature-card,
.price-card,
.route-card,
.fleet-card,
.team-card,
.review {
    border: 1px solid var(--line);
    padding: 28px;
}

.feature-card {
    text-align: center;
}

.feature-card .icon {
    margin: 0 auto 16px;
}

.feature-card p,
.price-card p,
.route-card p,
.fleet-card p,
.review p,
.split p {
    color: var(--muted);
}

.tone-orange .icon {
    color: var(--orange);
    background: #ffedd5;
}

.tone-blue .icon {
    color: var(--blue);
    background: #dbeafe;
}

.page-hero,
.cta {
    padding: 76px 0;
    color: white;
    background: linear-gradient(90deg, #f59e0b, var(--orange));
}

.page-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(42px, 6vw, 58px);
}

.page-hero p,
.cta p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.92);
}

.center {
    text-align: center;
}

.cta h2 {
    color: white;
}

.cta .actions {
    margin-top: 26px;
}

.check-list {
    padding: 0;
    margin: 22px 0;
    list-style: none;
}

.check-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 10px 0;
    color: #374151;
}

.check-list span,
.benefit span {
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.price {
    padding: 16px;
    border-radius: 10px;
    background: #fffbeb;
}

.price span,
.price strong {
    display: block;
}

.price strong {
    color: var(--amber);
    font-size: 30px;
}

.route-card {
    transition: border-color 0.2s, box-shadow 0.2s;
}

.route-card:hover {
    border-color: var(--amber);
    box-shadow: var(--shadow);
}

.route-card span {
    color: var(--muted);
}

.route-bottom,
.fleet-head,
.meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.route-bottom strong {
    color: var(--amber);
    font-size: 24px;
}

.route-bottom a {
    padding: 9px 14px;
    border-radius: 8px;
    color: #92400e;
    background: #fef3c7;
    font-weight: 700;
}

.fleet-card {
    padding: 0;
    overflow: hidden;
}

.fleet-card > * {
    margin-left: 28px;
    margin-right: 28px;
}

.fleet-head {
    margin: 0;
    padding: 28px;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.meta {
    justify-content: flex-start;
    margin-top: 24px;
    color: var(--muted);
    font-weight: 700;
}

.standards {
    margin-top: 54px;
    padding: 36px;
    border-radius: 18px;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.standards h2 {
    text-align: center;
}

.review {
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.review strong,
.review span {
    display: block;
}

.review span {
    color: var(--muted);
}

.team-card {
    text-align: center;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.08);
}

.team-card .avatar {
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    margin: 0 auto 18px;
    color: white;
    background: linear-gradient(135deg, #f59e0b, var(--orange));
    border-radius: 50%;
    font-size: 30px;
    font-weight: 800;
}

.team-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--amber);
}

.team-card p {
    color: var(--muted);
}

.stars {
    color: #f59e0b;
    letter-spacing: 0;
}

.benefit {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 14px;
}

.benefit p {
    grid-column: 2;
    margin: 0;
    color: var(--muted);
}

.contact-grid {
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 22px;
}

.contact-list > div {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-list p {
    margin: 4px 0;
    color: var(--muted);
}

.contact-list a {
    color: var(--amber);
    font-weight: 700;
}

.notice,
.quote-form {
    padding: 28px;
    margin-top: 30px;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
    border: 1px solid #fde68a;
}

.quote-form {
    margin-top: 0;
}

.quote-form label {
    display: block;
    margin-bottom: 16px;
    color: #374151;
    font-weight: 700;
}

.quote-form span {
    color: #dc2626;
}

input,
select,
textarea {
    width: 100%;
    margin-top: 7px;
    padding: 13px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font: inherit;
    background: white;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--amber);
    outline: 3px solid #fde68a;
}

textarea {
    resize: vertical;
}

.success {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    color: #166534;
    background: #dcfce7;
    font-weight: 700;
}

.form-note {
    margin: 14px 0 0;
    color: var(--muted);
    text-align: center;
    font-size: 14px;
}

.map-box {
    display: grid;
    place-items: center;
    min-height: 280px;
    margin-top: 24px;
    color: var(--muted);
    border: 12px solid white;
    background: #e5e7eb;
    box-shadow: var(--shadow);
}

.map-box strong {
    color: var(--text);
}

.not-found {
    display: grid;
    align-items: center;
    min-height: 80vh;
    padding: 70px 0;
    background: linear-gradient(135deg, #fffbeb, #fff7ed);
}

.not-found h1 {
    margin: 0 0 6px;
    color: var(--amber);
    font-size: clamp(86px, 16vw, 140px);
    line-height: 1;
}

.not-found p {
    max-width: 520px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: 20px;
}

.site-footer {
    padding: 54px 0 20px;
    color: white;
    background: #111827;
}

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

.site-footer p,
.site-footer a {
    display: block;
    color: #9ca3af;
}

.site-footer strong {
    color: #f59e0b;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    display: block;
    width: 170px;
    max-width: 100%;
    height: auto;
}

.copyright {
    width: min(1140px, calc(100% - 32px));
    margin: 34px auto 0;
    padding-top: 22px;
    border-top: 1px solid #1f2937;
    text-align: center;
}

@media (max-width: 860px) {
    .header-inner,
    nav {
        flex-wrap: wrap;
    }

    .brand {
        min-width: auto;
    }

    nav {
        order: 3;
        width: 100%;
        gap: 14px;
        padding-bottom: 14px;
        justify-content: center;
    }

    .hero-grid,
    .split,
    .contact-grid,
    .three-grid,
    .route-grid,
    .fleet-grid,
    .benefit-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 56px 0;
    }

    .section,
    .page-hero,
    .cta {
        padding: 56px 0;
    }
}

@media (max-width: 540px) {
    .stats-panel {
        grid-template-columns: 1fr;
        padding: 18px;
    }

    .actions,
    .route-bottom,
    .fleet-head {
        align-items: stretch;
        flex-direction: column;
    }

    .btn,
    .book-link {
        width: 100%;
    }
}
