:root {
    --route-forest: #1d4a2e;
    --route-forest-dark: #123521;
    --route-sand: #f5f0e5;
    --route-cream: #fbf8f1;
    --route-white: #fff;
    --route-text: #26332b;
    --route-muted: #68736b;
    --route-border: rgba(29, 74, 46, 0.16);
    --route-orange: #b96f2d;
}

@font-face {
    font-family: 'Cremona';
    src: url('../fonts/Cremona-Regular.woff2') format('woff2'),
         url('../fonts/Cremona-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background: var(--route-cream);
    color: var(--route-text);
    font-family: 'DM Sans', sans-serif;
}

body.route-modal-open { overflow: hidden; }

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

.route-shell {
    width: min(100% - 3rem, 1180px);
    margin-inline: auto;
}

.route-nav {
    position: fixed;
    top: 1rem;
    left: 2rem;
    right: 2rem;
    z-index: 1000;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

.route-nav.is-scrolled {
    top: 0.75rem;
    border-color: transparent;
    background: rgba(250, 246, 240, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(16px);
}

.route-nav-inner {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.route-logo {
    color: var(--route-white);
    font-family: 'Cremona', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease;
}

.route-nav.is-scrolled .route-logo { color: #1a1a18; }

.route-menu { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 2rem); }
.route-menu a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}
.route-menu a:hover { color: #b87a3d; }
.route-nav.is-scrolled .route-menu a { color: #3e3b36; }
.route-nav.is-scrolled .route-menu a:hover { color: var(--route-forest); }

.route-nav-cta {
    padding: 0.65rem 1.6rem;
    border: 0;
    border-radius: 50px;
    background: #4a6741;
    color: var(--route-white) !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.route-nav-cta:hover {
    background: #3d5936;
    color: var(--route-white) !important;
    box-shadow: 0 8px 20px rgba(74, 103, 65, 0.3);
    transform: translateY(-2px);
}

.route-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.route-menu-toggle span {
    width: 25px;
    height: 3px;
    border-radius: 2px;
    background: var(--route-white);
    transition: all 0.3s ease;
}

.route-nav.is-scrolled .route-menu-toggle span { background: #1a1a18; }
.route-nav.is-menu-open .route-menu-toggle span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.route-nav.is-menu-open .route-menu-toggle span:nth-child(2) { opacity: 0; }
.route-nav.is-menu-open .route-menu-toggle span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

.route-logo:focus-visible,
.route-menu a:focus-visible,
.route-menu-toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 4px;
}

.route-hero {
    position: relative;
    min-height: min(840px, 94dvh);
    overflow: hidden;
    color: var(--route-white);
    isolation: isolate;
}

.route-hero > img,
.route-hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.route-hero > img { object-fit: cover; object-position: center; z-index: -2; }

.route-hero-overlay {
    background: linear-gradient(90deg, rgba(9, 24, 15, 0.8) 0%, rgba(9, 24, 15, 0.38) 56%, rgba(9, 24, 15, 0.12) 100%);
    z-index: -1;
}

.route-hero-content {
    display: flex;
    min-height: min(840px, 94dvh);
    flex-direction: column;
    justify-content: flex-end;
    padding-block: 8rem 6rem;
}

.route-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
}

.route-breadcrumbs a { text-underline-offset: 3px; }

.route-badges { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 1.25rem; }
.route-badges span {
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    background: rgba(16, 43, 27, 0.28);
    font-size: 0.66rem;
    font-weight: 600;
    backdrop-filter: blur(7px);
}

.route-hero h1,
.route-section h2,
.route-final h2 {
    font-family: 'DM Serif Display', serif;
    font-weight: 400;
}

.route-hero h1 {
    max-width: 720px;
    font-size: clamp(4rem, 9vw, 7.5rem);
    line-height: 0.82;
}

.route-hero-content > p {
    max-width: 610px;
    margin-top: 1.7rem;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.94rem, 1.5vw, 1.12rem);
    line-height: 1.7;
}

.route-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

.route-hero-actions > span { font-size: 0.8rem; font-weight: 600; }

.route-primary-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.35rem;
    border-radius: 50px;
    background: var(--route-forest);
    color: var(--route-white);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}

.route-hero .route-primary-button { background: var(--route-white); color: var(--route-forest-dark); }
.route-primary-button:hover { background: #2a6540; transform: translateY(-1px); }
.route-hero .route-primary-button:hover { background: var(--route-sand); }

.route-summary {
    border-bottom: 1px solid var(--route-border);
    background: var(--route-white);
}

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

.route-summary-grid > div {
    display: flex;
    min-height: 118px;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 1.5rem;
    border-left: 1px solid var(--route-border);
}

.route-summary-grid > div:last-child { border-right: 1px solid var(--route-border); }
.route-summary-grid span, .route-kicker {
    color: var(--route-orange);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}
.route-summary-grid strong { font-family: 'DM Serif Display', serif; font-size: 1.22rem; font-weight: 400; }

.route-section { padding: 7rem 0; }
.route-section-soft { background: var(--route-sand); }
.route-section-dark { background: var(--route-forest-dark); color: var(--route-white); }

.route-intro-grid,
.route-details-grid {
    display: grid;
    grid-template-columns: 0.86fr 1.14fr;
    gap: 6rem;
    align-items: start;
}

.route-section h2,
.route-final h2 {
    margin-top: 0.8rem;
    color: var(--route-forest-dark);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1;
}

.route-prose { display: grid; gap: 1.2rem; padding-top: 1.6rem; }
.route-prose p { color: var(--route-muted); font-size: 1rem; line-height: 1.85; }

.route-section-heading { margin-bottom: 3rem; }

.route-highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.route-highlight-grid article {
    min-height: 250px;
    padding: 2rem;
    border: 1px solid var(--route-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
}

.route-highlight-grid article > span { color: var(--route-orange); font-size: 0.7rem; font-weight: 700; }
.route-highlight-grid h3 { margin-top: 3rem; font-family: 'DM Serif Display', serif; font-size: 1.55rem; font-weight: 400; }
.route-highlight-grid p { margin-top: 0.75rem; color: var(--route-muted); font-size: 0.84rem; line-height: 1.65; }

.route-gallery {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    grid-template-rows: 260px 260px;
    gap: 0.75rem;
}

.route-gallery img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.route-gallery img:first-child { grid-row: 1 / 3; }

.route-section-dark .route-kicker { color: #deb477; }
.route-section-dark h2 { color: var(--route-white); }

.route-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    list-style: none;
}

.route-steps li {
    padding: 1.5rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.route-steps li > span { color: #deb477; font-size: 0.68rem; font-weight: 700; }
.route-steps h3 { margin-top: 2.6rem; font-family: 'DM Serif Display', serif; font-size: 1.3rem; font-weight: 400; }
.route-steps p { margin-top: 0.65rem; color: rgba(255, 255, 255, 0.68); font-size: 0.78rem; line-height: 1.6; }

.route-check-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    list-style: none;
}

.route-check-list li {
    position: relative;
    padding: 1.1rem 1rem 1.1rem 2rem;
    border-bottom: 1px solid var(--route-border);
    color: var(--route-muted);
    font-size: 0.84rem;
}

.route-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--route-forest);
    font-weight: 800;
}

.route-practical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.route-practical-grid article { padding: 1.7rem; border-radius: 16px; background: rgba(255, 255, 255, 0.58); }
.route-practical-grid span { color: var(--route-forest); font-size: 0.72rem; font-weight: 700; }
.route-practical-grid p { margin-top: 0.75rem; color: var(--route-muted); font-size: 0.82rem; line-height: 1.65; }
.route-practical-grid a { color: var(--route-forest); font-weight: 600; text-underline-offset: 3px; }

.route-final {
    padding: 8rem 0;
    background: var(--route-cream);
    text-align: center;
}

.route-final h2 { margin-inline: auto; }
.route-final p { max-width: 540px; margin: 1.25rem auto 1.8rem; color: var(--route-muted); line-height: 1.7; }
.route-final small { display: block; margin-top: 0.75rem; color: var(--route-muted); font-size: 0.68rem; }

.route-related { padding: 6rem 0; background: var(--route-white); }
.route-related-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.25rem;
}
.route-related-heading h2 { margin-top: 0.55rem; }
.route-related-heading > a {
    color: var(--route-forest);
    font-size: 0.8rem;
    font-weight: 700;
    text-underline-offset: 4px;
}
.route-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.route-related-card {
    overflow: hidden;
    border: 1px solid var(--route-border);
    border-radius: 18px;
    background: var(--route-cream);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.route-related-card:hover { box-shadow: 0 18px 38px rgba(18, 53, 33, 0.12); transform: translateY(-4px); }
.route-related-card img { width: 100%; height: 210px; object-fit: cover; }
.route-related-card div { padding: 1.35rem 1.4rem 1.5rem; }
.route-related-card span { color: var(--route-orange); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.route-related-card h3 { margin-top: 0.55rem; font-family: 'DM Serif Display', serif; font-size: 1.42rem; font-weight: 400; line-height: 1.1; }
.route-related-card p { margin-top: 0.65rem; color: var(--route-muted); font-size: 0.75rem; }

.route-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.22s ease;
}
.route-booking-modal[hidden] { display: none; }
.route-booking-modal.is-open { opacity: 1; }
.route-booking-backdrop { position: absolute; inset: 0; background: rgba(8, 22, 14, 0.72); backdrop-filter: blur(6px); }
.route-booking-panel {
    position: relative;
    width: min(100%, 680px);
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    padding: 2rem;
    border-radius: 24px;
    background: var(--route-cream);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
    transform: translateY(18px);
    transition: transform 0.22s ease;
}
.route-booking-modal.is-open .route-booking-panel { transform: translateY(0); }
.route-booking-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--route-border);
    border-radius: 50%;
    background: transparent;
    color: var(--route-text);
    font-size: 1.5rem;
    cursor: pointer;
}
.route-booking-panel h2 { margin-top: 0.45rem; font-family: 'DM Serif Display', serif; font-size: 2.5rem; font-weight: 400; }
.route-booking-panel h2 + p { max-width: 520px; margin-top: 0.5rem; color: var(--route-muted); font-size: 0.82rem; line-height: 1.55; }
.route-booking-route {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.35rem;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: rgba(29, 74, 46, 0.08);
    font-size: 0.8rem;
}
.route-booking-route span { color: var(--route-muted); }
.route-booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; margin-top: 1rem; }
.route-booking-grid label { display: grid; gap: 0.4rem; color: var(--route-text); font-size: 0.72rem; font-weight: 600; }
.route-booking-grid label > span b { color: #bd3c2f; }
.route-booking-grid input,
.route-booking-grid select {
    width: 100%;
    height: 46px;
    min-height: 46px;
    padding: 0.7rem 0.8rem;
    border: 1px solid var(--route-border);
    border-radius: 10px;
    background: var(--route-white);
    color: var(--route-text);
    font: inherit;
    font-size: 0.85rem;
}
.route-booking-grid > label:nth-child(2) { align-content: start; }
.route-booking-grid > label:nth-child(3) { grid-column: 1 / 3; }
.route-booking-date { display: grid; align-content: start; gap: 0.4rem; }
.route-booking-check {
    display: flex !important;
    align-items: center;
    grid-template-columns: none !important;
    gap: 0.45rem !important;
    margin-top: 0.1rem;
    color: var(--route-muted) !important;
    font-size: 0.67rem !important;
    font-weight: 500 !important;
    cursor: pointer;
}
.route-booking-check input {
    width: 16px;
    height: 16px;
    min-height: 16px;
    margin: 0;
    accent-color: var(--route-forest);
}
.route-booking-check span { font: inherit; }
.route-booking-methods {
    grid-column: 1 / 3;
    min-width: 0;
    border: 0;
}
.route-booking-methods legend {
    margin-bottom: 0.45rem;
    color: var(--route-text);
    font-size: 0.72rem;
    font-weight: 600;
}
.route-booking-methods legend b { color: #bd3c2f; }
.route-booking-methods > div { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.45rem; }
.route-booking-methods label { cursor: pointer; }
.route-booking-methods input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}
.route-booking-methods label span {
    display: grid;
    min-height: 40px;
    place-items: center;
    padding: 0.55rem;
    border: 1px solid var(--route-border);
    border-radius: 999px;
    background: var(--route-white);
    color: var(--route-muted);
    font-size: 0.72rem;
    font-weight: 700;
    transition: all 0.2s ease;
}
.route-booking-methods input:checked + span {
    border-color: var(--route-forest);
    background: var(--route-forest);
    color: var(--route-white);
}
.route-booking-methods input:focus-visible + span {
    outline: 3px solid rgba(29, 74, 46, 0.22);
    outline-offset: 2px;
}
.route-booking-contact { grid-column: 1 / 3; }
.route-booking-status { min-height: 1.2rem; margin-top: 0.7rem; color: #a53a30; font-size: 0.72rem; }
.route-booking-submit,
.route-booking-success button {
    width: 100%;
    padding: 0.9rem 1.4rem;
    border: 0;
    border-radius: 999px;
    background: var(--route-forest);
    color: var(--route-white);
    font-weight: 700;
    cursor: pointer;
}
.route-booking-submit:disabled { cursor: wait; opacity: 0.65; }
.route-booking-disclaimer { margin-top: 0.65rem; color: var(--route-muted); font-size: 0.64rem; line-height: 1.5; text-align: center; }
.route-booking-disclaimer a { color: var(--route-forest); }
.route-booking-success { padding: 2.5rem 0 1rem; text-align: center; }
.route-booking-success > span { display: grid; width: 56px; height: 56px; margin: 0 auto; place-items: center; border-radius: 50%; background: rgba(29, 74, 46, 0.1); color: var(--route-forest); font-size: 1.5rem; }
.route-booking-success p { max-width: 450px; margin: 1rem auto 1.5rem; color: var(--route-muted); line-height: 1.6; }
.route-booking-success button { width: auto; min-width: 180px; }

.route-fab {
    position: fixed;
    right: 2rem;
    bottom: 4.5rem;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}
.route-fab-toggle {
    display: grid;
    width: 60px;
    height: 60px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #25d366;
    color: var(--route-white);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.route-fab-toggle:active { transform: scale(0.95); }
.route-fab-toggle svg { width: 28px; height: 28px; fill: currentColor; }
.route-fab-close { display: none; }
.route-fab.is-open .route-fab-toggle { background: #f0f0f0; color: #333; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12); }
.route-fab.is-open .route-fab-chat { display: none; }
.route-fab.is-open .route-fab-close { display: block; }
.route-fab-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.route-fab.is-open .route-fab-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0) scale(1); }
.route-fab-item {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    color: var(--route-white);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
    text-decoration: none;
    transition: transform 0.2s ease;
}
.route-fab-item:hover { transform: scale(1.1); }
.route-fab-item svg { width: 24px; height: 24px; fill: currentColor; }
.route-fab-wa { background: #25d366; }
.route-fab-tg { background: #229ed9; }
.route-fab-phone { background: #1a1a1a; }

.route-footer { padding: 2.5rem 0; background: var(--route-forest-dark); color: var(--route-white); }
.route-footer .route-shell { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.route-footer div > div { display: grid; gap: 0.35rem; }
.route-footer strong { font-size: 0.82rem; letter-spacing: 1px; }
.route-footer span, .route-footer a { color: rgba(255, 255, 255, 0.65); font-size: 0.7rem; }
.route-footer nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.25rem; }

.error-page {
    min-height: 100dvh;
    overflow: hidden;
    background: var(--route-forest-dark);
    color: var(--route-white);
}

.error-main {
    position: relative;
    display: grid;
    min-height: 100dvh;
    place-items: center;
    padding: 8rem 0 4rem;
    isolation: isolate;
}

.error-main > img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.error-main::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, rgba(8, 25, 15, 0.94), rgba(8, 25, 15, 0.48));
    content: '';
}

.error-content { max-width: 720px; text-align: center; }
.error-code {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-family: 'DM Serif Display', serif;
    font-size: clamp(5rem, 18vw, 11rem);
    line-height: 0.75;
}
.error-content h1 {
    margin-top: 1.8rem;
    color: var(--route-white);
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 400;
    line-height: 0.95;
}
.error-content p {
    max-width: 560px;
    margin: 1.4rem auto 2rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}
.error-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem; }
.error-secondary-button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    padding: 0.85rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    color: var(--route-white);
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1024px) {
    .route-nav { left: 1rem; right: 1rem; }
}

@media (max-width: 820px) {
    .route-hero { min-height: 760px; }
    .route-hero-content { min-height: 760px; padding-bottom: 4rem; }
    .route-hero-overlay { background: linear-gradient(180deg, rgba(9, 24, 15, 0.22) 15%, rgba(9, 24, 15, 0.86) 100%); }
    .route-summary-grid { grid-template-columns: 1fr 1fr; }
    .route-summary-grid > div { min-height: 96px; border-bottom: 1px solid var(--route-border); }
    .route-intro-grid,
    .route-details-grid { grid-template-columns: 1fr; gap: 2rem; }
    .route-highlight-grid,
    .route-practical-grid { grid-template-columns: 1fr; }
    .route-highlight-grid article { min-height: 0; }
    .route-highlight-grid h3 { margin-top: 1.8rem; }
    .route-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 360px 180px; }
    .route-gallery img:first-child { grid-column: 1 / 3; grid-row: auto; }
    .route-steps { grid-template-columns: 1fr 1fr; }
    .route-check-list { grid-template-columns: 1fr; }
    .route-related-grid { grid-template-columns: 1fr 1fr; }
    .route-related-card:last-child { display: none; }
}

@media (max-width: 768px) {
    .route-nav {
        left: 0.75rem;
        right: 0.75rem;
        padding: 0.75rem 1.25rem;
    }
    .route-nav.is-menu-open {
        border-color: transparent;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
    }
    .route-logo { position: relative; z-index: 1001; }
    .route-nav.is-menu-open .route-logo { color: #1a1a18; }
    .route-menu-toggle {
        position: relative;
        z-index: 1001;
        display: flex;
    }
    .route-nav.is-menu-open .route-menu-toggle span { background: #1a1a18; }
    .route-menu {
        position: fixed;
        inset: 0;
        z-index: 999;
        display: none;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2rem;
        background: var(--route-sand);
    }
    .route-nav.is-menu-open .route-menu { display: flex; }
    .route-menu a,
    .route-nav.is-scrolled .route-menu a {
        color: var(--route-text);
        font-size: 1.2rem;
    }
    .route-nav-cta { display: none; }
}

@media (max-width: 520px) {
    .route-shell { width: min(100% - 2rem, 1180px); }
    .route-hero { min-height: 700px; }
    .route-hero-content { min-height: 700px; padding-bottom: 3rem; }
    .route-hero h1 { font-size: clamp(3.7rem, 20vw, 5.2rem); }
    .route-hero-actions { align-items: flex-start; flex-direction: column; }
    .route-section { padding: 4.5rem 0; }
    .route-summary-grid > div { padding: 1rem; }
    .route-summary-grid strong { font-size: 1.05rem; }
    .route-gallery { grid-template-rows: 300px 150px; }
    .route-steps { grid-template-columns: 1fr; }
    .route-steps h3 { margin-top: 1.5rem; }
    .route-footer .route-shell { align-items: flex-start; flex-direction: column; }
    .route-footer nav { justify-content: flex-start; }
    .route-related { padding: 4.5rem 0; }
    .route-related-heading { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
    .route-related-grid { grid-template-columns: 1fr; }
    .route-related-card:last-child { display: block; }
    .route-related-card img { height: 190px; }
    .route-booking-modal { align-items: end; padding: 0; }
    .route-booking-panel { max-height: 94dvh; padding: 1.5rem 1rem 1rem; border-radius: 22px 22px 0 0; }
    .route-booking-panel h2 { font-size: 2rem; }
    .route-booking-grid { grid-template-columns: 1fr 1fr; gap: 0.7rem; }
    .route-booking-grid > label:nth-child(3),
    .route-booking-contact { grid-column: 1 / 3; }
    .route-booking-methods > div { grid-template-columns: 1fr 1fr; }
    .route-fab { right: 1rem; bottom: 1.25rem; }
    .error-page .route-nav { justify-content: center; }
    .error-page .route-menu { display: none; }
    .error-main { padding-top: 7rem; }
    .error-actions { align-items: stretch; flex-direction: column; }
    .error-actions a { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; }
}
