.burger-menu {
    border: 0;
    background: transparent;
}

.home-text-button {
    border: 0;
    font: inherit;
    cursor: pointer;
}

.hero .hero-content {
    width: min(1080px, 100%);
    max-width: 1080px;
}

.hero .hero-title {
    max-width: 1060px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.8rem, 5.4vw, 4.7rem);
    font-style: normal;
}

.hero .hero-subtitle {
    max-width: 720px;
    margin-bottom: 1.7rem;
    color: rgba(255, 255, 255, 0.86);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.home-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.home-hero-benefits span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0.45rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50px;
    background: rgba(19, 45, 31, 0.28);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    font-size: 0.72rem;
    font-weight: 600;
}

.home-hero-benefits span::before {
    content: '✓';
    margin-right: 0.4rem;
    color: #d7efc5;
}

.home-hero-meta {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.2px;
    animation: fadeInUp 0.8s ease 0.35s forwards;
    opacity: 0;
}

.home-hero-meta span { margin: 0 0.4rem; }

.home-hero-actions {
    margin-bottom: 0;
    animation-delay: 0.4s;
}

.home-format-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.home-format-card {
    position: relative;
    display: block;
    min-height: 600px;
    overflow: hidden;
    border-radius: 22px;
    color: var(--white);
    text-decoration: none;
    cursor: pointer;
    isolation: isolate;
}

.home-format-card:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 4px;
}

.home-format-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -2;
}

.home-format-card-city img { object-position: 52% center; }
.home-format-card-karelia img { object-position: 50% center; }
.home-format-card:hover img { transform: scale(1.035); }
.home-format-card:hover .home-card-link span,
.home-format-card:focus-visible .home-card-link span { transform: translateX(5px); }

.home-format-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 18, 14, 0.04) 15%, rgba(10, 18, 14, 0.78) 100%);
    z-index: -1;
}

.home-format-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3rem;
}

.home-card-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.75;
}

.home-format-copy h3 {
    max-width: 480px;
    margin-bottom: 0.9rem;
    font-family: 'DM Serif Display', serif;
    font-size: 2.35rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.08;
}

.home-format-copy p {
    max-width: 460px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.home-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.home-card-link span { transition: transform 0.3s ease; }
.home-card-link:hover span { transform: translateX(5px); }

.home-routes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 1rem;
}

.home-route-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
    margin: -1rem auto 1rem;
}

.home-filter-button {
    padding: 0.65rem 1rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.62);
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-filter-button:hover {
    color: var(--forest);
    border-color: rgba(29, 74, 46, 0.35);
    transform: translateY(-1px);
}

.home-filter-button.is-active {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
}

.home-filter-button:focus-visible {
    outline: 3px solid rgba(29, 74, 46, 0.22);
    outline-offset: 3px;
}

.home-routes-count {
    min-height: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-align: center;
}

.home-route-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.home-route-card[hidden] { display: none; }

.home-route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 45px rgba(30, 50, 38, 0.09);
}

.home-route-card:focus-visible {
    outline: 3px solid rgba(29, 74, 46, 0.22);
    outline-offset: 4px;
}

.home-route-image {
    position: relative;
    height: 185px;
    overflow: hidden;
}

.home-route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-route-card:hover .home-route-image img { transform: scale(1.035); }

.home-route-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-width: calc(100% - 1.5rem);
}

.home-route-badges span {
    padding: 0.25rem 0.46rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(20, 35, 27, 0.3);
    backdrop-filter: blur(6px);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.58rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.15px;
}

.home-route-hit,
.home-route-transfer {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 3;
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    justify-content: center;
    padding: 0.32rem 0.7rem;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.home-route-hit {
    background: #E8873A;
    box-shadow: 0 5px 16px rgba(100, 48, 16, 0.24);
}

.home-route-transfer {
    background: rgba(46, 100, 119, 0.94);
    box-shadow: 0 5px 16px rgba(25, 64, 78, 0.22);
    font-size: 0.54rem;
    letter-spacing: 0.35px;
}

.home-route-copy {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem 1.2rem 1.05rem;
}

.home-route-copy h3 {
    margin-bottom: 0.55rem;
    color: var(--text-dark);
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.12;
    min-height: 2.24em;
}

.home-route-copy .home-route-title-long {
    font-size: 1.16rem;
    line-height: 1.08;
}

.home-route-duration {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--text-muted);
    font-size: 0.76rem;
    font-weight: 500;
}

.home-clock-icon {
    position: relative;
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    border: 1.4px solid currentColor;
    border-radius: 50%;
    opacity: 0.78;
}

.home-clock-icon::before,
.home-clock-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 1.2px;
    border-radius: 1px;
    background: currentColor;
    transform-origin: 50% 100%;
}

.home-clock-icon::before {
    height: 4px;
    transform: translate(-50%, -100%);
}

.home-clock-icon::after {
    height: 3px;
    transform: translate(-50%, -100%) rotate(120deg);
}

.home-route-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
}

.home-route-footer strong {
    color: var(--text-dark);
    font-family: 'DM Serif Display', serif;
    font-size: 1.28rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.home-route-footer span {
    color: var(--text-muted);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.3;
    text-align: right;
}

.home-route-actions {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.5rem;
    margin-top: 0.7rem;
}

.home-route-book,
.home-route-more {
    display: inline-flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 0.62rem 0.45rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.home-route-book {
    border: 1px solid var(--forest);
    background: var(--forest);
    color: var(--white);
    cursor: pointer;
}

.home-route-book:hover {
    background: var(--forest-light);
    transform: translateY(-1px);
}

.home-route-more {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-body);
    cursor: pointer;
}

.home-route-more:hover {
    border-color: rgba(29, 74, 46, 0.38);
    color: var(--forest);
    transform: translateY(-1px);
}

.home-route-book:focus-visible,
.home-route-more:focus-visible {
    outline: 3px solid rgba(29, 74, 46, 0.2);
    outline-offset: 2px;
}

.home-routes-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.home-routes-action p { color: var(--text-muted); }
.home-routes-action .section-cta-link { flex-shrink: 0; margin-top: 0; }

.nav-menu { gap: clamp(1rem, 1.8vw, 2rem); }

.home-team-section {
    position: relative;
    overflow: hidden;
}

.home-team-section::before {
    content: '';
    position: absolute;
    top: -180px;
    right: -140px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(29, 74, 46, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.home-team-intro {
    display: grid;
    align-items: end;
    grid-template-columns: 1.15fr 0.85fr;
    gap: clamp(2rem, 6vw, 7rem);
    margin-bottom: 3rem;
}

.home-team-intro .section-title { margin-bottom: 0; }

.home-team-intro > p {
    max-width: 540px;
    padding-bottom: 0.35rem;
    color: var(--text-muted);
    font-size: 0.94rem;
    line-height: 1.7;
}

.home-team-layout {
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(0, 1.9fr) minmax(270px, 0.85fr);
    gap: 1.25rem;
}

.home-team-people {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.home-team-card {
    display: grid;
    min-width: 0;
    overflow: hidden;
    grid-template-rows: minmax(290px, 1fr) auto;
    border: 1px solid var(--border-light);
    border-radius: 20px;
    background: var(--sand);
}

.home-team-photo {
    position: relative;
    min-height: 290px;
    overflow: hidden;
    background: #d9ded7;
}

.home-team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 66%, rgba(14, 31, 20, 0.14));
    pointer-events: none;
}

.home-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-team-card:hover .home-team-photo img { transform: scale(1.025); }

.home-team-card-copy { padding: 1.3rem 1.4rem 1.45rem; }

.home-team-card-copy h3 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
    font-family: 'DM Serif Display', serif;
    font-size: 1.55rem;
    font-weight: 400;
    line-height: 1.1;
}

.home-team-role {
    margin-bottom: 0.75rem;
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.35px;
    text-transform: uppercase;
}

.home-team-card-copy > p:last-child {
    color: var(--text-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.home-team-trust {
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    border-radius: 20px;
    background: var(--forest);
    color: var(--white);
}

.home-team-trust .section-label {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.62);
}

.home-team-trust-grid {
    display: grid;
    flex: 1;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.home-team-trust-grid > div {
    display: flex;
    min-height: 126px;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.home-team-trust-grid strong {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.35rem, 2.3vw, 2rem);
    font-weight: 400;
    line-height: 1;
}

.home-team-trust-grid span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.67rem;
    line-height: 1.4;
}

.home-team-trust > p {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.73rem;
    line-height: 1.55;
}

.home-process-section {
    overflow: hidden;
    border-top: 1px solid var(--border-light);
}

.home-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home-process-grid::before {
    content: '';
    position: absolute;
    top: 33px;
    left: 34px;
    right: 34px;
    height: 1px;
    background: var(--border);
}

.home-process-step {
    position: relative;
    z-index: 1;
}

.home-process-number {
    display: grid;
    width: 68px;
    height: 68px;
    margin-bottom: 1.75rem;
    place-items: center;
    border: 1px solid rgba(29, 74, 46, 0.2);
    border-radius: 50%;
    background: var(--sand);
    color: var(--forest);
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    font-style: italic;
    box-shadow: 0 0 0 10px var(--sand);
}

.home-process-step h3 {
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-family: 'DM Serif Display', serif;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.2;
}

.home-process-step p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
}

.home-process-fact {
    display: inline-flex;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(29, 74, 46, 0.12);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.35;
}

.home-process-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-top: 4rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--border);
}

.home-process-footer p {
    max-width: 680px;
    color: var(--text-muted);
    font-size: 0.88rem;
}

.home-process-footer .section-cta-link {
    flex-shrink: 0;
    margin-top: 0;
}

.home-faq-section { border-top: 1px solid var(--border-light); }

.home-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
    max-width: 1050px;
    margin: 0 auto;
}

.home-faq-column {
    border-top: 1px solid var(--border);
}

.home-faq-item {
    border-bottom: 1px solid var(--border);
}

.home-faq-item h3 { margin: 0; }

.home-faq-question {
    display: flex;
    width: 100%;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.1rem 0;
    border: 0;
    background: transparent;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
    transition: color 0.25s ease;
}

.home-faq-question:hover { color: var(--forest); }

.home-faq-question:focus-visible {
    outline: 3px solid rgba(29, 74, 46, 0.18);
    outline-offset: 4px;
    border-radius: 4px;
}

.home-faq-icon {
    position: relative;
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border: 1px solid var(--border);
    border-radius: 50%;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease;
}

.home-faq-icon::before,
.home-faq-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 1px;
    border-radius: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.home-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.home-faq-question[aria-expanded="true"] .home-faq-icon {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
    transform: rotate(45deg);
}

.home-faq-answer {
    padding: 0 3.25rem 1.35rem 0;
}

.home-faq-answer p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.75;
}

.home-final-section {
    background: var(--sand);
    padding-top: 0;
}

.home-final-card {
    position: relative;
    overflow: hidden;
    padding: 6rem 3rem;
    border-radius: 24px;
    background:
        linear-gradient(110deg, rgba(19, 45, 31, 0.96), rgba(30, 73, 49, 0.78)),
        url('../img/Main-Hero-2.jpg') center 48% / cover;
    color: var(--white);
    text-align: center;
}

.home-final-card .section-label { color: rgba(255, 255, 255, 0.72); }

.home-final-card h2 {
    margin-bottom: 1.5rem;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.08;
}

.home-final-card > p {
    max-width: 590px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.74);
    font-size: 1.02rem;
    line-height: 1.8;
}

.home-final-actions {
    margin-top: 2.2rem;
    margin-bottom: 0;
    opacity: 1;
    animation: none;
}

.home-outline-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.home-outline-button:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

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

.home-route-modal[hidden] { display: none; }

.home-route-modal {
    position: fixed;
    inset: 0;
    z-index: 2210;
    display: grid;
    overflow-y: auto;
    place-items: center;
    padding: 1.25rem;
}

.home-route-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 28, 20, 0.72);
    backdrop-filter: blur(9px);
}

.home-route-modal-panel {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(920px, 100%);
    height: min(760px, calc(100dvh - 2.5rem));
    max-height: calc(100dvh - 2.5rem);
    overflow: hidden;
    grid-template-columns: minmax(300px, 0.92fr) minmax(390px, 1.08fr);
    grid-template-rows: minmax(0, 1fr);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 24px;
    background: var(--sand);
    box-shadow: 0 32px 100px rgba(8, 24, 15, 0.38);
}

.home-route-modal-close {
    position: absolute;
    top: 0.85rem;
    right: 0.85rem;
    z-index: 3;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(29, 74, 46, 0.14);
    border-radius: 50%;
    background: rgba(250, 247, 240, 0.9);
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    box-shadow: 0 5px 20px rgba(20, 45, 29, 0.12);
}

.home-route-modal-close:hover { background: var(--white); }

.home-route-modal-media {
    position: relative;
    min-height: 0;
    height: 100%;
    overflow: hidden;
    background: var(--forest);
}

.home-route-modal-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 26, 17, 0.04) 48%, rgba(11, 26, 17, 0.42) 100%);
    pointer-events: none;
}

.home-route-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-route-modal-gallery {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 2;
    display: flex;
    gap: 0.45rem;
}

.home-route-modal-gallery[hidden] { display: none; }

.home-route-modal-gallery-button {
    width: 52px;
    height: 52px;
    overflow: hidden;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.48);
    border-radius: 10px;
    background: rgba(20, 38, 28, 0.35);
    cursor: pointer;
    opacity: 0.72;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-route-modal-gallery-button img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-route-modal-gallery-button:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.home-route-modal-gallery-button[aria-pressed="true"] {
    border-color: var(--white);
    opacity: 1;
    box-shadow: 0 4px 16px rgba(8, 24, 15, 0.24);
}

.home-route-modal-badges {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    max-width: calc(100% - 2.5rem);
}

.home-route-modal-badges span {
    padding: 0.38rem 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 50px;
    background: rgba(20, 38, 28, 0.43);
    color: var(--white);
    font-size: 0.66rem;
    font-weight: 600;
    backdrop-filter: blur(7px);
}

.home-route-modal-side {
    display: grid;
    min-width: 0;
    min-height: 0;
    height: 100%;
    grid-template-rows: minmax(0, 1fr) auto;
    background: var(--sand);
}

.home-route-modal-content {
    align-self: stretch;
    min-height: 0;
    height: auto;
    max-height: none;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
    padding: 3rem 3.1rem 2.2rem;
}

.home-route-modal-content .section-label { margin-bottom: 0.65rem; }

.home-route-modal-content h2 {
    max-width: 520px;
    margin-bottom: 0.9rem;
    color: var(--text-dark);
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.1rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 0.98;
}

.home-route-modal-description {
    margin-bottom: 1.35rem;
    color: var(--text-body);
    font-size: 0.94rem;
    line-height: 1.65;
}

.home-route-modal-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 1.35rem;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 13px;
}

.home-route-modal-facts > div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    padding: 0.78rem 0.9rem;
}

.home-route-modal-facts > div:nth-child(even) {
    border-left: 1px solid var(--border);
}

.home-route-modal-facts > div:nth-child(n + 3) {
    border-top: 1px solid var(--border);
}

.home-route-modal-facts span,
.home-route-modal-best > span,
.home-route-modal-highlights > span {
    color: var(--text-muted);
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.65px;
    text-transform: uppercase;
}

.home-route-modal-facts strong {
    color: var(--text-dark);
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
}

.home-route-modal-best {
    margin-bottom: 1.15rem;
    padding: 1rem 1.1rem;
    border-radius: 13px;
    background: rgba(29, 74, 46, 0.065);
}

.home-route-modal-best p {
    margin-top: 0.32rem;
    color: var(--text-dark);
    font-size: 0.84rem;
    line-height: 1.5;
}

.home-route-modal-highlights {
    margin-bottom: 1.15rem;
}

.home-route-modal-highlights ul {
    display: grid;
    gap: 0.48rem;
    margin: 0.55rem 0 0;
    padding: 0;
    list-style: none;
}

.home-route-modal-highlights li {
    position: relative;
    padding-left: 1rem;
    color: var(--text-body);
    font-size: 0.78rem;
    line-height: 1.4;
}

.home-route-modal-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.48em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--orange);
}

.home-route-modal-included {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.1rem;
    padding: 0;
    list-style: none;
}

.home-route-modal-included li {
    position: relative;
    padding-left: 1.45rem;
    color: var(--text-body);
    font-size: 0.78rem;
    line-height: 1.35;
}

.home-route-modal-included li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: -0.08rem;
    display: grid;
    width: 17px;
    height: 17px;
    place-items: center;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-size: 0.62rem;
    font-weight: 800;
}

.home-route-modal-practical {
    margin-bottom: 1.15rem;
    border-block: 1px solid var(--border);
}

.home-route-modal-practical summary {
    position: relative;
    padding: 0.8rem 1.4rem 0.8rem 0;
    color: var(--text-dark);
    cursor: pointer;
    font-size: 0.78rem;
    font-weight: 700;
    list-style: none;
}

.home-route-modal-practical summary::-webkit-details-marker { display: none; }

.home-route-modal-practical summary::after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 0;
    color: var(--forest);
    font-size: 1.15rem;
    font-weight: 400;
    transform: translateY(-50%);
}

.home-route-modal-practical[open] summary::after { content: '−'; }

.home-route-modal-practical summary:focus-visible {
    outline: 3px solid rgba(29, 74, 46, 0.2);
    outline-offset: 3px;
}

.home-route-modal-practical > div {
    display: grid;
    gap: 0.65rem;
    padding: 0 0 0.9rem;
}

.home-route-modal-practical p {
    color: var(--text-body);
    font-size: 0.74rem;
    line-height: 1.48;
}

.home-route-modal-practical p strong {
    color: var(--text-dark);
    font-weight: 700;
}

.home-route-modal-page-link {
    display: inline-flex;
    margin-top: 0.15rem;
    color: var(--forest);
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.home-route-modal-page-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.home-route-modal-page-link[hidden] { display: none; }

.home-route-modal-footer {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(90px, auto) minmax(210px, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 1rem 2rem 1.05rem;
    border-top: 1px solid var(--border);
    background: rgba(250, 247, 240, 0.98);
    box-shadow: 0 -12px 28px rgba(18, 53, 33, 0.06);
}

.home-route-modal-footer-price {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.home-route-modal-footer-price span {
    color: var(--text-muted);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.55px;
    text-transform: uppercase;
}

.home-route-modal-footer-price strong {
    color: var(--text-dark);
    font-family: 'DM Serif Display', serif;
    font-size: 1.45rem;
    font-weight: 400;
    line-height: 1.1;
    white-space: nowrap;
}

.home-route-modal-footer-action {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.home-route-modal-book {
    width: 100%;
    min-height: 48px;
    padding: 0.8rem 1.25rem;
    border: 1px solid var(--forest);
    border-radius: 50px;
    background: var(--forest);
    color: var(--white);
    cursor: pointer;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 700;
    transition: background 0.25s ease, transform 0.25s ease;
}

.home-route-modal-book:hover {
    background: var(--forest-light);
    transform: translateY(-1px);
}

.home-route-modal-note {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.68rem;
    line-height: 1.4;
    text-align: center;
}

.home-route-modal-note a {
    color: var(--forest);
    font-weight: 600;
    text-underline-offset: 2px;
}

.home-route-modal-close:focus-visible,
.home-route-modal-book:focus-visible,
.home-route-modal-gallery-button:focus-visible {
    outline: 3px solid rgba(29, 74, 46, 0.2);
    outline-offset: 3px;
}

.home-booking-modal[hidden] { display: none; }

.home-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    display: grid;
    overflow-y: auto;
    place-items: center;
    padding: 0.5rem;
}

.home-booking-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(13, 28, 20, 0.66);
    backdrop-filter: blur(8px);
}

.home-booking-panel {
    position: relative;
    z-index: 1;
    width: min(680px, 100%);
    max-height: calc(100dvh - 1rem);
    overflow-y: auto;
    padding: 1.4rem 1.55rem;
    border: 1px solid rgba(29, 74, 46, 0.12);
    border-radius: 20px;
    background: var(--sand);
    box-shadow: 0 28px 80px rgba(10, 28, 18, 0.28);
}

.home-booking-close {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    color: var(--text-dark);
    cursor: pointer;
    font-size: 1.45rem;
    line-height: 1;
}

.home-booking-close:hover { background: var(--white); }

.home-booking-header { padding-right: 2.5rem; }

.home-booking-header .section-label { margin-bottom: 0.35rem; }

.home-booking-header h2,
.home-booking-success h2 {
    margin-bottom: 0.35rem;
    color: var(--text-dark);
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.15rem);
    font-weight: 400;
    line-height: 1.08;
}

.home-booking-header p {
    max-width: 570px;
    margin-bottom: 0.85rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.home-booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.8rem;
}

.home-booking-field {
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.home-booking-field-wide { grid-column: 1 / -1; }
.home-booking-field[hidden] { display: none; }

.home-booking-field > label,
.home-booking-contact-method legend {
    color: var(--text-dark);
    font-size: 0.72rem;
    font-weight: 700;
}

[data-required-label]::after {
    content: ' *';
    color: #b33a32;
    font-weight: 800;
}

.home-booking-field > label span {
    color: var(--text-muted);
    font-weight: 400;
}

.home-booking-field input:not([type="checkbox"]),
.home-booking-field select,
.home-booking-field textarea {
    width: 100%;
    min-height: 40px;
    padding: 0.55rem 0.7rem;
    border: 1px solid var(--border);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-dark);
    font: inherit;
    font-size: 0.8rem;
}

.home-booking-field textarea {
    min-height: 62px;
    resize: vertical;
}

.home-booking-field input:focus,
.home-booking-field select:focus,
.home-booking-field textarea:focus,
.home-booking-close:focus-visible,
.home-booking-contact-options input:focus-visible + span {
    outline: 3px solid rgba(29, 74, 46, 0.18);
    outline-offset: 2px;
    border-color: var(--forest);
}

.home-booking-price,
.home-booking-hint {
    min-height: 0.85rem;
    color: var(--forest);
    font-size: 0.68rem;
    font-weight: 600;
}

.home-booking-check {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0;
    color: var(--text-muted) !important;
    cursor: pointer;
    font-size: 0.66rem;
    font-weight: 500 !important;
}

.home-booking-check input { accent-color: var(--forest); }

.home-booking-contact-method {
    margin: 0;
    padding: 0;
    border: 0;
}

.home-booking-contact-method legend { margin-bottom: 0.35rem; }

.home-booking-contact-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
}

.home-booking-contact-options label { cursor: pointer; }

.home-booking-contact-options input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
}

.home-booking-contact-options span {
    display: grid;
    min-height: 34px;
    place-items: center;
    padding: 0.38rem;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.54);
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
}

.home-booking-contact-options input:checked + span {
    border-color: var(--forest);
    background: var(--forest);
    color: var(--white);
}

.home-booking-contact-field { margin-bottom: 0; }

.home-booking-comment-toggle {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 0.45rem;
    color: var(--forest);
    cursor: pointer;
    font-size: 0.7rem;
    font-weight: 700;
}

.home-booking-comment-toggle input { accent-color: var(--forest); }

.home-booking-disclaimer {
    margin: 0.65rem 0 0.35rem;
    color: var(--text-muted);
    font-size: 0.64rem;
    line-height: 1.4;
    text-align: center;
}

.home-booking-disclaimer a {
    color: var(--forest);
    font-weight: 700;
}

.home-footer-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem 1rem;
}

.home-footer-meta a,
footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.72);
}

.home-booking-status {
    min-height: 0.9rem;
    margin-bottom: 0.3rem;
    color: #a23d32;
    font-size: 0.74rem;
    font-weight: 600;
}

.home-booking-submit {
    width: 100%;
    min-height: 44px;
    border: 0;
    border-radius: 50px;
    background: var(--forest);
    color: var(--white);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
}

.home-booking-submit:hover { background: var(--forest-light); }
.home-booking-submit:disabled { cursor: wait; opacity: 0.65; }

.home-booking-direct {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.45rem 1rem;
    margin-top: 0.75rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border);
    text-align: center;
}

.home-booking-direct > span {
    display: inline;
    margin-bottom: 0;
    color: var(--text-muted);
    font-size: 0.72rem;
}

.home-booking-direct div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.home-booking-direct a {
    color: var(--forest);
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.home-booking-success {
    padding: 2.5rem 0 1rem;
    text-align: center;
}

.home-booking-success-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 0 auto 1.4rem;
    place-items: center;
    border-radius: 50%;
    background: var(--forest);
    color: var(--white);
    font-size: 1.7rem;
}

.home-booking-success dl {
    display: grid;
    gap: 0.65rem;
    max-width: 430px;
    margin: 1.5rem auto;
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.52);
    text-align: left;
}

.home-booking-success dl div {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 1rem;
}

.home-booking-success dt {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.home-booking-success dd {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.78rem;
    font-weight: 700;
}

.home-booking-success > p {
    max-width: 500px;
    margin: 0.55rem auto;
    color: var(--text-muted);
    line-height: 1.6;
}

.home-booking-success-note { font-size: 0.78rem; }

.home-booking-success-actions {
    display: flex;
    justify-content: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
}

.home-booking-success-actions a,
.home-booking-success-actions button {
    min-height: 44px;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-size: 0.76rem;
    font-weight: 700;
    text-decoration: none;
}

.home-booking-success-actions a {
    display: inline-flex;
    align-items: center;
    border: 1px solid #0088cc;
    background: #0088cc;
    color: var(--white);
}

.home-booking-success-actions button {
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .home-format-card { min-height: 520px; }
    .home-routes-grid { grid-template-columns: 1fr 1fr; }
    .home-team-layout { grid-template-columns: 1fr; }
    .home-team-trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .home-team-trust-grid > div { min-height: 112px; }
    .home-process-grid { grid-template-columns: 1fr 1fr; }
    .home-process-grid::before { display: none; }
    .home-process-step {
        padding-top: 1.5rem;
        border-top: 1px solid var(--border);
    }
    .home-process-number {
        width: 56px;
        height: 56px;
        margin-bottom: 1.25rem;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .hero .hero-content { padding: 5.5rem 1.25rem 2rem; }
    .hero .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
    .hero .hero-subtitle { margin-bottom: 1.25rem; font-size: 0.94rem; line-height: 1.6; }
    .home-hero-benefits { gap: 0.4rem; }
    .home-hero-benefits span { min-height: 30px; padding: 0.38rem 0.65rem; font-size: 0.63rem; }
    .home-hero-meta { max-width: 310px; margin-right: auto; margin-left: auto; line-height: 1.65; }
    .home-format-grid,
    .home-routes-grid { grid-template-columns: 1fr; }
    .home-format-card { min-height: 500px; }
    .home-format-copy { padding: 2rem; }
    .home-format-copy h3 { font-size: 2rem; }
    .home-route-copy p { min-height: auto; }
    .home-routes-action { flex-direction: column; align-items: flex-start; }
    .home-team-intro { grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: 2rem; }
    .home-team-intro > p { padding-bottom: 0; }
    .home-team-trust { padding: 1.25rem; }
    .home-team-trust-grid { grid-template-columns: 1fr 1fr; }
    .home-process-grid { grid-template-columns: 1fr; gap: 2.25rem; }
    .home-process-step { min-height: 0; padding: 0 0 0 4rem; border-top: 0; }
    .home-process-number {
        position: absolute;
        top: 0;
        left: 0;
        width: 44px;
        height: 44px;
        margin: 0;
        font-size: 0.9rem;
    }
    .home-process-grid::before {
        display: block;
        top: 22px;
        bottom: 22px;
        left: 21px;
        right: auto;
        width: 1px;
        height: auto;
    }
    .home-process-footer { flex-direction: column; align-items: flex-start; margin-top: 3rem; }
    .home-faq-grid { grid-template-columns: 1fr; gap: 0; }
    .home-faq-column + .home-faq-column { border-top: 0; }
    .home-final-card { padding: 5rem 1.5rem; }
    .home-route-modal { align-items: end; padding: 0; }
    .home-route-modal-panel {
        display: grid;
        width: 100%;
        height: calc(100dvh - 0.5rem);
        max-height: calc(100dvh - 0.5rem);
        overflow: hidden;
        grid-template-columns: 1fr;
        grid-template-rows: auto minmax(0, 1fr);
        overscroll-behavior: contain;
        border-radius: 20px 20px 0 0;
    }
    .home-route-modal-media { min-height: 225px; height: 30dvh; max-height: 280px; }
    .home-route-modal-badges { top: 0.85rem; left: 1rem; }
    .home-route-modal-gallery { right: 1rem; bottom: 0.85rem; }
    .home-route-modal-gallery-button { width: 44px; height: 44px; border-radius: 8px; }
    .home-route-modal-content {
        min-height: 0;
        height: auto;
        max-height: none;
        overflow-y: auto;
        touch-action: pan-y;
        padding: 1.35rem 1.25rem 1.1rem;
    }
    .home-route-modal-content .section-label { display: none; }
    .home-route-modal-content h2 { margin-bottom: 0.55rem; font-size: 2rem; }
    .home-route-modal-description { margin-bottom: 0.9rem; font-size: 0.84rem; line-height: 1.5; }
    .home-route-modal-facts { margin-bottom: 0.9rem; }
    .home-route-modal-facts > div { padding: 0.7rem 0; }
    .home-route-modal-best { margin-bottom: 0.85rem; padding: 0.8rem 0.9rem; }
    .home-route-modal-included { margin-bottom: 1rem; }
    .home-route-modal-footer {
        grid-template-columns: minmax(82px, auto) minmax(0, 1fr);
        gap: 0.75rem;
        padding: 0.8rem 1rem calc(0.8rem + env(safe-area-inset-bottom));
    }
    .home-route-modal-footer-price strong { font-size: 1.3rem; }
    .home-route-modal-note { font-size: 0.61rem; }
    .home-booking-modal { align-items: end; padding: 0; }
    .home-booking-panel {
        width: 100%;
        max-height: calc(100dvh - 0.5rem);
        padding: 0.9rem 1rem calc(0.9rem + env(safe-area-inset-bottom));
        border-radius: 18px 18px 0 0;
    }
    .home-booking-header { padding-right: 2rem; }
    .home-booking-header .section-label { display: none; }
    .home-booking-header h2 { font-size: 1.55rem; }
    .home-booking-header p { margin-bottom: 0.65rem; font-size: 0.74rem; }
    .home-booking-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem 0.6rem;
    }
    .home-booking-field-wide { grid-column: 1 / -1; }
    .home-booking-contact-options { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .home-booking-contact-options span { padding: 0.32rem 0.15rem; font-size: 0.61rem; }
    .home-booking-direct > span { display: none; }
    .home-booking-direct { margin-top: 0.55rem; padding-top: 0.5rem; }
}

@media (max-width: 480px) {
    .home-format-card { min-height: 440px; }
    .home-format-copy { padding: 1.6rem; }
    .home-format-copy p { font-size: 0.9rem; }
    .home-route-image { height: 250px; }
    .home-route-copy { padding: 1.5rem; }
    .home-route-copy h3 { min-height: 0; }
    .home-route-filters {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        margin-right: -1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
    }
    .home-route-filters::-webkit-scrollbar { display: none; }
    .home-filter-button { flex: 0 0 auto; }
    .home-final-card { border-radius: 18px; }
    .home-route-actions { grid-template-columns: 1.2fr 1fr; }
    .home-route-book, .home-route-more { font-size: 0.75rem; }
    .home-team-people { grid-template-columns: 1fr; }
    .home-team-card { grid-template-rows: 320px auto; }
    .home-team-photo { min-height: 320px; }
    .home-team-trust-grid > div { min-height: 108px; padding: 0.8rem; }
    .home-team-trust-grid strong { font-size: 1.45rem; }
    .home-route-modal-media { min-height: 190px; height: 27dvh; }
    .home-route-modal-content { padding-inline: 1rem; }
    .home-route-modal-content h2 { padding-right: 1.7rem; font-size: 1.75rem; }
    .home-route-modal-included { grid-template-columns: 1fr; }
    .home-route-modal-included li { font-size: 0.74rem; }
    .home-booking-success-actions { flex-direction: column; }
    .home-booking-success-actions a { justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .home-hero-benefits,
    .home-hero-meta { opacity: 1; animation: none; }
}
