:root {
    --river: #245f6f;
    --deep: #173640;
    --leaf: #5e7d57;
    --copper: #b76b42;
    --ivory: #fffdf7;
    --mist: #edf6f4;
    --paper: #ffffff;
    --ink: #1e2a2d;
    --muted: #667275;
    --line: #d6e3df;
    --shadow: 0 18px 46px rgba(25, 59, 67, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--ivory);
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.72;
}

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

a {
    color: inherit;
}

.skip-link {
    position: absolute;
    top: 0;
    left: -999px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--deep);
    color: white;
}

.skip-link:focus {
    left: 10px;
}

.site-shell {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}

.top-note {
    background: var(--mist);
    border-bottom: 1px solid var(--line);
    color: var(--deep);
    font-size: 14px;
}

.top-note__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.top-note a {
    color: var(--river);
    font-weight: 800;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 253, 247, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.navbar {
    padding: 15px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--deep);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 700;
    text-decoration: none;
}

.brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.nav-link {
    color: var(--deep);
    font-size: 15px;
    font-weight: 700;
    margin: 0 3px;
}

.nav-link:hover {
    color: var(--copper);
}

.nav-book,
.btn-main,
.btn-light,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 19px;
    border-radius: 4px;
    font-weight: 800;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.nav-book,
.btn-main {
    background: var(--river);
    color: white;
    box-shadow: 0 12px 28px rgba(36, 95, 111, 0.2);
}

.btn-light {
    background: white;
    color: var(--river);
    border: 1px solid var(--line);
}

.btn-outline {
    color: var(--river);
    border: 1px solid var(--river);
    background: transparent;
}

.nav-book:hover,
.btn-main:hover,
.btn-light:hover,
.btn-outline:hover {
    transform: translateY(-2px);
}

.hero {
    min-height: 290px;
    display: grid;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,253,247,0.98) 0%, rgba(255,253,247,0.94) 48%, rgba(255,253,247,0.25) 72%), url('/img/serv1.png') ;
    border-bottom: 1px solid var(--line);
}

.hero__content {
    max-width: 720px;
    padding: 96px 0;
}

.eyebrow {
    color: var(--copper);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 12px;
}

.hero h1,
.section-head h2,
.story-copy h2,
.page-hero h1,
.end-band h2 {
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.08;
    letter-spacing: 0;
}

.hero h1 {
    color: var(--deep);
    font-size: clamp(44px, 6vw, 78px);
    margin: 0 0 24px;
}

.hero p {
    color: var(--muted);
    font-size: clamp(18px, 2vw, 22px);
    max-width: 650px;
    margin-bottom: 30px;
}

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

.signal-line {
    background: var(--deep);
    color: white;
}

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

.signal {
    padding: 24px 22px;
    border-left: 1px solid rgba(255,255,255,.16);
}

.signal:first-child {
    border-left: 0;
}

.signal strong {
    display: block;
    color: #d7f1ee;
    font-size: 17px;
    margin-bottom: 5px;
}

.section {
    padding: 84px 0;
}

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

.section-head {
    max-width: 780px;
    margin-bottom: 42px;
}

.section-head.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-head h2,
.story-copy h2,
.page-hero h1 {
    color: var(--deep);
    font-size: clamp(34px, 4.3vw, 56px);
    margin: 0 0 16px;
}

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

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
    gap: 52px;
    align-items: center;
}

.story-image {
    border: 1px solid var(--line);
    background: white;
    padding: 8px;
    box-shadow: var(--shadow);
}

.story-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.route-list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
}

.route-item {
    display: grid;
    grid-template-columns: 120px 1fr 210px;
    gap: 28px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.route-item span {
    color: var(--copper);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 42px;
    font-weight: 700;
}

.route-item h3 {
    color: var(--deep);
    font-size: 24px;
    margin-bottom: 8px;
}

.route-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.service-rows {
    display: grid;
    gap: 16px;
}

.service-row {
    display: grid;
    grid-template-columns: 240px 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 24px;
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 10px 28px rgba(25, 59, 67, 0.08);
}

.service-row h3 {
    color: var(--river);
    margin: 0;
    font-size: 22px;
}

.service-row p {
    margin: 0;
    color: var(--muted);
}

.check-grid,
.faq-grid,
.place-grid {
    display: grid;
    gap: 20px;
}

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

.check-card,
.faq-card,
.place-card,
.contact-card,
.policy-card {
    background: white;
    border: 1px solid var(--line);
    box-shadow: 0 8px 26px rgba(25, 59, 67, 0.08);
}

.check-card,
.faq-card,
.contact-card,
.policy-card {
    padding: 28px;
}

.check-card h3,
.faq-card h3,
.place-card h3,
.contact-card h2,
.policy-card h2 {
    color: var(--deep);
    font-size: 22px;
    margin-bottom: 10px;
}

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

.place-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.place-card div {
    padding: 24px;
}

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

.page-hero {
    padding: 94px 0;
    background:
        linear-gradient(90deg, rgba(237,246,244,.98), rgba(237,246,244,.74)),
        url('/img/falguimp.png') right center/contain no-repeat;
    border-bottom: 1px solid var(--line);
}

.page-hero p {
    max-width: 740px;
    color: var(--muted);
    font-size: 19px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(300px, .75fr) 1fr;
    gap: 28px;
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 4px;
    border-color: var(--line);
}

textarea.form-control {
    min-height: 150px;
}

.end-band {
    background: var(--river);
    color: white;
    padding: 64px 0;
}

.end-band__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
}

.end-band h2 {
    font-size: clamp(30px, 3.6vw, 48px);
}

.end-band p {
    color: #d8f1ef;
    margin-bottom: 0;
}

.end-band .eyebrow {
    color: #ffd1b8;
}

.site-footer {
    background: #101f24;
    color: #d8e7e5;
    padding-top: 58px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr 1fr;
    gap: 36px;
}

.footer-logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
    margin-bottom: 16px;
}

.site-footer h2,
.site-footer h3 {
    color: white;
    margin-bottom: 14px;
}

.site-footer a {
    display: block;
    color: #aee4dc;
    text-decoration: none;
    margin-bottom: 9px;
}

.footer-bottom {
    margin-top: 36px;
    padding: 18px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,.12);
}

.wa-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0,0,0,.22);
}

@media (max-width: 991px) {
    .story-grid,
    .contact-grid,
    .footer-grid,
    .end-band__inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        background:
            linear-gradient(rgba(255,253,247,.95), rgba(255,253,247,.95)),
            url('/img/banner2.png') center/cover no-repeat;
    }

    .signal-line__grid,
    .check-grid,
    .place-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .route-item,
    .service-row {
        grid-template-columns: 1fr;
    }

    .route-item img {
        max-width: 360px;
    }

    .nav-book {
        width: 100%;
        margin-top: 10px;
    }
}

@media (max-width: 640px) {
    .site-shell {
        width: min(100% - 22px, 1180px);
    }

    .top-note__inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
        padding: 8px 0;
    }

    .hero__content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: 40px;
    }

    .signal-line__grid,
    .check-grid,
    .place-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .signal {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.16);
    }

    .signal:first-child {
        border-top: 0;
    }

    .section {
        padding: 58px 0;
    }
}
