:root {
    --ink: #0b1c22;
    --ink-soft: #3d5560;
    --paper: #eef3f4;
    --paper-2: #e2eaec;
    --line: rgba(11, 28, 34, 0.12);
    --accent: #0d6e6e;
    --accent-deep: #085555;
    --gold: #7ec8c0;
    --danger: #b42318;
    --ok: #1b7a4e;
    --ok-bg: #e8f6ee;
    --compare: #4a5d66;
    --radius: 14px;
    --shadow: 0 24px 60px rgba(12, 26, 36, 0.18);
    --font: "DM Sans", system-ui, sans-serif;
    --display: "Instrument Serif", Georgia, serif;
    --max: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--ink);
    color: #fff;
    padding: 0.75rem 1rem;
    z-index: 100;
}

.skip-link:focus {
    left: 1rem;
    top: 1rem;
}

.wrap {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(243, 240, 234, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 4.25rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.brand-mark {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--accent);
    color: #fff;
    font-size: 1rem;
}

.brand-text {
    font-size: 1.25rem;
}

.brand-text span {
    color: var(--accent);
    font-weight: 600;
}

.site-nav {
    display: flex;
    gap: 1.25rem;
    margin-left: auto;
    font-size: 0.95rem;
    font-weight: 500;
}

.site-nav a {
    color: var(--ink-soft);
    position: relative;
}

.site-nav a:hover,
.site-nav a.is-active {
    color: var(--ink);
}

.site-nav a.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.55rem;
    height: 2px;
    background: var(--accent);
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--ink);
    color: #fff;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.header-phone:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    margin-left: auto;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 0.55rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100vh - 4.25rem);
    display: grid;
    align-items: end;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(120deg, rgba(8, 28, 36, 0.88) 0%, rgba(8, 28, 36, 0.55) 45%, rgba(8, 28, 36, 0.35) 100%),
        url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80") center/cover no-repeat;
    transform: scale(1.04);
    animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-inner {
    width: min(100% - 2rem, var(--max));
    margin: 0 auto;
    padding: 4.5rem 0 5rem;
    display: grid;
    gap: 2.5rem;
    align-items: end;
}

@media (min-width: 960px) {
    .hero-inner {
        grid-template-columns: 1.05fr 0.95fr;
        gap: 3rem;
    }
}

.hero-copy {
    max-width: 34rem;
    animation: riseIn 0.9s ease both;
}

@keyframes riseIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}

.hero-brand {
    font-family: var(--display);
    font-size: clamp(3.2rem, 8vw, 5.5rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.hero-brand em {
    font-style: italic;
    color: var(--gold);
}

.hero-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    margin: 0 0 1.5rem;
    max-width: 28rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font: inherit;
    font-weight: 600;
    border-radius: 999px;
    padding: 0.9rem 1.35rem;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-deep);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-dark:hover {
    background: var(--accent);
}

.btn-block {
    width: 100%;
}

.btn:disabled {
    opacity: 0.65;
    cursor: wait;
    transform: none;
}

/* Quote panel */
.quote-panel {
    background: rgba(255, 255, 255, 0.97);
    color: var(--ink);
    border-radius: calc(var(--radius) + 4px);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    animation: riseIn 1s 0.15s ease both;
}

.quote-panel h2 {
    margin: 0 0 0.25rem;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
}

.quote-sub {
    margin: 0 0 1.25rem;
    color: var(--ok);
    font-weight: 600;
    font-size: 0.92rem;
}

.field {
    margin-bottom: 0.9rem;
}

.field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    font: inherit;
    color: var(--ink);
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(13, 110, 110, 0.15);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.fare-result {
    display: none;
    margin-top: 1.15rem;
    padding: 1.15rem;
    border-radius: var(--radius);
    background: var(--ok-bg);
    border: 1px solid rgba(27, 122, 78, 0.25);
}

.fare-result.is-visible {
    display: block;
    animation: riseIn 0.45s ease both;
}

.fare-result .label {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ok);
    margin: 0 0 0.35rem;
}

.fare-result .price {
    text-align: center;
    font-family: var(--display);
    font-size: 3.4rem;
    line-height: 1;
    margin: 0;
    color: var(--ok);
}

.fare-meta {
    margin: 0.85rem 0 0;
    padding: 0;
    list-style: none;
    font-size: 0.88rem;
    color: var(--ink-soft);
    display: grid;
    gap: 0.35rem;
}

.fare-meta li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.fare-compare {
    margin-top: 0.85rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--compare);
}

.fare-compare strong {
    color: var(--ok);
}

.fare-error {
    display: none;
    margin-top: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    background: #fdecea;
    color: var(--danger);
    font-size: 0.9rem;
}

.fare-error.is-visible {
    display: block;
}

/* Sections */
.section {
    padding: 4.5rem 0;
}

.section-head {
    max-width: 36rem;
    margin-bottom: 2rem;
}

.section-head h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.85rem);
    line-height: 1.1;
    margin: 0 0 0.65rem;
    letter-spacing: -0.02em;
}

.section-head p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.section-muted {
    background: linear-gradient(180deg, var(--paper-2), var(--paper));
}

.grid-3 {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 800px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature {
    padding: 0.25rem 0;
}

.feature i {
    color: var(--accent);
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.feature h3 {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
}

.feature p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.98rem;
}

.split {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .split {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 3rem;
    }
}

.split-visual {
    min-height: 280px;
    border-radius: var(--radius);
    background:
        linear-gradient(160deg, rgba(12, 26, 36, 0.35), rgba(12, 26, 36, 0.15)),
        url("https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&w=1920&q=80") center/cover;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.rate-table th,
.rate-table td {
    text-align: left;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid var(--line);
}

.rate-table th {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
}

.airport-list {
    display: grid;
    gap: 0.75rem;
}

.airport-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
}

.airport-item strong {
    display: block;
}

.airport-item span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.airport-item .price {
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
}

/* Fleet */
.fleet-grid {
    display: grid;
    gap: 1.25rem;
}

@media (min-width: 800px) {
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fleet-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.35rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.fleet-card:hover {
    transform: translateY(-4px);
    border-color: rgba(13, 110, 110, 0.35);
}

.fleet-card .icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(13, 110, 110, 0.1);
    color: var(--accent);
    margin-bottom: 1rem;
}

.fleet-card h3 {
    margin: 0 0 0.35rem;
}

.fleet-card p {
    margin: 0 0 0.85rem;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.fleet-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
}

/* Page hero (inner) */
.page-hero {
    padding: 3.5rem 0 2.5rem;
    background:
        linear-gradient(135deg, #0c1a24 0%, #163642 55%, #0d6e6e 140%);
    color: #fff;
}

.page-hero h1 {
    font-family: var(--display);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    margin: 0 0 0.5rem;
    line-height: 1.05;
}

.page-hero p {
    margin: 0;
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
}

/* Forms / booking */
.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: calc(var(--radius) + 2px);
    padding: 1.5rem;
}

.panel h2 {
    margin-top: 0;
}

.form-actions {
    margin-top: 1.25rem;
}

.notice {
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(13, 110, 110, 0.08);
    color: var(--ink-soft);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.confirm-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.confirm-box .ticket {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0.5rem 0 0.25rem;
    color: var(--accent);
}

.confirm-meta {
    max-width: 28rem;
    margin: 1.5rem auto 0;
    text-align: left;
}

.confirm-meta dl {
    display: grid;
    grid-template-columns: 8rem 1fr;
    gap: 0.45rem 1rem;
    margin: 0;
}

.confirm-meta dt {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.confirm-meta dd {
    margin: 0;
    font-weight: 600;
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.contact-detail i {
    color: var(--accent);
    font-size: 1.35rem;
    margin-top: 0.2rem;
}

.contact-detail a {
    color: var(--accent);
    font-weight: 600;
}

.alert-ok {
    background: var(--ok-bg);
    color: var(--ok);
    padding: 0.9rem 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.72);
    padding: 3.5rem 0 1.5rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 800px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.footer-brand p {
    max-width: 28rem;
    margin: 0.85rem 0 0;
    font-size: 0.95rem;
}

.brand--footer .brand-text {
    color: #fff;
}

.site-footer h3 {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.85rem;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
    font-size: 0.95rem;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
}

/* Mobile nav */
@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        padding: 1rem 1.25rem 1.25rem;
        margin: 0;
        gap: 0.85rem;
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a.is-active::after {
        display: none;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        padding: 0.7rem;
    }

    .field-row {
        grid-template-columns: 1fr;
    }
}
