:root {
    --navy: #052e61;
    --navy-dark: #041f43;
    --bg: #f5f7fa;
    --card: #ffffff;
    --text: #142133;
    --muted: #5e6b7a;
    --border: #d9e1ea;
    --shadow: 0 14px 40px rgba(5, 46, 97, 0.08);
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3f8 100%);
    color: var(--text);
    margin: 0;
    padding: 0;
}

.page-shell {
    margin: 28px auto;
}

.has-site-home-logo .page-shell {
    margin-top: 96px;
}

.site-home-logo {
    position: absolute;
    top: 20px;
    left: 24px;
    z-index: 40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(217, 225, 234, 0.9);
    box-shadow: 0 14px 34px rgba(20, 33, 51, 0.12);
}

.site-home-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.site-page-actions {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 12px;
}

.container {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 54px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    border: 1px solid rgba(217, 225, 234, 0.8);
}

h1 {
    color: var(--navy);
    margin: 0 0 18px;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 0.98;
    letter-spacing: -0.03em;
    font-weight: 800;
}

h2 {
    color: var(--navy);
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
}

p {
    margin: 0;
    line-height: 1.65;
}

label {
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
    color: var(--text);
}

input, select, textarea {
    width: 100%;
    padding: 16px 18px;
    margin-bottom: 28px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    font-size: 16px;
    background: #fff;
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(5, 46, 97, 0.08);
}

textarea {
    min-height: 160px;
    resize: vertical;
}

button,
.primary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--navy);
    color: white;
    border: none;
    padding: 16px 28px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 24px rgba(5, 46, 97, 0.18);
}

button:hover,
.primary-link:hover {
    background: var(--navy-dark);
    transform: translateY(-1px);
}

.hero {
    padding: 8px 0 24px;
}

.eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background: rgba(5, 46, 97, 0.08);
    border-radius: 999px;
    padding: 10px 14px;
    margin-bottom: 22px;
}

.hero-subtitle {
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 18px;
}

.hero-text {
    max-width: 760px;
    font-size: 20px;
    color: var(--muted);
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

.hero-meta {
    color: var(--muted);
    font-size: 15px;
    font-weight: 600;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 34px;
}

.trust-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.trust-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.trust-text {
    font-size: 16px;
    color: var(--muted);
}

.time-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.time-btn {
    background: white;
    color: var(--navy);
    border: 1px solid var(--border);
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: none;
}

.time-btn.selected {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.time-btn:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

.flatpickr-input[readonly] {
    background: white;
    cursor: pointer;
}

.home-hero {
    position: relative;
    min-height: 78vh;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 56px;
    margin-bottom: 28px;
    background: #0d1b2a;
}

.home-hero__media {
    position: absolute;
    inset: 0;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (min-width: 901px) {
    .hero2-layout .home-hero {
        min-height: 720px;
    }

    .hero2-layout .home-hero__media img {
        object-fit: cover;
        object-position: 62% center;
    }
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 46, 97, 0.78) 0%, rgba(5, 46, 97, 0.48) 38%, rgba(5, 46, 97, 0.16) 68%, rgba(5, 46, 97, 0.08) 100%),
        linear-gradient(180deg, rgba(5, 46, 97, 0.12) 0%, rgba(5, 46, 97, 0.55) 100%);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #ffffff;
}

.home-hero .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.home-hero h1 {
    color: #ffffff;
    max-width: 16ch;
    margin-bottom: 16px;
}

.home-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.96);
    max-width: 20ch;
}

.home-hero .hero-text {
    color: rgba(255, 255, 255, 0.86);
    max-width: 56ch;
}

.home-hero .hero-meta {
    color: rgba(255, 255, 255, 0.82);
}

.home-hero .primary-link {
    background: #ffffff;
    color: #052e61;
    box-shadow: 0 14px 28px rgba(8, 20, 40, 0.22);
}

.home-hero .primary-link:hover {
    background: #f3f6fb;
    color: #041f43;
}

@media (max-width: 900px) {
    .home-hero {
        min-height: 68vh;
        padding: 28px 22px;
        align-items: flex-end;
    }

    .home-hero__overlay {
        background:
            linear-gradient(180deg, rgba(5, 46, 97, 0.18) 0%, rgba(5, 46, 97, 0.72) 100%);
    }

    .home-hero h1,
    .home-hero .hero-subtitle,
    .home-hero .hero-text {
        max-width: none;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 32px 22px;
    }

    .trust-bar {
        grid-template-columns: 1fr;
    }

    .hero-text {
        font-size: 18px;
    }
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 420px);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

.hero2-layout {
    display: grid;
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

@media (min-width: 901px) {
    .container > .hero2-layout:first-child {
        margin-top: -44px;
    }
}

.home-hero {
    position: relative;
    min-height: 660px;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 56px;
    background: #0d1b2a;
}

.home-hero__media {
    position: absolute;
    inset: 0;
}

.home-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 46, 97, 0.84) 0%, rgba(5, 46, 97, 0.58) 34%, rgba(5, 46, 97, 0.22) 70%, rgba(5, 46, 97, 0.10) 100%),
        linear-gradient(180deg, rgba(5, 46, 97, 0.10) 0%, rgba(5, 46, 97, 0.55) 100%);
}

.home-hero__content {
    position: relative;
    z-index: 2;
    max-width: 560px;
    color: #ffffff;
}

.home-hero-actions {
    position: absolute;
    top: 28px;
    right: 84px;
    z-index: 12;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-book-now {
    min-height: 50px;
    padding: 14px 22px;
    background: #ffffff;
    color: #052e61;
    box-shadow: 0 14px 28px rgba(8, 20, 40, 0.22);
}

.hero-book-now:hover {
    background: #f3f6fb;
    color: #041f43;
}

.home-menu {
    position: relative;
}

.home-menu-toggle {
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #052e61;
    box-shadow: 0 14px 28px rgba(8, 20, 40, 0.22);
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
}

.home-menu-toggle:hover {
    background: #ffffff;
    color: #041f43;
}

.home-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.home-hero-logo {
    position: absolute;
    right: 84px;
    bottom: clamp(52px, 6vh, 76px);
    z-index: 3;
    width: clamp(78px, 8vw, 118px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: transparent;
    filter: drop-shadow(0 16px 28px rgba(8, 20, 40, 0.24));
    overflow: hidden;
}

.home-hero-logo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    border-radius: inherit;
}

.home-hero .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(6px);
}

.home-hero h1 {
    color: #ffffff;
    max-width: 16ch;
    margin-bottom: 16px;
}

.home-hero .hero-subtitle {
    color: rgba(255, 255, 255, 0.96);
    max-width: 27ch;
    margin-bottom: 18px;
}

.home-hero .hero-text {
    color: rgba(255, 255, 255, 0.86);
    max-width: 46ch;
    margin-bottom: 28px;
}

.home-hero .hero-meta {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    font-weight: 600;
    margin-top: 16px;
}

.hero-primary-link {
    background: #ffffff;
    color: #052e61;
    box-shadow: 0 14px 28px rgba(8, 20, 40, 0.22);
}

.find-out-more-button {
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.hero-primary-link:hover {
    background: #f3f6fb;
    color: #041f43;
}

.hero-booking-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 225, 234, 0.85);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(20, 33, 51, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 720px;
}

.hero-booking-card__eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #052e61;
    margin-bottom: 10px;
}

.hero-booking-card__title {
    margin-bottom: 24px;
}

.hero-booking-card__button {
    width: 100%;
    margin-top: 10px;
}

.hero-booking-card__note {
    color: #5e6b7a;
    font-size: 14px;
    margin-top: 16px;
}

.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
    margin-bottom: 28px;
}

.trust-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.trust-title {
    font-size: 20px;
    font-weight: 800;
    color: #052e61;
    margin-bottom: 10px;
}

.trust-text {
    font-size: 16px;
    color: #5e6b7a;
}

.reviews-section {
    margin-top: 10px;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-kicker {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #052e61;
    margin-bottom: 10px;
}

.section-description {
    color: #5e6b7a;
    font-size: 18px;
    line-height: 1.65;
}

.review-stars {
    color: #dfbd69;
    font-size: 18px;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.booking-page-header {
    max-width: 760px;
    margin-bottom: 28px;
}

.booking-topbar {
    margin-bottom: 20px;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 420px);
    gap: 28px;
    align-items: start;
}

.booking-form-card,
.booking-side-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.booking-form-card {
    padding: 34px;
}

.booking-form-section + .booking-form-section {
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid #eef1f5;
}

.booking-form-section__header {
    margin-bottom: 22px;
}

.booking-form-section__eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #052e61;
    margin-bottom: 10px;
}

.booking-form-section__header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.booking-form-section__text {
    color: #5e6b7a;
    font-size: 17px;
    line-height: 1.65;
}

.booking-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.booking-field-group {
    margin-bottom: 22px;
}

.booking-field-group input,
.booking-field-group select,
.booking-field-group textarea {
    margin-bottom: 0;
}

.booking-field-group--narrow {
    max-width: 180px;
}

.booking-field-help {
    margin-top: 10px;
    font-size: 14px;
    color: #5e6b7a;
}

.booking-field-errors {
    margin-top: 10px;
}

.booking-field-errors p,
.booking-form-errors p {
    color: #b42318;
    font-size: 14px;
    line-height: 1.5;
}

.booking-form-errors {
    margin-top: 24px;
    padding: 16px 18px;
    border: 1px solid #f1c7c7;
    background: #fff6f6;
    border-radius: 14px;
}

.booking-submit-area {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid #eef1f5;
}

.booking-submit-note {
    margin-top: 14px;
    color: #5e6b7a;
    font-size: 14px;
}

.booking-side-card {
    overflow: hidden;
    position: sticky;
    top: 28px;
}

.booking-side-card__image {
    min-height: 280px;
}

.booking-side-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.booking-side-card__content {
    padding: 28px;
}

.booking-side-card__eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #052e61;
    margin-bottom: 10px;
}

.booking-side-card__text {
    color: #5e6b7a;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.booking-side-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.booking-side-point {
    padding-top: 18px;
    border-top: 1px solid #eef1f5;
}

.booking-side-point:first-child {
    padding-top: 0;
    border-top: none;
}

.booking-side-point h3 {
    color: #052e61;
    font-size: 20px;
    line-height: 1.2;
    margin: 0 0 8px;
}

.booking-side-point p {
    color: #5e6b7a;
    font-size: 16px;
    line-height: 1.65;
}

.booking-side-meta {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid #eef1f5;
}

.booking-side-meta p {
    color: #142133;
    font-size: 15px;
}

.booking-side-meta p + p {
    margin-top: 10px;
}

.booking-side-meta a {
    color: #052e61;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-side-card {
        position: static;
        top: auto;
    }
}

@media (max-width: 900px) {
    .booking-two-column {
        grid-template-columns: 1fr;
    }

    .booking-form-card {
        padding: 24px 20px;
    }

    .booking-side-card__content {
        padding: 24px 20px;
    }

    .booking-side-card__image {
        min-height: 220px;
    }
}

.time-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.time-btn {
    background: white;
    color: #052e61;
    border: 1px solid #d9e1ea;
    padding: 14px 18px;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: none;
}

.time-btn.selected {
    background: #052e61;
    color: white;
    border-color: #052e61;
}

.flatpickr-input[readonly] {
    background: white;
    cursor: pointer;
}

.booking-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef1f5;
}

.booking-logo img {
    max-width: 140px;
    height: auto;
    opacity: 0.95;
}

.back-link {
    display: block;
    text-align: right;
    margin-bottom: 20px;
    color: #052e61;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.back-link:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.reviews-footer {
    text-align: center;
    margin-top: 24px;
}

.reviews-footer a {
    color: #052e61;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    opacity: 0.85;
    transition: all 0.2s ease;
}

.reviews-footer a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.tour-details-topbar {
    margin-bottom: 20px;
}

.tour-details-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 420px);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 28px;
}

.tour-details-hero__content,
.tour-details-hero__card,
.tour-route-card,
.tour-map-card,
.tour-value-card,
.tour-experience-card,
.tour-facts-card,
.faq-item,
.tour-details-cta {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.tour-details-hero__content {
    padding: 40px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 28px;
    align-items: stretch;
}

.tour-details-hero__text-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-details-hero__image {
    border-radius: 22px;
    overflow: hidden;
    min-height: 100%;
    background: #f3f6fb;
}

.tour-details-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-details-hero__lead {
    font-size: 24px;
    font-weight: 700;
    color: #142133;
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 60ch;
}

.tour-details-hero__text {
    font-size: 18px;
    color: #5e6b7a;
    margin-bottom: 16px;
    max-width: 60ch;
}

.tour-details-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.tour-details-hero__meta {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #5e6b7a;
}

.tour-details-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    border-radius: 999px;
    border: 1px solid #d9e1ea;
    color: #052e61;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    background: #ffffff;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tour-details-secondary-link:hover {
    transform: translateY(-1px);
    border-color: #052e61;
    box-shadow: 0 10px 20px rgba(5, 46, 97, 0.08);
}

.tour-details-hero__card {
    padding: 32px;
    display: flex;
    align-items: center;
}

.tour-summary-card__eyebrow {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #052e61;
    margin-bottom: 18px;
}

.tour-summary-row + .tour-summary-row {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eef1f5;
}

.tour-summary-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tour-summary-links a {
    color: #052e61;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    padding: 6px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.tour-summary-links a::after {
    content: "→";
    font-size: 14px;
    transition: transform 0.2s ease;
}

.tour-summary-links a:hover::after {
    transform: translateX(4px);
}

.tour-summary-links a:hover::after {
    width: 100%;
}

.tour-summary-links a:hover {
    opacity: 0.8;
}

.tour-summary-links a:hover {
    opacity: 0.8;
    transform: translateX(2px);
}

.tour-summary-label {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #052e61;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tour-summary-row p {
    color: #142133;
    font-size: 17px;
    line-height: 1.6;
}

.tour-details-section {
    margin-top: 28px;
}

.tour-value-grid,
.tour-experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tour-value-card,
.tour-experience-card {
    padding: 28px;
}

.tour-value-card h3,
.tour-experience-card h3,
.tour-route-meeting__content h3,
.tour-stop__content h3 {
    color: #052e61;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 12px;
}

.tour-value-card p,
.tour-experience-card p {
    color: #5e6b7a;
    font-size: 17px;
    line-height: 1.7;
}

.tour-route-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 20px;
    align-items: stretch;
}

.tour-route-card {
    padding: 32px;
}

.tour-route-meeting {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: start;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid #eef1f5;
}

.tour-route-marker,
.tour-stop__marker {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.tour-route-marker--meeting {
    background: #ff6f6f;
    color: #ffffff;
    font-size: 22px;
}

.tour-route-meeting__label {
    color: #5e6b7a;
    font-size: 16px;
    margin-bottom: 4px;
}

.tour-route-meeting__content p:last-child {
    color: #5e6b7a;
    font-size: 17px;
    line-height: 1.7;
}

.tour-route-map-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid #d9e1ea;
    background: #f8fafc;
    color: #052e61;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.tour-route-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.tour-stop {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 18px;
    align-items: start;
    position: relative;
}

.tour-stop:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 25px;
    top: 58px;
    width: 2px;
    height: calc(100% + 8px);
    background: #d9e1ea;
}

.tour-stop__marker {
    background: #4a4f57;
    color: #ffffff;
    font-size: 22px;
}

.tour-stop__type {
    color: #7a8694;
    font-size: 16px;
    margin-bottom: 4px;
}

.tour-map-card {
    overflow: hidden;
    min-height: 100%;
}

.tour-map-card iframe {
    display: block;
    min-height: 100%;
    width: 100%;
    height: 100%;
    border: 0;
}

.tour-facts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tour-facts-card {
    padding: 32px;
}

.tour-facts-card h2 {
    margin-bottom: 24px;
}

.tour-facts-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tour-fact-row {
    display: grid;
    grid-template-columns: minmax(150px, 200px) 1fr;
    gap: 24px;
    align-items: start;
}

.tour-fact-label {
    font-size: 18px;
    font-weight: 800;
    color: #142133;
}

.tour-fact-value {
    font-size: 18px;
    color: #5e6b7a;
    line-height: 1.7;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: #ffffff;
    color: #142133;
    border: none;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 20px;
    font-weight: 700;
}

.faq-question:hover {
    background: #ffffff;
    transform: none;
}

.faq-icon {
    font-size: 28px;
    color: #052e61;
    line-height: 1;
    margin-left: 20px;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 28px 24px;
}

.faq-answer p {
    color: #5e6b7a;
    font-size: 17px;
    line-height: 1.8;
    max-width: 70ch;
}

.tour-details-cta {
    margin-top: 28px;
    padding: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 28px;
}

.tour-details-cta__content {
    max-width: 700px;
}

.tour-details-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
}

.trust-bar-footer {
    text-align: center;
    margin-bottom: 28px;
}

.tour-details-inline-link {
    color: #052e61;
    font-weight: 700;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.tour-details-inline-link:hover {
    opacity: 1;
    transform: translateY(-1px);
}

@media (max-width: 1100px) {
    .tour-details-hero,
    .tour-route-layout,
    .tour-facts-grid {
        grid-template-columns: 1fr;
    }

    .tour-details-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .tour-details-cta__actions {
        justify-content: flex-start;
    }

    .tour-route-meeting {
        grid-template-columns: auto 1fr;
    }

    .tour-route-map-link {
        grid-column: 2 / -1;
        justify-self: start;
    }
}

@media (max-width: 900px) {
    .tour-value-grid,
    .tour-experience-grid {
        grid-template-columns: 1fr;
    }

    .tour-details-hero__content,
    .tour-details-hero__card,
    .tour-route-card,
    .tour-facts-card,
    .tour-details-cta {
        padding: 24px 20px;
    }

    .tour-route-meeting {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .tour-route-map-link {
        grid-column: auto;
    }

    .tour-fact-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .tour-details-hero__lead {
        font-size: 22px;
        max-width: none;
    }

    .tour-details-hero__text {
        font-size: 17px;
        max-width: none;
    }
}

@media (max-width: 1100px) {
    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-booking-card,
    .home-hero {
        min-height: auto;
    }
}

@media (max-width: 900px) {
    .home-hero {
        padding: 28px 22px;
        min-height: 620px;
    }

    .home-hero__overlay {
        background:
            linear-gradient(180deg, rgba(5, 46, 97, 0.22) 0%, rgba(5, 46, 97, 0.74) 100%);
    }

    .home-hero h1,
    .home-hero .hero-subtitle,
    .home-hero .hero-text {
        max-width: none;
    }

    .trust-bar,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .hero-booking-card {
        padding: 24px 20px;
    }

    .tour-details-hero__content {
        grid-template-columns: 1fr;
    }

    .tour-details-hero__image {
        min-height: 320px;
    }
}

.tour-story-layout {
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 20px;
    align-items: stretch;
}

.tour-story-image,
.tour-gallery-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.tour-story-image img,
.tour-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-story-image {
    min-height: 520px;
}

.tour-story-content {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-story-divider {
    height: 1px;
    background: #e7edf4;
    margin: 28px 0;
}

.tour-experience-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
}

.tour-experience-item {
    padding-top: 18px;
    border-top: 1px solid #eef1f5;
}

.tour-experience-item:first-child {
    padding-top: 0;
    border-top: none;
}

.tour-experience-item h3 {
    color: #052e61;
    font-size: 24px;
    line-height: 1.2;
    margin: 0 0 10px;
}

.tour-experience-item p {
    color: #5e6b7a;
    font-size: 17px;
    line-height: 1.7;
}

.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tour-gallery-card {
    min-height: 280px;
}

.tour-meeting-image {
    margin-top: 18px;
    max-width: 240px;
}

@media (max-width: 1100px) {
    .tour-story-layout,
    .tour-gallery-grid {
        grid-template-columns: 1fr;
    }

    .tour-story-image {
        min-height: 420px;
    }

    .tour-gallery-card {
        min-height: 240px;
    }
}

.success-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.success-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.success-header {
    margin-bottom: 30px;
}

.success-subtext {
    font-size: 18px;
    color: #5e6b7a;
}

.success-body {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 28px;
    margin-top: 20px;
}

.success-body--single {
    grid-template-columns: 1fr;
}

.success-main h2 {
    margin-bottom: 18px;
}

.success-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.success-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.success-step span {
    background: #052e61;
    color: white;
    font-weight: 700;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.success-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 800;
    text-decoration: none;
    border: 0;
    cursor: pointer;
}

.btn-primary {
    background: #052e61;
    color: #ffffff;
}

.btn-secondary {
    background: #e2e8f0;
    color: #052e61;
}

.booking-summary-card {
    background: #f8fafc;
    border: 1px solid #e5ebf2;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 22px;
}

.booking-summary-card p {
    margin: 0 0 10px;
    color: #4b5a6a;
}

.booking-summary-card p:last-child {
    margin-bottom: 0;
}

.success-side {
    background: #f7f9fc;
    border-radius: 16px;
    overflow: hidden;
}

.success-side img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.success-side-content {
    padding: 18px;
}

.success-side-content h3 {
    margin-bottom: 10px;
}

.success-side-content ul {
    margin-top: 10px;
    padding-left: 0;
    list-style: none;
}

.success-side-content li {
    margin-bottom: 6px;
    font-size: 15px;
}

.success-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eef1f5;
}

.success-footer a {
    display: inline-block;
    margin-top: 10px;
    color: #052e61;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 900px) {
    .success-body {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    text-align: center;
    padding: 24px 20px 36px;
    color: #5e6b7a;
    font-size: 15px;
}

.site-footer p {
    margin-bottom: 8px;
}

.site-footer__links {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.site-footer__links a {
    color: #052e61;
    font-weight: 700;
    text-decoration: none;
}

.site-footer__links a:hover {
    opacity: 0.75;
}

.hero-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(1rem, 2.2vw, 1.35rem);
    transition: opacity 0.2s ease;
}

.hero-reviews-link:hover {
    opacity: 0.85;
}

.hero-stars {
    color: #f5c542;
    letter-spacing: 2px;
}

.tour-highlights-section {
    display: grid;
    grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.35fr);
    gap: 20px;
    align-items: stretch;
    margin-top: 28px;
}

.tour-highlights-content,
.tour-highlights-video {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.tour-highlights-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tour-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 18px;
}

.tour-highlight-list li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: center;
    color: #142133;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
}

.tour-highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #eef3f8;
    color: #052e61;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tour-highlight-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.tour-highlights-video {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.tour-highlights-video .joe-video {
    max-width: 500px;
    max-height: 420px;
    object-fit: contain;
}

.meet-guide-section {
    margin-top: 28px;
}

.meet-guide-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.05fr 0.95fr;
    gap: 20px;
    align-items: stretch;
}

.joe-signature-div {
    display: flex;
    justify-content: center;
}

.meet-guide-image,
.meet-guide-content,
.meet-guide-video,
.meet-guide-reviews {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
    overflow: hidden;
}

.meet-guide-image img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.meet-guide-content {
    padding: 32px;
    text-align: center;
}

.meet-guide-content p {
    color: #5e6b7a;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.meet-guide-signature {
    display: block;
    margin-top: 20px;
    width: 160px;
    max-width: 100%;
    height: auto;
}

.meet-guide-video {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meet-guide-video-link {
    min-height: 180px;
    border-radius: 18px;
    background: #f3f6fb;
    border: 1px solid #d9e1ea;
    color: #052e61;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    margin-bottom: 18px;
}

.meet-guide-play {
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #052e61;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.meet-guide-video p {
    color: #5e6b7a;
    font-size: 17px;
    text-align: center;
}

.meet-guide-reviews {
    padding: 22px;
    display: grid;
    gap: 14px;
    align-content: center;
}

.review-card--stacked {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
    padding: 18px;
    border-radius: 18px;
}

.review-card--stacked .review-stars {
    margin-bottom: 10px;
}

.review-card--stacked .review-quote {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 10px;
}

.review-card--stacked .review-author {
    font-size: 14px;
}

.meet-guide-reviews-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    border-radius: 999px;
    background: #052e61;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    padding: 12px 18px;
}

.meet-guide-reviews-link:hover {
    background: #041f43;
}

@media (max-width: 1000px) {
    .tour-highlights-section,
    .meet-guide-grid {
        grid-template-columns: 1fr;
    }
}

.joe-video {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    display: block;
}

.tour-new-hero {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 42px;
    margin-bottom: 24px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.tour-new-hero .section-description {
    max-width: 760px;
    margin: 0 auto;
}

.tour-difference-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}

.tour-difference-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 26px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.tour-difference-icon {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #f3f6fb;
    color: #052e61;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.tour-difference-card h3 {
    color: #052e61;
    font-size: 21px;
    margin: 0 0 10px;
}

.tour-difference-card p {
    color: #5e6b7a;
    font-size: 16px;
}

.tour-image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.tour-image-card {
    border-radius: 22px;
    overflow: hidden;
    min-height: 240px;
    background: #ffffff;
    border: 1px solid #d9e1ea;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.tour-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tour-experience-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    gap: 20px;
    margin-bottom: 28px;
}

.tour-experience-main,
.tour-info-card,
.tour-faq-preview,
.tour-ready-section {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.tour-experience-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tour-experience-list li {
    position: relative;
    padding-left: 34px;
    color: #5e6b7a;
    font-size: 18px;
    line-height: 1.6;
}

.tour-experience-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #052e61;
    font-weight: 800;
}

.tour-info-card {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tour-info-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
}

.tour-info-item span {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #f3f6fb;
    color: #052e61;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.tour-info-item h3 {
    color: #052e61;
    font-size: 22px;
    margin: 0 0 6px;
}

.tour-info-item p {
    color: #5e6b7a;
    font-size: 16px;
}

.tour-faq-preview {
    margin-bottom: 28px;
}

.tour-faq-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.tour-ready-section {
    display: grid;
    grid-template-columns: 0.9fr 1.2fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.tour-page-booking-card {
    width: 100%;
    max-width: 700px;
}

.tour-ready-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
}

@media (max-width: 1200px) {
    .tour-ready-section {
        grid-template-columns: 1fr;
    }

    .tour-page-booking-card,
    .tour-ready-image {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    .tour-ready-content {
        text-align: center;
    }
}

@media (max-width: 900px) {
    .tour-difference-grid,
    .tour-image-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tour-experience-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .tour-difference-grid,
    .tour-image-grid {
        grid-template-columns: 1fr;
    }

    .tour-image-card {
        min-height: 220px;
    }
}

.booking-new-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 24px;
    align-items: stretch;
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 34px;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.booking-new-hero > div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-new-hero-image {
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
}

.booking-new-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.booking-new-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    gap: 20px;
    align-items: start;
}

.booking-new-form-card,
.booking-new-summary {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.booking-new-form-card {
    padding: 34px;
}

.booking-new-section + .booking-new-section {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid #eef1f5;
}

.booking-new-section-header {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 24px;
}

.booking-step-badge {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    background: #052e61;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
}

.booking-new-section-header h2 {
    margin-bottom: 8px;
}

.booking-new-section-header p {
    color: #5e6b7a;
    font-size: 17px;
}

.booking-new-time-buttons {
    margin-bottom: 0;
}

.booking-new-time-buttons .time-btn {
    border-radius: 16px;
    padding: 16px 18px;
}

.booking-new-submit-area {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.booking-new-submit-area .booking-submit-note {
    margin-top: 0;
}

.booking-new-summary {
    padding: 30px;
    position: sticky;
    top: 28px;
}

.booking-summary-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-top: 24px;
}

.booking-summary-item {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 16px;
    align-items: start;
}

.booking-summary-item span {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #f3f6fb;
    color: #052e61;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
}

.booking-summary-item h3 {
    color: #052e61;
    font-size: 21px;
    margin: 0 0 6px;
}

.booking-summary-item p {
    color: #5e6b7a;
    font-size: 16px;
}

.booking-summary-link {
    width: 100%;
    margin-top: 28px;
}

@media (max-width: 1100px) {
    .booking-new-hero,
    .booking-new-layout {
        grid-template-columns: 1fr;
    }

    .booking-new-summary {
        position: static;
    }
}

@media (max-width: 700px) {
    .booking-new-hero,
    .booking-new-form-card,
    .booking-new-summary {
        padding: 24px 20px;
    }

    .booking-new-section-header {
        grid-template-columns: 1fr;
    }

    .booking-step-badge {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }

    .booking-new-hero-image {
        min-height: 220px;
    }
}

.guru-reviews-page {
    max-width: 1180px;
    margin: 0 auto;
}

.guru-reviews-header {
    margin-bottom: 34px;
}

.guru-reviews-header h1 {
    max-width: 980px;
    font-size: clamp(34px, 4vw, 52px);
}

.guru-reviews-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.guru-rating-summary {
    position: sticky;
    top: 28px;
}

.guru-rating-score {
    font-size: 64px;
    line-height: 1;
    color: #142133;
    margin-bottom: 8px;
}

.guru-rating-stars,
.guru-review-stars {
    color: #f2b705;
    letter-spacing: 4px;
    font-size: 22px;
    white-space: nowrap;
}

.guru-rating-summary p {
    color: #5e6b7a;
    font-size: 15px;
    margin-top: 8px;
}

.guru-rating-bars {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.guru-rating-bars div {
    display: grid;
    grid-template-columns: 120px 1fr 42px;
    gap: 12px;
    align-items: center;
    font-size: 14px;
    color: #5e6b7a;
}

.guru-rating-bars progress {
    width: 100%;
    height: 8px;
    appearance: none;
}

.guru-rating-bars progress::-webkit-progress-bar {
    background: #d9e1ea;
    border-radius: 999px;
}

.guru-rating-bars progress::-webkit-progress-value {
    background: #4a4f57;
    border-radius: 999px;
}

.guru-rating-bars strong {
    color: #142133;
    font-weight: 500;
}

.guru-review-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.guru-review-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 10px;
    padding: 22px;
    box-shadow: 0 4px 12px rgba(20, 33, 51, 0.06);
}

.guru-review-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.guru-review-person {
    display: flex;
    gap: 12px;
    align-items: center;
}

.guru-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #eef1f5;
    color: #5e6b7a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.guru-review-person h3 {
    margin: 0;
    color: #142133;
    font-size: 18px;
}

.guru-review-person p,
.guru-review-meta {
    color: #7a8694;
    font-size: 14px;
}

.guru-review-meta {
    margin-bottom: 8px;
}

.guru-review-text {
    color: #142133;
    font-size: 17px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .guru-reviews-layout {
        grid-template-columns: 1fr;
    }

    .guru-rating-summary {
        position: static;
        background: #ffffff;
        border: 1px solid #d9e1ea;
        border-radius: 22px;
        padding: 24px;
    }

    .guru-review-top {
        flex-direction: column;
    }
}

.reviews-section .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 0;
}

.reviews-section .review-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 26px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.reviews-section .review-stars {
    color: #dfbd69;
    font-size: 18px;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.reviews-section .review-quote {
    color: #142133;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.reviews-section .review-author {
    color: #5e6b7a;
    font-size: 15px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .reviews-section .reviews-grid {
        grid-template-columns: 1fr;
    }
}


.home-top-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    z-index: 13;
    min-width: 210px;
    padding: 10px;
    display: grid;
    gap: 4px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(217, 225, 234, 0.9);
    box-shadow: 0 18px 44px rgba(8, 20, 40, 0.24);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.home-top-menu a {
    color: #052e61;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 14px;
    border-radius: 12px;
}

.home-top-menu a:hover {
    background: #eef3f8;
    text-decoration: none;
}

.home-top-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .home-hero-actions {
        top: 18px;
        right: 18px;
        gap: 10px;
    }

    .hero-book-now {
        min-height: 46px;
        padding: 12px 16px;
    }

    .home-menu-toggle {
        width: 48px;
        height: 48px;
    }

    .home-top-menu a {
        font-size: 0.95rem;
    }

    .home-hero-logo {
        right: 18px;
        bottom: 18px;
        width: 100px;
    }

    .hero2-layout .home-hero {
        display: block;
        min-height: 720px;
    }

    .hero2-layout .home-hero__content {
        padding-top: 64px;
    }

    .hero2-layout .hero-reviews-link {
        font-size: 1.15rem;
        margin-bottom: 14px;
        padding: 6px 0;
    }
}

.blog-header {
    margin-bottom: 40px;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.blog-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.blog-date {
    color: #5e6b7a;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-excerpt {
    color: #5e6b7a;
    margin-bottom: 20px;
}

.blog-post {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-image {
    width: 100%;
    border-radius: 22px;
    margin-bottom: 32px;
}

.blog-post-content {
    font-size: 18px;
    line-height: 1.9;
    color: #142133;
}

.blog-post-content p {
    margin-bottom: 20px;
}

@media (max-width: 1000px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.login-panel {
    max-width: 560px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #d9e1ea;
    border-radius: 22px;
    padding: 38px;
    box-shadow: 0 10px 24px rgba(20, 33, 51, 0.05);
}

.login-panel h1 {
    font-size: clamp(38px, 5vw, 56px);
}

.login-form {
    margin-top: 28px;
}

.login-form button {
    width: 100%;
}

.reveal-section {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity 1.05s ease,
        transform 1.05s ease;
    will-change: opacity, transform;
}

.reveal-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .reveal-section {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.site-footer {
    background: #052e61;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-top: 80px;
}

.footer-signature {
    max-width: 180px;
    width: 100%;
    margin-bottom: 20px;
}

.footer-tagline {
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-copy {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 640px) {
    .has-site-home-logo .page-shell {
        margin-top: 86px;
    }

    .site-home-logo {
        width: 56px;
        height: 56px;
        left: 18px;
        top: 18px;
        border-radius: 16px;
    }

    .site-page-actions {
        top: 18px;
        right: 18px;
        gap: 10px;
    }

    .site-footer {
        margin-top: 48px;
        padding: 42px 22px;
    }

    .footer-tagline {
        margin-bottom: 22px;
    }

    .footer-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 18px;
        max-width: 340px;
        margin: 0 auto 24px;
    }

    .footer-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
    }
}

.dashboard-wrapper {
    width: 100%;
    max-width: none;
    margin: 0;
}

.dashboard-dark {
    min-height: 100vh;
    background: linear-gradient(135deg, #071d33 0%, #0b2a45 100%);
    padding: 48px 5vw;
}

.dashboard-dark h1,
.dashboard-dark h2,
.dashboard-dark h3,
.dashboard-dark h4 {
    color: #ffffff;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 32px;
}

.dashboard-header h1 {
    margin: 0;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 0.95;
}

.dashboard-header p,
.dashboard-section-header p,
.dashboard-tour-card p,
.dashboard-empty {
    color: rgba(255, 255, 255, 0.72);
}

.dashboard-pill-link,
.dashboard-card-button,
.dashboard-form button {
    border: 0;
    border-radius: 999px;
    padding: 12px 20px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    background: #ffffff;
    color: #071d33;
}

.dashboard-pill-link:hover,
.dashboard-card-button:hover,
.dashboard-form button:hover {
    background: var(--navy);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
}

.dashboard-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 24px;
}

.dashboard-stat-card,
.dashboard-section,
.dashboard-tour-card {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.dashboard-stat-card {
    padding: 24px;
}

.dashboard-stat-card span {
    display: block;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 10px;
}

.dashboard-stat-card strong {
    color: #ffffff;
    font-size: 36px;
}

.dashboard-section {
    padding: 28px;
    margin-bottom: 24px;
}

.dashboard-section-header,
.dashboard-tour-card-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-start;
}

.dashboard-section h2 {
    margin: 0;
    font-size: 34px;
}

.dashboard-form {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 0.8fr auto;
    gap: 14px;
    align-items: end;
    margin-top: 22px;
}

.dashboard-form label {
    display: block;
    margin-bottom: 7px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.78);
}

.dashboard-form input,
.dashboard-form select {
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid transparent;
    background: #ffffff;
    color: #071d33;
}

.dashboard-form--availability {
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr auto;
}

.dashboard-form--close {
    grid-template-columns: 1fr 1fr auto;
}

.dashboard-tour-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.dashboard-tour-card {
    padding: 24px;
}

.dashboard-date {
    display: inline-block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-weight: 800;
}

.dashboard-tour-card h3 {
    margin: 0;
    font-size: 28px;
}

.dashboard-status {
    border-radius: 999px;
    padding: 7px 13px;
    font-size: 13px;
    font-weight: 800;
}

.dashboard-status.open {
    background: #dcfce7;
    color: #166534;
}

.dashboard-status.blocked {
    background: #fee2e2;
    color: #991b1b;
}

.dashboard-tour-numbers {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 20px 0;
}

.dashboard-tour-numbers div {
    background: rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    padding: 16px;
}

.dashboard-tour-numbers span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    margin-bottom: 6px;
}

.dashboard-tour-numbers strong {
    color: #ffffff;
    font-size: 28px;
}

.dashboard-guest-list {
    margin: 18px 0 22px;
}

.dashboard-guest-list h4 {
    margin: 0 0 12px;
}

.dashboard-guest-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: white;
}

.dashboard-guest-row span {
    display: block;
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    margin-top: 3px;
}

.dashboard-guest-row em {
    font-style: normal;
    color: rgba(255, 255, 255, 0.76);
    white-space: nowrap;
}

.dashboard-card-button {
    width: 100%;
    justify-content: center;
}

.dashboard-messages {
    background: #dcfce7;
    color: #166534;
    padding: 14px 18px;
    border-radius: 16px;
    margin-bottom: 24px;
}

.dashboard-cancellation-alert {
    background: #fff7ed;
    color: #7c2d12;
    border: 1px solid #fed7aa;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}

.dashboard-cancellation-alert h2 {
    color: #7c2d12;
}

.dashboard-cancellation-alert p {
    color: #9a3412;
}

.dashboard-cancellation-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.dashboard-cancellation-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    background: #ffffff;
    border-radius: 18px;
    padding: 16px;
}

.dashboard-cancellation-row strong,
.dashboard-cancellation-row span,
.dashboard-cancellation-row small {
    display: block;
}

.dashboard-cancellation-row strong {
    color: #7c2d12;
    margin-bottom: 4px;
}

.dashboard-cancellation-row span {
    color: #142133;
}

.dashboard-cancellation-row small {
    color: #6b7785;
    margin-top: 4px;
}

.dashboard-cancellation-row .dashboard-card-button {
    width: auto;
    min-width: 120px;
    background: #9a3412;
    color: #ffffff;
    box-shadow: none;
}

@media (max-width: 1000px) {
    .dashboard-dark {
        padding: 28px;
    }

    .dashboard-header,
    .dashboard-section-header,
    .dashboard-tour-card-header,
    .dashboard-guest-row,
    .dashboard-cancellation-row {
        flex-direction: column;
    }

    .dashboard-stats-grid,
    .dashboard-form,
    .dashboard-tour-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-next-tour-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    margin-top: 22px;
}

.dashboard-next-tour-main,
.dashboard-next-tour-guests {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    padding: 24px;
    color: white;
}

.dashboard-next-tour-main h3 {
    font-size: 56px;
    line-height: 1;
    margin: 8px 0;
}

.dashboard-next-tour-guests h4 {
    margin-top: 0;
}

.dashboard-month-group {
    margin-top: 32px;
}

.dashboard-month-group > h3 {
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dashboard-tour-card--compact {
    padding: 18px;
}

.dashboard-tour-card--compact h3 {
    font-size: 24px;
}

.dashboard-compact-guests {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 14px 0;
}

.dashboard-compact-guests span {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 13px;
}

@media (max-width: 900px) {
    .dashboard-next-tour-card {
        grid-template-columns: 1fr;
    }
}

.dashboard-month-group summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.dashboard-month-group summary::-webkit-details-marker {
    display: none;
}

.dashboard-month-group summary h3 {
    margin: 0;
}

.dashboard-month-group summary span {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 800;
}

.dashboard-month-group summary span {
    background: #ffffff;
    color: #071d33;
}

.dashboard-compact-guests span {
    background: #ffffff;
    color: #071d33;
    font-weight: 800;
}
