:root {
    --brand-night: #08111f;
    --brand-forest: #0f5132;
    --brand-mist: #edf6f2;
    --brand-glow: #ffc971;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background:
        radial-gradient(circle at top, rgba(87, 124, 184, 0.12), transparent 32%),
        linear-gradient(180deg, #eef3fb 0%, #f9fbff 42%, #edf2f8 100%);
    color: #0f172a;
}

.font-display {
    font-family: "Cormorant Garamond", serif;
}

.site-shell {
    min-height: 100vh;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(14px);
    background: rgba(245, 248, 253, 0.84);
    border-bottom: 1px solid rgba(127, 151, 184, 0.18);
}

.site-header__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 1.25rem;
}

.site-header__brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.site-header__menu-button {
    align-items: center;
    justify-content: center;
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 0.85rem;
    border: 1px solid rgba(114, 140, 176, 0.18);
    color: #24466f;
    background: rgba(255, 255, 255, 0.7);
}

.site-header__dropdown {
    border: 1px solid rgba(127, 151, 184, 0.18);
    background: rgba(255, 255, 255, 0.98);
}

.site-header__brand-link {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.site-header__brand-logo-slot {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4.1rem;
    height: 4.1rem;
    border-radius: 1.2rem;
    border: 1px dashed rgba(120, 145, 181, 0.45);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 251, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header__brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f3d497, #c8934f);
    color: #17304f;
    box-shadow: 0 10px 24px rgba(94, 121, 158, 0.16);
}

.site-header__brand-copy {
    min-width: 0;
}

.site-header__brand-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    line-height: 1;
    color: #203c63;
}

.site-header__brand-company {
    margin: 0.18rem 0 0;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(35, 61, 98, 0.58);
}

.site-header__nav {
    justify-content: center;
}

.site-header__nav-list {
    display: flex;
    align-items: center;
    gap: 1.85rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__nav-link {
    position: relative;
    display: inline-block;
    padding: 0.35rem 0;
    font-size: 0.96rem;
    font-weight: 500;
    color: #35547c;
    text-decoration: none;
    transition: color 180ms ease;
}

.site-header__nav-link:hover,
.site-header__nav-link.is-active {
    color: #173861;
}

.site-header__nav-link.is-active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.25rem;
    border-top: 2px solid #2f5d96;
}

.site-header__actions {
    display: flex;
    justify-content: flex-end;
}

.site-header__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.8rem 1.2rem;
    border-radius: 0.9rem;
    background: linear-gradient(180deg, #f7a97c, #f08f68);
    color: #12233c;
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(105, 138, 182, 0.16);
}

@media (min-width: 1024px) {
    .site-header__menu-button {
        display: none;
    }
}

.hero-panel,
.page-hero {
    position: relative;
    isolation: isolate;
    background: var(--brand-night);
}

.page-hero-frame {
    padding: 2.25rem 1rem 0;
}

.page-hero {
    max-width: 1080px;
    min-height: 23rem;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(108, 133, 170, 0.2);
    box-shadow: 0 30px 90px rgba(34, 62, 104, 0.18);
}

.hero-photo,
.page-hero-photo {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0.72;
    transform: scale(1.04);
}

.hero-overlay,
.page-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(2, 6, 23, 0.9) 0%, rgba(2, 6, 23, 0.55) 50%, rgba(16, 185, 129, 0.15) 100%),
        linear-gradient(180deg, rgba(2, 6, 23, 0.1), rgba(2, 6, 23, 0.78));
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.page-hero-title {
    max-width: 52rem;
    margin: 1rem 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
    color: #fff;
    text-shadow: 0 4px 18px rgba(22, 42, 77, 0.45);
}

.page-hero-copy {
    max-width: 42rem;
    margin-top: 1.25rem;
    font-size: 1.05rem;
    line-height: 1.95;
    color: rgba(255, 255, 255, 0.84);
}

.page-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.75rem 1.15rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: #173861;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(13, 29, 56, 0.14);
}

.glass-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
}

.section-wrap {
    padding: 5.5rem 0;
}

.page-shell {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1rem;
}

.page-card {
    border-radius: 2rem;
    border: 1px solid rgba(127, 151, 184, 0.16);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 249, 253, 0.98)),
        linear-gradient(180deg, #fff, #f7faff);
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.07);
}

.page-card-dark {
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
    box-shadow: 0 22px 70px rgba(2, 6, 23, 0.28);
}

.page-list-chip {
    border-radius: 1.25rem;
    background: rgba(240, 245, 251, 0.95);
    border: 1px solid rgba(127, 151, 184, 0.14);
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #415675;
}

.page-dark-chip {
    border-radius: 1.25rem;
    background: rgba(10, 20, 37, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
}

.page-section-heading {
    position: relative;
    margin: 0 auto 1.4rem;
    width: fit-content;
    padding: 0 1rem;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.05;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    color: #25518b;
    text-align: center;
}

.page-section-heading::before,
.page-section-heading::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18vw;
    max-width: 10rem;
    border-top: 1px solid rgba(95, 127, 171, 0.25);
}

.page-section-heading::before {
    right: 100%;
}

.page-section-heading::after {
    left: 100%;
}

.page-soft-section {
    border-top: 1px solid rgba(138, 164, 196, 0.28);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(244, 248, 253, 0.88)),
        linear-gradient(180deg, #f8fbff, #eff5fb);
}

.package-itinerary-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem 0.85rem 1.15rem;
    border-radius: 1rem;
    border: 1px solid rgba(127, 151, 184, 0.18);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(244,248,253,0.96));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}

.package-itinerary-copy p {
    margin: 0.3rem 0 0;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #425978;
}

.package-itinerary-day {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #315c93;
}

.package-itinerary-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.7rem;
    background: linear-gradient(180deg, #edf3fa, #d7e4f2);
    color: #254d85;
    font-weight: 800;
    border: 1px solid rgba(127, 151, 184, 0.2);
}

.package-section-illustrated {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.package-section-illustrated::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(246,249,253,0.94)), var(--package-backdrop);
    background-size: cover;
    background-position: center;
    opacity: 0.22;
    z-index: 0;
}

.package-section-illustrated > * {
    position: relative;
    z-index: 1;
}

.package-list-block {
    border-radius: 1.5rem;
    padding: 1.4rem;
    background: rgba(248, 251, 255, 0.94);
    border: 1px solid rgba(127, 151, 184, 0.14);
    backdrop-filter: blur(2px);
}

.package-list-block h3 {
    margin: 0;
    font-size: 1.4rem;
    color: #173861;
}

.package-list-block ul {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.package-list-block li {
    position: relative;
    padding-left: 1.8rem;
    margin: 0.8rem 0;
    font-size: 0.97rem;
    line-height: 1.7;
    color: #425978;
}

.package-list-block--included li::before,
.package-list-block--excluded li::before {
    position: absolute;
    left: 0;
    top: 0.05rem;
    font-weight: 900;
}

.package-list-block--included li::before {
    content: "✓";
    color: #2f7a4a;
}

.package-list-block--excluded li::before {
    content: "×";
    color: #b45309;
}

.package-price-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.package-price-card {
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(127, 151, 184, 0.14);
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,249,253,0.94));
    text-align: center;
}

.package-price-label {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #5e7fa8;
}

.package-price-card h3 {
    margin: 0.55rem 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: #d27524;
    line-height: 1;
}

.package-price-card p {
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #516783;
}

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

.package-route-card {
    margin: 0;
}

.package-route-card img {
    width: 100%;
    height: 11rem;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(127, 151, 184, 0.14);
    box-shadow: 0 12px 28px rgba(34, 62, 104, 0.1);
}

.package-route-card figcaption {
    margin-top: 0.65rem;
    font-size: 0.92rem;
    line-height: 1.5;
    color: #365377;
    text-align: center;
}

.package-summary-card__hero {
    position: relative;
    min-height: 20rem;
    background-size: cover;
    background-position: center;
    isolation: isolate;
}

.package-summary-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(21, 43, 76, 0.2), rgba(16, 29, 52, 0.62));
}

.package-summary-card__hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    color: #fff;
}

.package-summary-card__hero-content h2 {
    max-width: 32rem;
    margin: 1rem 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 0.95;
    text-shadow: 0 4px 18px rgba(15, 28, 48, 0.42);
}

.package-summary-card__hero-content p {
    max-width: 34rem;
    margin: 1rem 0 0;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.package-summary-card__body {
    padding: 2rem;
}

.package-summary-card__intro {
    display: grid;
    gap: 1rem;
    align-items: end;
    grid-template-columns: 0.8fr 1.2fr;
}

.package-summary-card__title {
    margin: 0.8rem 0 0;
    font-size: 1.5rem;
    line-height: 1.15;
    color: #173861;
}

.package-summary-card__overview {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #4b607e;
}

.package-summary-card__route-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.package-summary-card__route-card {
    margin: 0;
}

.package-summary-card__route-card img {
    width: 100%;
    height: 8.5rem;
    object-fit: cover;
    border-radius: 1rem;
    border: 1px solid rgba(127, 151, 184, 0.14);
}

.package-summary-card__route-card figcaption {
    margin-top: 0.55rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #365377;
    text-align: center;
}

.package-summary-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem;
}

.package-summary-grid {
    display: grid;
    gap: 1.5rem;
}

.package-summary-grid--compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.package-summary-card--compact .package-summary-card__hero {
    min-height: 13.5rem;
}

.package-summary-card--compact .package-summary-card__hero-content {
    padding: 1.3rem;
}

.package-summary-card--compact .package-summary-card__hero-content h2 {
    max-width: 14rem;
    font-size: clamp(2rem, 3vw, 2.9rem);
}

.package-summary-card--compact .package-summary-card__hero-content p {
    margin-top: 0.8rem;
    font-size: 0.92rem;
    line-height: 1.65;
}

.package-summary-card--compact .package-summary-card__body {
    padding: 1.2rem;
}

.package-summary-card--compact .package-summary-card__intro {
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.package-summary-card--compact .package-summary-card__title {
    font-size: 1.25rem;
}

.package-summary-card--compact .package-summary-card__overview {
    font-size: 0.93rem;
    line-height: 1.7;
}

.package-summary-card--compact .package-price-grid--summary {
    gap: 0.75rem;
}

.package-summary-card--compact .package-price-card {
    padding: 1rem;
}

.package-summary-card--compact .package-price-card h3 {
    font-size: 1.2rem;
}

.package-summary-card--compact .page-list-chip {
    padding: 0.95rem 1rem;
}

.package-summary-card--compact .package-summary-card__route-card img {
    height: 6.5rem;
}

.package-summary-card--compact .package-summary-card__actions {
    gap: 0.75rem;
}

.package-summary-card--compact .home-btn {
    flex: 1 1 0;
    min-height: 2.8rem;
    padding: 0.72rem 1rem;
}

.package-cta-bar {
    padding: 1.6rem 1.6rem 1.3rem;
    border-radius: 1.7rem;
    background: linear-gradient(180deg, #ff8d1e, #ef6a0a);
    box-shadow: 0 24px 60px rgba(214, 113, 25, 0.28);
    text-align: center;
    color: #fff9f1;
}

.package-cta-bar .eyebrow {
    color: rgba(255, 247, 230, 0.8);
}

.package-cta-bar h2 {
    margin: 0.7rem 0 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    line-height: 0.95;
}

.package-cta-bar p {
    max-width: 48rem;
    margin: 0.9rem auto 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: rgba(255, 247, 230, 0.9);
}

.package-cta-bar__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.3rem;
}

.package-cta-bar__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: min(100%, 22rem);
    min-height: 3.35rem;
    padding: 0.9rem 1.4rem;
    border-radius: 0.8rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.08));
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1.02rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.package-cta-bar__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.35rem;
    padding: 0.9rem 1rem;
    color: rgba(255, 249, 241, 0.88);
    text-decoration: none;
    font-weight: 700;
}

.mountain-tint {
    background:
        radial-gradient(circle at top left, rgba(16, 185, 129, 0.12), transparent 30%),
        linear-gradient(180deg, #eef7f2 0%, #ffffff 100%);
}

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #0f766e;
}

.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.35rem, 5vw, 3.8rem);
    line-height: 0.95;
    color: #0f172a;
}

.section-copy {
    max-width: 42rem;
    font-size: 1rem;
    line-height: 1.95;
    color: #475569;
}

.feature-card {
    border-radius: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.07);
}

.package-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    padding: 2rem;
    box-shadow: 0 24px 80px rgba(15, 23, 42, 0.07);
}

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

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.8rem;
    box-shadow: 0 30px 90px rgba(15, 23, 42, 0.18);
}

.gallery-tall {
    grid-row: span 2;
    min-height: 35rem;
}

.gallery-small {
    min-height: 17rem;
}

.gallery-wide {
    grid-column: span 2;
    min-height: 16rem;
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
}

.timeline-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #10b981, #fbbf24);
    color: #08111f;
    font-weight: 800;
}

.profile-bar {
    display: flex;
    align-items: center;
    min-height: 3.5rem;
    border-radius: 999px;
    background: linear-gradient(90deg, #10b981, #0f766e);
    padding: 0 1.25rem;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 18px 50px rgba(15, 118, 110, 0.2);
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 700ms ease, transform 700ms ease;
}

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

.home-reference-wrap {
    padding: 2.5rem 1rem 0;
}

.home-reference-shell {
    max-width: 1080px;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(108, 133, 170, 0.2);
    background:
        linear-gradient(180deg, rgba(235, 242, 251, 0.9), rgba(245, 249, 255, 0.96)),
        linear-gradient(180deg, #eff4fb, #f7faff);
    box-shadow: 0 30px 90px rgba(34, 62, 104, 0.18);
}

.home-hero {
    position: relative;
    min-height: 25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 1.5rem;
    isolation: isolate;
}

.home-hero-photo,
.cta-landscape-photo {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(49, 84, 132, 0.22), rgba(32, 58, 95, 0.28));
}

.home-hero-content,
.cta-landscape-content {
    position: relative;
    z-index: 1;
}

.home-hero-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.75rem, 5vw, 4.6rem);
    line-height: 1;
    color: #fff;
    text-shadow: 0 4px 18px rgba(22, 42, 77, 0.45);
}

.home-hero-subtitle {
    margin-top: 1rem;
    font-size: clamp(1.1rem, 2vw, 1.7rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.94);
    text-shadow: 0 3px 10px rgba(22, 42, 77, 0.35);
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.25rem;
    padding: 0.85rem 2rem;
    border-radius: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(31, 62, 110, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.home-btn:hover {
    transform: translateY(-1px);
    opacity: 0.96;
}

.home-btn-light {
    background: linear-gradient(180deg, #8fa7c6, #667fa3);
    color: #fff;
}

.home-btn-dark {
    background: linear-gradient(180deg, #254d85, #173861);
    color: #fff;
}

.home-btn-gold {
    background: linear-gradient(180deg, #d5b06d, #ab7a2f);
    color: #fffaf0;
    border-color: rgba(255, 242, 210, 0.3);
}

.home-btn-small {
    min-height: 2.7rem;
    padding: 0.7rem 1.4rem;
    font-size: 0.95rem;
}

.home-panel {
    position: relative;
    padding: 1.65rem 1.9rem 2rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(244, 248, 253, 0.88)),
        linear-gradient(180deg, #f8fbff, #eff5fb);
    border-top: 1px solid rgba(138, 164, 196, 0.28);
}

.mockup-section-title {
    position: relative;
    margin: 0 auto 1.4rem;
    width: fit-content;
    padding: 0 1rem;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.05;
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    color: #25518b;
    text-align: center;
}

.mockup-section-title::before,
.mockup-section-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18vw;
    max-width: 10rem;
    border-top: 1px solid rgba(95, 127, 171, 0.25);
}

.mockup-section-title::before {
    right: 100%;
}

.mockup-section-title::after {
    left: 100%;
}

.why-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
}

.why-item {
    padding: 1rem 0.75rem 0.5rem;
    text-align: center;
    border-right: 1px solid rgba(111, 142, 183, 0.18);
}

.why-item:last-child {
    border-right: 0;
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.3rem;
    height: 3.3rem;
    color: #5d7faa;
}

.why-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 1.8;
}

.why-item h3 {
    margin: 0.4rem auto 0;
    max-width: 9rem;
    font-size: 1rem;
    line-height: 1.35;
    color: #294a78;
    font-weight: 700;
}

.journey-grid,
.highlights-grid,
.review-grid {
    display: grid;
    gap: 1.2rem;
}

.journey-card {
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(118, 148, 189, 0.26);
    box-shadow: 0 12px 28px rgba(67, 97, 140, 0.12);
}

.journey-card-image {
    position: relative;
    min-height: 14rem;
    background-position: center;
    background-size: cover;
}

.journey-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(45, 78, 125, 0.1), rgba(20, 36, 62, 0.35));
}

.journey-card-heading {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding-top: 1rem;
    color: #fff;
    text-shadow: 0 3px 12px rgba(19, 34, 56, 0.48);
}

.journey-card-heading span {
    font-size: 0.95rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 800;
}

.journey-card-heading strong {
    max-width: 12rem;
    margin-top: 0.3rem;
    font-size: 2.1rem;
    line-height: 0.95;
    font-family: "Cormorant Garamond", serif;
}

.journey-card-body {
    padding: 1rem 1rem 1.2rem;
    text-align: center;
}

.journey-card-body p {
    min-height: 4.6rem;
    margin: 0 0 1rem;
    font-size: 0.96rem;
    line-height: 1.55;
    color: #314869;
}

.highlights-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.highlight-tile {
    text-align: center;
}

.highlight-tile img {
    width: 100%;
    height: 10.5rem;
    object-fit: cover;
    border: 1px solid rgba(118, 148, 189, 0.22);
}

.highlight-tile h3 {
    margin: 0.8rem 0 0;
    font-size: 1rem;
    line-height: 1.35;
    color: #294a78;
    font-weight: 700;
}

.photo-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
    max-width: 52rem;
    margin: 0 auto;
    padding: 0.3rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(118, 148, 189, 0.18);
}

.photo-band img {
    width: 100%;
    height: 8.5rem;
    object-fit: cover;
}

.home-center-action {
    margin-top: -1rem;
    text-align: center;
}

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

.review-bubble {
    position: relative;
    min-height: 13rem;
    padding: 1.4rem 1.2rem 1.6rem;
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(247,250,255,0.92));
    border-radius: 0.85rem;
    box-shadow: 0 16px 32px rgba(66, 93, 131, 0.12);
}

.review-bubble::after {
    content: "";
    position: absolute;
    left: 2.5rem;
    bottom: -16px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 18px solid rgba(247,250,255,0.96);
}

.review-stars {
    color: #d59d2e;
    letter-spacing: 0.2em;
    font-size: 1rem;
}

.review-bubble p {
    margin: 0.9rem 0 0;
    color: #344968;
    font-size: 0.98rem;
    line-height: 1.7;
}

.cta-landscape {
    position: relative;
    min-height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    isolation: isolate;
}

.cta-landscape-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(18, 40, 72, 0.36), rgba(10, 28, 54, 0.64));
}

.cta-landscape-content p {
    margin: 0;
    font-size: clamp(1.8rem, 3vw, 2.9rem);
    line-height: 1.15;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    color: #fff;
    text-shadow: 0 3px 14px rgba(9, 20, 38, 0.45);
}

.cta-landscape-content .home-btn {
    margin-top: 1.5rem;
}

.site-footer {
    margin-top: 0;
    background:
        linear-gradient(180deg, rgba(9, 20, 37, 0.96), rgba(6, 15, 29, 1)),
        linear-gradient(180deg, #08111f, #0a1628);
    color: #fff;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 1.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
    gap: 2.5rem;
}

.site-footer__brand {
    max-width: 24rem;
}

.site-footer__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-footer__logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #f2d08a, #c08a3d);
    color: #10223d;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.site-footer__company {
    margin-top: 0.35rem;
    font-size: 0.76rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.site-footer__description {
    margin: 1.2rem 0 0;
    font-size: 0.96rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__license {
    margin-top: 1rem;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
}

.site-footer__title {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.46);
}

.site-footer__links,
.site-footer__contact {
    list-style: none;
    margin: 1rem 0 0;
    padding: 0;
}

.site-footer__links li,
.site-footer__contact li {
    margin: 0.72rem 0;
}

.site-footer__links a,
.site-footer__contact a,
.site-footer__social a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 180ms ease;
}

.site-footer__links a:hover,
.site-footer__contact a:hover,
.site-footer__social a:hover {
    color: #fff;
}

.site-footer__contact li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.2rem;
    font-size: 0.92rem;
}

.site-footer__cta {
    margin-top: 1.4rem;
}

.site-footer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.8rem;
    padding: 0.75rem 1.2rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #f2b37d, #de7c53);
    color: #14243d;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.site-footer__bottom {
    margin-top: 2.6rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

@media (max-width: 1023px) {
    .site-header__menu-button {
        display: inline-flex;
    }

    .site-header__inner {
        grid-template-columns: auto 1fr auto;
        gap: 1rem;
        padding: 0.85rem 1rem;
    }

    .site-header__brand-title {
        font-size: 1.3rem;
    }

    .section-wrap {
        padding: 4.5rem 0;
    }

    .page-hero-content {
        padding: 3.2rem 2rem;
    }

    .why-strip,
    .highlights-grid,
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .package-summary-grid--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-item {
        border-right: 0;
        border-bottom: 1px solid rgba(111, 142, 183, 0.18);
    }

    .photo-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-route-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .package-summary-card__intro {
        grid-template-columns: 1fr;
    }

    .package-summary-card__route-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .site-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .site-header__inner {
        gap: 0.75rem;
        padding: 0.8rem 0.85rem;
    }

    .site-header__brand-mark {
        width: 2.5rem;
        height: 2.5rem;
    }

    .site-header__brand-logo-slot {
        width: 3.35rem;
        height: 3.35rem;
        border-radius: 1rem;
    }

    .site-header__brand-title {
        font-size: 1.15rem;
    }

    .site-header__brand-company {
        font-size: 0.62rem;
        letter-spacing: 0.12em;
    }

    .page-hero-frame {
        padding: 1rem 0 0;
    }

    .page-hero {
        border-left: 0;
        border-right: 0;
    }

    .page-hero-content {
        padding: 2.6rem 1.1rem;
    }

    .page-hero-title {
        font-size: 2.55rem;
    }

    .page-hero-badges {
        gap: 0.55rem;
    }

    .page-hero-badge {
        min-height: 2.45rem;
        padding: 0.65rem 1rem;
        font-size: 0.82rem;
    }

    .page-section-heading::before,
    .page-section-heading::after {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-tall,
    .gallery-small,
    .gallery-wide {
        grid-column: auto;
        grid-row: auto;
        min-height: 16rem;
    }

    .home-reference-wrap {
        padding: 1rem 0 0;
    }

    .home-reference-shell {
        border-left: 0;
        border-right: 0;
    }

    .home-panel {
        padding: 1.35rem 1rem 1.6rem;
    }

    .why-strip,
    .highlights-grid,
    .review-grid,
    .photo-band,
    .package-price-grid,
    .package-route-grid,
    .package-summary-card__route-strip,
    .package-summary-grid--compact {
        grid-template-columns: 1fr;
    }

    .package-itinerary-row {
        grid-template-columns: 1fr;
    }

    .package-itinerary-badge {
        display: none;
    }

    .mockup-section-title::before,
    .mockup-section-title::after {
        display: none;
    }

    .journey-card-image {
        min-height: 12rem;
    }

    .highlight-tile img,
    .photo-band img {
        height: 12rem;
    }

    .review-bubble {
        min-height: auto;
    }

    .site-footer__inner {
        padding: 2.4rem 1rem 1.2rem;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}
