:root {
    --ink: #0a3039;
    --ink-2: #31515a;
    --teal: #18b7bb;
    --teal-dark: #078e95;
    --teal-soft: #e7f8f7;
    --gold: #d59c19;
    --gold-soft: #fff3ce;
    --paper: #fff;
    --sand: #f5f3ed;
    --line: #dfe9e8;
    --danger: #d84d5b;
    --shadow: 0 24px 70px rgba(8, 49, 58, .12);
    --shadow-sm: 0 12px 36px rgba(8, 49, 58, .1);
    --radius: 24px;
    --radius-sm: 16px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.lightbox-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

svg {
    width: 1.25em;
    height: 1.25em;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: #fff;
    transition: background .3s ease, box-shadow .3s ease, color .3s ease, transform .3s ease;
}

.site-header.scrolled,
body:not(:has(.hero, .page-hero, .detail-hero)) .site-header {
    color: var(--ink);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 35px rgba(8, 48, 57, .08);
    backdrop-filter: blur(18px);
}

.header-inner {
    height: 92px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
}

.brand-crop {
    width: 128px;
    height: 80px;
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
}

.brand-crop img {
    position: absolute;
    width: 251px;
    max-width: none;
    height: 251px;
    object-fit: contain;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: auto;
}

.desktop-nav a {
    position: relative;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 750;
    letter-spacing: -.01em;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 5px;
    height: 2px;
    background: var(--gold);
    transition: right .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    right: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.phone-link svg {
    color: var(--gold);
}

.lang-switch {
    position: relative;
}

.lang-current {
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
    color: inherit;
    min-width: 66px;
    height: 43px;
    padding: 0 12px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-weight: 800;
}

.site-header.scrolled .lang-current {
    border-color: var(--line);
    background: #fff;
}

.lang-current svg {
    width: 14px;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    padding: 8px;
    min-width: 90px;
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    color: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-7px);
    transition: .2s ease;
}

.lang-switch.open .lang-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-menu a {
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 750;
}

.lang-menu a:hover {
    color: var(--teal-dark);
    background: var(--teal-soft);
}

.btn {
    min-height: 50px;
    padding: 0 22px;
    border: 0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    box-shadow: 0 14px 30px rgba(19, 180, 184, .25);
}

.btn-primary:hover {
    box-shadow: 0 18px 35px rgba(19, 180, 184, .32);
}

.btn-dark {
    color: #fff;
    background: var(--ink);
}

.btn-block {
    width: 100%;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    background: currentColor;
    border-radius: 3px;
    transition: .25s ease;
}

.mobile-menu {
    display: none;
}

.hero {
    min-height: 900px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 1s ease, transform 7s linear;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 32, 39, .82) 0%, rgba(5, 34, 41, .52) 48%, rgba(5, 34, 41, .22) 100%),
        linear-gradient(0deg, rgba(2, 29, 34, .8) 0%, transparent 52%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: .16;
    background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 0);
    background-size: 32px 32px;
    mask-image: linear-gradient(to right, black, transparent 72%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 125px;
}

.hero-copy {
    max-width: 850px;
    margin-bottom: 42px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--teal-dark);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 12px;
    font-weight: 850;
}

.eyebrow svg {
    color: var(--gold);
}

.eyebrow-light {
    color: rgba(255, 255, 255, .82);
}

.hero h1 {
    max-width: 820px;
    margin: 15px 0 16px;
    font-size: clamp(52px, 6.3vw, 92px);
    line-height: .98;
    letter-spacing: -.055em;
    text-wrap: balance;
}

.hero-copy > p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, .84);
    font-size: 20px;
}

.search-panel {
    position: relative;
    width: 100%;
    color: var(--ink);
}

.search-tabs {
    display: flex;
    width: max-content;
    max-width: 100%;
    overflow: auto;
    scrollbar-width: none;
}

.search-tabs::-webkit-scrollbar {
    display: none;
}

.search-tabs a {
    min-height: 60px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, .78);
    background: rgba(7, 42, 49, .6);
    border-right: 1px solid rgba(255, 255, 255, .08);
    white-space: nowrap;
    font-weight: 800;
    backdrop-filter: blur(18px);
}

.search-tabs a:first-child {
    border-radius: 18px 0 0;
}

.search-tabs a:last-child {
    border-radius: 0 18px 0 0;
}

.search-tabs a.active {
    color: var(--ink);
    background: #fff;
}

.search-tabs svg {
    color: var(--gold);
    font-size: 20px;
}

.tour-search-form {
    padding: 16px;
    display: grid;
    grid-template-columns: 1.4fr 1fr .72fr .72fr auto;
    gap: 10px;
    background: rgba(6, 40, 47, .76);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 0 20px 20px 20px;
    box-shadow: 0 30px 70px rgba(3, 28, 33, .28);
    backdrop-filter: blur(20px);
}

.search-field {
    height: 74px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 11px;
    border-radius: 13px;
    background: #fff;
    border: 1px solid transparent;
    transition: border-color .2s ease, box-shadow .2s ease;
    overflow: hidden;
}

.search-field:focus-within {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(24, 183, 187, .13);
}

.search-field > span:first-child {
    color: var(--teal-dark);
    font-size: 20px;
    flex: 0 0 auto;
}

.field-copy {
    min-width: 0;
    display: flex;
    flex: 1;
    flex-direction: column;
}

.field-copy small {
    margin-bottom: 3px;
    color: #71858a;
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.field-copy input,
.field-copy select {
    width: 100%;
    min-width: 0;
    height: 28px;
    padding: 0;
    color: var(--ink);
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 14px;
    font-weight: 750;
}

.btn-search {
    min-width: 145px;
    height: 74px;
    color: #fff;
    background: linear-gradient(135deg, var(--gold), #eab73b);
    box-shadow: 0 16px 30px rgba(213, 156, 25, .22);
}

.btn-search svg {
    display: none;
}

.hero-trust {
    display: flex;
    gap: 0;
    margin-top: 35px;
}

.hero-trust div {
    min-width: 155px;
    padding: 0 28px;
    border-right: 1px solid rgba(255, 255, 255, .23);
}

.hero-trust div:first-child {
    padding-left: 0;
}

.hero-trust div:last-child {
    border-right: 0;
}

.hero-trust strong,
.hero-trust span {
    display: block;
}

.hero-trust strong {
    font-size: 24px;
}

.hero-trust span {
    color: rgba(255, 255, 255, .68);
    font-size: 12px;
}

.hero-dots {
    position: absolute;
    z-index: 5;
    right: 28px;
    top: 50%;
    display: grid;
    gap: 9px;
}

.hero-dots button {
    width: 4px;
    height: 26px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, .35);
}

.hero-dots button.active {
    height: 45px;
    background: var(--gold);
}

.section {
    padding: 110px 0;
}

.section-tours {
    position: relative;
    background:
        radial-gradient(circle at 95% 5%, rgba(23, 182, 186, .08), transparent 26%),
        #fff;
}

.section-heading {
    margin-bottom: 38px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
}

.section-heading h2 {
    margin: 8px 0 7px;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    letter-spacing: -.045em;
}

.section-heading p {
    max-width: 650px;
    margin: 0;
    color: #667b80;
    font-size: 17px;
}

.section-heading-center {
    display: block;
    max-width: 700px;
    margin-inline: auto;
    text-align: center;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 0;
    color: var(--teal-dark);
    border-bottom: 1px solid currentColor;
    font-weight: 800;
    white-space: nowrap;
}

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

.tour-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 30px rgba(8, 48, 57, .05);
    transition: transform .35s ease, box-shadow .35s ease;
}

.tour-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.tour-card-media {
    height: 265px;
    position: relative;
    display: block;
    overflow: hidden;
}

.tour-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(6, 42, 50, .3), transparent 55%);
}

.tour-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.tour-card:hover .tour-card-media img {
    transform: scale(1.07);
}

.tour-type,
.tour-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .03em;
}

.tour-type {
    left: 16px;
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
}

.tour-badge {
    right: 16px;
    color: #614500;
    background: var(--gold-soft);
}

.tour-card-body {
    padding: 22px;
}

.tour-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 800;
}

.tour-location svg {
    width: 15px;
}

.tour-card h3 {
    min-height: 56px;
    margin: 10px 0 6px;
    font-size: 21px;
    line-height: 1.3;
    letter-spacing: -.02em;
}

.tour-card h3 a:hover {
    color: var(--teal-dark);
}

.tour-summary {
    min-height: 42px;
    margin: 0 0 15px;
    color: #6e8084;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tour-meta {
    display: flex;
    gap: 17px;
    padding: 14px 0;
    border-top: 1px solid #edf2f1;
    border-bottom: 1px solid #edf2f1;
}

.tour-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #5b7176;
    font-size: 12px;
    font-weight: 700;
}

.tour-meta svg {
    color: var(--gold);
    width: 16px;
}

.tour-card-footer {
    padding-top: 16px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.price small,
.price span {
    display: block;
    color: #77898d;
    font-size: 10px;
}

.price strong {
    display: block;
    color: var(--ink);
    font-size: 22px;
    letter-spacing: -.03em;
}

.round-link {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 50%;
    background: var(--teal);
    transition: transform .2s ease, background .2s ease;
}

.round-link:hover {
    transform: rotate(-10deg);
    background: var(--teal-dark);
}

.destinations-section {
    background: var(--sand);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 245px 245px;
    gap: 18px;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    color: #fff;
}

.destination-featured {
    grid-column: span 2;
    grid-row: span 2;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .65s ease;
}

.destination-card:hover img {
    transform: scale(1.07);
}

.destination-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 33, 39, .8), transparent 72%);
}

.destination-copy {
    position: absolute;
    inset: auto 20px 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
}

.destination-copy small {
    grid-column: 1;
    color: rgba(255, 255, 255, .7);
    font-size: 11px;
    font-weight: 750;
}

.destination-copy strong {
    grid-column: 1;
    font-size: 23px;
    line-height: 1.15;
}

.destination-featured .destination-copy strong {
    font-size: 38px;
}

.destination-copy > span {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.why-section {
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    align-items: center;
    gap: clamp(50px, 7vw, 100px);
}

.why-visual {
    min-height: 610px;
    position: relative;
}

.why-main-image {
    width: 78%;
    height: 560px;
    overflow: hidden;
    border-radius: 120px 24px 24px;
}

.why-main-image img,
.why-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-small-image {
    width: 46%;
    height: 260px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 8px;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--shadow);
}

.why-small-image img {
    border-radius: 14px;
}

.experience-badge {
    width: 145px;
    height: 145px;
    position: absolute;
    right: 7%;
    top: 7%;
    display: grid;
    align-content: center;
    justify-items: center;
    color: var(--ink);
    border: 8px solid rgba(255, 255, 255, .75);
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: var(--shadow-sm);
    transform: rotate(6deg);
}

.experience-badge strong {
    font-size: 32px;
}

.experience-badge span {
    max-width: 90px;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
}

.why-content h2 {
    margin: 10px 0 12px;
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.05;
    letter-spacing: -.05em;
}

.why-content .lead {
    max-width: 560px;
    margin: 0 0 30px;
    color: #63777c;
    font-size: 17px;
}

.benefit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 22px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.benefit-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: var(--teal-dark);
    border-radius: 14px;
    background: var(--teal-soft);
}

.benefit-item strong,
.benefit-item small {
    display: block;
}

.benefit-item strong {
    margin-bottom: 3px;
    font-size: 14px;
}

.benefit-item small {
    color: #718388;
    font-size: 12px;
}

.cruise-section {
    position: relative;
    color: #fff;
    background:
        radial-gradient(circle at 10% 0, rgba(25, 184, 188, .34), transparent 28%),
        var(--ink);
}

.cruise-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .12) 1px, transparent 0);
    background-size: 28px 28px;
    opacity: .2;
}

.cruise-section .container {
    position: relative;
}

.section-heading-light h2 {
    color: #fff;
}

.section-heading-light p {
    color: rgba(255, 255, 255, .65);
}

.text-link-light {
    color: #fff;
}

.cruise-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.cruise-card {
    height: 470px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.cruise-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.cruise-card:hover img {
    transform: scale(1.08);
}

.cruise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 28, 34, .93), transparent 70%);
}

.cruise-content {
    position: absolute;
    inset: auto 20px 22px;
}

.cruise-route {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold-soft);
    font-size: 11px;
    font-weight: 800;
}

.cruise-content > strong {
    min-height: 59px;
    margin: 8px 0 17px;
    display: block;
    font-size: 22px;
    line-height: 1.3;
}

.cruise-bottom {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.cruise-bottom small,
.cruise-bottom b {
    display: block;
}

.cruise-bottom small {
    color: rgba(255, 255, 255, .65);
}

.cruise-bottom b {
    font-size: 18px;
}

.cruise-bottom i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .4);
    border-radius: 50%;
    font-style: normal;
}

.cta-strip {
    padding: 0 0 100px;
    background: var(--ink);
}

.cta-strip-inner {
    min-height: 220px;
    padding: 45px 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-radius: 28px;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, .96), rgba(235, 250, 248, .95)),
        #fff;
    overflow: hidden;
}

.cta-strip h2 {
    max-width: 730px;
    margin: 8px 0 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -.045em;
}

.page-hero {
    min-height: 490px;
    padding: 170px 0 100px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(4, 34, 40, .88), rgba(4, 34, 40, .25)),
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=2000&q=88") center/cover;
}

.page-hero h1 {
    max-width: 850px;
    margin: 10px 0;
    font-size: clamp(48px, 6vw, 76px);
    line-height: 1;
    letter-spacing: -.05em;
}

.page-hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .75);
    font-size: 18px;
}

.listing-search {
    position: relative;
    z-index: 8;
    margin-top: -77px;
}

.search-panel-compact .tour-search-form {
    background: rgba(6, 40, 47, .94);
}

.listing-section {
    padding-top: 70px;
}

.listing-top {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6b8085;
}

.listing-top strong {
    color: var(--ink);
}

.listing-top a {
    color: var(--teal-dark);
    font-weight: 800;
}

.empty-state {
    min-height: 350px;
    padding: 50px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 20px;
    text-align: center;
    border: 1px dashed #bdd4d2;
    border-radius: var(--radius);
    background: var(--teal-soft);
}

.empty-state > svg {
    width: 60px;
    height: 60px;
    color: var(--teal-dark);
}

.empty-state h1,
.empty-state h2 {
    margin: 0;
}

.detail-hero {
    height: 680px;
    position: relative;
    color: #fff;
}

.detail-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 34, 40, .87), transparent 70%), linear-gradient(90deg, rgba(4, 34, 40, .35), transparent);
}

.detail-hero-content {
    position: absolute;
    inset: auto 0 62px;
    margin-inline: auto;
}

.detail-hero-content .tour-type {
    position: static;
    display: inline-block;
}

.detail-hero-content h1 {
    max-width: 880px;
    margin: 18px 0;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    letter-spacing: -.05em;
}

.detail-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.detail-hero-meta span {
    padding: 10px 13px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(14px);
    font-size: 13px;
    font-weight: 750;
}

.detail-section {
    background: #f7f9f8;
}

.detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    align-items: start;
    gap: 35px;
}

.detail-summary-grid {
    margin-bottom: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.detail-summary-grid > div {
    min-height: 96px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
}

.detail-summary-grid > div > svg {
    width: 28px;
    height: 28px;
    color: var(--teal-dark);
}

.detail-summary-grid small,
.detail-summary-grid strong {
    display: block;
}

.detail-summary-grid small {
    color: #7a8b8f;
    font-size: 11px;
}

.prose-card,
.booking-card {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 8px 30px rgba(8, 48, 57, .04);
}

.prose-card h2,
.gallery-block h2 {
    margin: 8px 0 20px;
    font-size: 34px;
    letter-spacing: -.04em;
}

.prose {
    color: #526a70;
    line-height: 1.85;
}

.booking-card {
    position: sticky;
    top: 110px;
}

.booking-price {
    padding-bottom: 22px;
    margin-bottom: 23px;
    border-bottom: 1px solid var(--line);
}

.booking-price small,
.booking-price span,
.booking-price strong {
    display: block;
}

.booking-price small,
.booking-price span {
    color: #75898d;
    font-size: 11px;
}

.booking-price strong {
    font-size: 34px;
    letter-spacing: -.04em;
}

.booking-card h3 {
    margin: 0 0 6px;
    font-size: 23px;
}

.booking-card > p {
    margin: 0 0 20px;
    color: #71858a;
    font-size: 13px;
}

.request-form {
    display: grid;
    gap: 13px;
}

.request-form label {
    display: grid;
    gap: 6px;
}

.request-form label > span {
    color: #557077;
    font-size: 11px;
    font-weight: 750;
}

.request-form input,
.request-form textarea,
.request-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    outline: 0;
    background: #fbfcfc;
    color: var(--ink);
    resize: vertical;
}

.request-form input {
    height: 47px;
}

.request-form input:focus,
.request-form textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(24, 183, 187, .1);
}

.gallery-block {
    margin-top: 35px;
}

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

.detail-gallery a {
    height: 210px;
    overflow: hidden;
    border-radius: 17px;
}

.detail-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.detail-gallery a:hover img {
    transform: scale(1.06);
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 500;
    padding: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(3, 24, 29, .93);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 86vh;
    border-radius: 18px;
}

.lightbox button {
    position: absolute;
    right: 26px;
    top: 22px;
    color: #fff;
    border: 0;
    background: transparent;
    font-size: 42px;
}

.about-page-hero {
    background:
        linear-gradient(90deg, rgba(4, 34, 40, .87), rgba(4, 34, 40, .18)),
        url("https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=2000&q=88") center/cover;
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 80px;
}

.about-collage {
    min-height: 600px;
    position: relative;
}

.about-img-one {
    width: 76%;
    height: 540px;
    object-fit: cover;
    border-radius: 24px 120px 24px 24px;
}

.about-img-two {
    width: 44%;
    height: 260px;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 8px;
    object-fit: cover;
    border-radius: 23px;
    background: #fff;
    box-shadow: var(--shadow);
}

.about-seal {
    width: 138px;
    height: 138px;
    position: absolute;
    right: 5%;
    top: 10%;
    display: grid;
    place-content: center;
    text-align: center;
    border-radius: 50%;
    background: var(--gold-soft);
    box-shadow: var(--shadow-sm);
}

.about-seal b {
    font-size: 31px;
}

.about-seal small {
    max-width: 90px;
}

.about-copy h2,
.contact-info h2 {
    margin: 9px 0 20px;
    font-size: clamp(38px, 4vw, 58px);
    line-height: 1.08;
    letter-spacing: -.05em;
}

.about-copy .prose {
    font-size: 17px;
}

.about-stats {
    margin-top: 35px;
    display: flex;
    gap: 50px;
}

.about-stats strong,
.about-stats span {
    display: block;
}

.about-stats strong {
    color: var(--teal-dark);
    font-size: 31px;
}

.about-stats span {
    color: #75898d;
    font-size: 12px;
}

.soft-section {
    background: var(--sand);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    min-height: 235px;
    padding: 30px;
    border: 1px solid #e4e9e4;
    border-radius: 22px;
    background: #fff;
    transition: transform .3s ease, box-shadow .3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
}

.benefit-card > span {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: var(--teal-dark);
    border-radius: 16px;
    background: var(--teal-soft);
}

.benefit-card > span svg {
    width: 27px;
    height: 27px;
}

.benefit-card h3 {
    margin: 22px 0 7px;
    font-size: 18px;
}

.benefit-card p {
    margin: 0;
    color: #72858a;
    font-size: 13px;
}

.contact-page-hero {
    background:
        linear-gradient(90deg, rgba(4, 34, 40, .9), rgba(4, 34, 40, .2)),
        url("https://images.unsplash.com/photo-1497215842964-222b430dc094?auto=format&fit=crop&w=2000&q=88") center/cover;
}

.contact-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: start;
    gap: 80px;
}

.contact-info > p {
    color: #6d8186;
    font-size: 17px;
}

.contact-list {
    display: grid;
    gap: 13px;
    margin-top: 35px;
}

.contact-list > * {
    min-height: 80px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
}

.contact-list i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: var(--teal-dark);
    border-radius: 14px;
    background: var(--teal-soft);
    font-style: normal;
}

.contact-list small,
.contact-list strong {
    display: block;
}

.contact-list small {
    color: #75898d;
}

.contact-form-card {
    padding: 38px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
}

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

.form-full {
    grid-column: 1 / -1;
}

.map-section iframe {
    width: 100%;
    height: 430px;
    display: block;
    border: 0;
    filter: saturate(.65) contrast(1.04);
}

.flash-toast {
    position: fixed;
    z-index: 400;
    right: 25px;
    top: 110px;
    max-width: min(440px, calc(100vw - 30px));
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    border-radius: 14px;
    background: var(--teal-dark);
    box-shadow: var(--shadow);
    animation: toast-in .35s ease both;
}

.flash-error {
    background: var(--danger);
}

.flash-toast span {
    flex: 1;
}

.flash-toast button {
    color: #fff;
    border: 0;
    background: transparent;
    font-size: 24px;
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(-12px); }
}

.site-footer {
    position: relative;
    padding: 90px 0 25px;
    overflow: hidden;
    color: #fff;
    background: #062a33;
}

.footer-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 50%;
}

.footer-orbit-one {
    width: 520px;
    height: 520px;
    right: -180px;
    top: -260px;
}

.footer-orbit-two {
    width: 340px;
    height: 340px;
    right: -90px;
    top: -170px;
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.5fr .65fr .8fr 1fr;
    gap: 60px;
}

.brand-footer .brand-crop {
    border-radius: 14px;
    background: #fff;
}

.footer-brand > p {
    max-width: 350px;
    margin: 20px 0;
    color: rgba(255, 255, 255, .63);
    font-size: 14px;
}

.social-row {
    display: flex;
    gap: 10px;
}

.social-row a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    transition: background .2s ease, border-color .2s ease;
}

.social-row a:hover {
    border-color: var(--teal);
    background: var(--teal);
}

.social-row svg {
    width: 19px;
    height: 19px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 11px;
}

.footer-column h3 {
    margin: 10px 0 14px;
    font-size: 15px;
}

.footer-column a,
.footer-column p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 13px;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    position: relative;
    margin-top: 60px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .45);
    border-top: 1px solid rgba(255, 255, 255, .09);
    font-size: 12px;
}

.mobile-bottom-nav {
    display: none;
}

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

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

@media (max-width: 1180px) {
    .header-inner {
        gap: 22px;
    }

    .desktop-nav {
        gap: 20px;
    }

    .phone-link span {
        display: none;
    }

    .tour-search-form {
        grid-template-columns: 1.3fr 1fr .7fr .7fr 74px;
    }

    .btn-search {
        min-width: 0;
        padding: 0;
    }

    .btn-search span {
        display: none;
    }

    .btn-search svg {
        display: block;
        width: 25px;
        height: 25px;
    }

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

    .cruise-card {
        height: 400px;
    }

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

@media (max-width: 920px) {
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .header-inner {
        height: 78px;
    }

    .header-actions {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
        color: inherit;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        inset: 78px 0 auto;
        padding: 16px 20px 25px;
        display: grid;
        gap: 4px;
        color: var(--ink);
        background: #fff;
        box-shadow: 0 20px 45px rgba(5, 39, 47, .15);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .25s ease;
    }

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

    .mobile-menu a {
        padding: 13px 12px;
        border-bottom: 1px solid var(--line);
        font-weight: 750;
    }

    .hero {
        min-height: 960px;
    }

    .hero-content {
        padding-top: 100px;
    }

    .hero h1 {
        font-size: clamp(48px, 10vw, 78px);
    }

    .tour-search-form {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 0 20px 20px 20px;
    }

    .search-field-location {
        grid-column: span 2;
    }

    .btn-search {
        grid-column: span 2;
        height: 58px;
    }

    .btn-search span,
    .btn-search svg {
        display: block;
    }

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

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 320px 220px 220px;
    }

    .why-grid,
    .about-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .why-content {
        max-width: 700px;
    }

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

    .booking-card {
        position: static;
    }

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

@media (max-width: 640px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .site-header {
        color: var(--ink);
        background: rgba(255, 255, 255, .95);
        box-shadow: 0 7px 25px rgba(8, 48, 57, .07);
        backdrop-filter: blur(16px);
    }

    .header-inner {
        height: 70px;
    }

    .brand-crop {
        width: 105px;
        height: 64px;
    }

    .brand-crop img {
        width: 205px;
        height: 205px;
    }

    .phone-link,
    .lang-current {
        display: none;
    }

    .lang-menu {
        display: none;
    }

    .mobile-menu {
        inset: 70px 0 auto;
    }

    .hero {
        min-height: auto;
        padding: 125px 0 48px;
        align-items: flex-start;
    }

    .hero-content {
        padding-top: 0;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(4, 32, 39, .57), rgba(4, 32, 39, .93));
    }

    .hero-copy {
        margin-bottom: 28px;
    }

    .hero h1 {
        margin-top: 12px;
        font-size: 44px;
        line-height: 1.02;
    }

    .hero-copy > p {
        font-size: 15px;
    }

    .search-tabs {
        width: 100%;
    }

    .search-tabs a {
        min-width: 47%;
        min-height: 52px;
        padding: 0 14px;
        justify-content: center;
        font-size: 12px;
    }

    .search-tabs a:first-child,
    .search-tabs a:last-child {
        border-radius: 15px 15px 0 0;
    }

    .tour-search-form {
        padding: 12px;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        border-radius: 0 0 17px 17px;
    }

    .search-field {
        height: 64px;
        padding: 0 11px;
    }

    .search-field-location {
        grid-column: span 2;
    }

    .search-field > span:first-child {
        display: none;
    }

    .field-copy small {
        font-size: 9px;
    }

    .field-copy input,
    .field-copy select {
        font-size: 12px;
    }

    .hero-trust {
        margin-top: 24px;
        justify-content: space-between;
    }

    .hero-trust div {
        min-width: 0;
        padding: 0 12px;
    }

    .hero-trust strong {
        font-size: 18px;
    }

    .hero-trust span {
        font-size: 9px;
    }

    .hero-dots {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .section-heading {
        margin-bottom: 25px;
        align-items: flex-start;
    }

    .section-heading h2 {
        font-size: 35px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .section-heading .text-link {
        display: none;
    }

    .tour-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .tour-card-media {
        height: 230px;
    }

    .destination-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 260px 185px 185px 185px;
        gap: 10px;
    }

    .destination-featured {
        grid-column: span 2;
        grid-row: auto;
    }

    .destination-copy {
        inset: auto 13px 13px;
    }

    .destination-copy strong,
    .destination-featured .destination-copy strong {
        font-size: 19px;
    }

    .destination-copy > span {
        width: 34px;
        height: 34px;
    }

    .why-grid {
        gap: 40px;
    }

    .why-visual {
        min-height: 440px;
    }

    .why-main-image {
        height: 420px;
        border-radius: 70px 20px 20px;
    }

    .why-small-image {
        height: 180px;
    }

    .experience-badge {
        width: 110px;
        height: 110px;
        right: 3%;
        top: 4%;
    }

    .experience-badge strong {
        font-size: 23px;
    }

    .why-content h2 {
        font-size: 39px;
    }

    .benefit-list {
        grid-template-columns: 1fr;
    }

    .cruise-grid {
        display: flex;
        margin-right: -14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .cruise-card {
        min-width: 82vw;
        height: 420px;
        scroll-snap-align: start;
    }

    .cta-strip {
        padding-bottom: 70px;
    }

    .cta-strip-inner {
        min-height: 260px;
        padding: 30px 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .page-hero {
        min-height: 390px;
        padding: 140px 0 70px;
    }

    .page-hero h1 {
        font-size: 44px;
    }

    .listing-search {
        margin-top: -35px;
    }

    .listing-search .search-tabs {
        border-radius: 15px 15px 0 0;
    }

    .listing-search .search-tabs a {
        min-width: 50%;
    }

    .listing-section {
        padding-top: 50px;
    }

    .detail-hero {
        height: 590px;
    }

    .detail-hero-content {
        inset: auto 0 40px;
    }

    .detail-hero-content h1 {
        font-size: 42px;
    }

    .detail-hero-meta {
        gap: 7px;
    }

    .detail-hero-meta span {
        font-size: 11px;
    }

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

    .prose-card,
    .booking-card {
        padding: 23px;
    }

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

    .detail-gallery a {
        height: 150px;
    }

    .about-layout,
    .contact-grid {
        gap: 45px;
    }

    .about-collage {
        min-height: 430px;
    }

    .about-img-one {
        height: 410px;
        border-radius: 20px 70px 20px 20px;
    }

    .about-img-two {
        height: 180px;
    }

    .about-seal {
        width: 105px;
        height: 105px;
    }

    .about-copy h2,
    .contact-info h2 {
        font-size: 39px;
    }

    .about-stats {
        gap: 25px;
    }

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

    .contact-form-card {
        padding: 23px;
    }

    .two-column-form {
        grid-template-columns: 1fr;
    }

    .form-full {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 25px;
    }

    .footer-brand,
    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        margin-bottom: 70px;
        flex-direction: column;
    }

    .mobile-bottom-nav {
        height: 68px;
        position: fixed;
        z-index: 120;
        inset: auto 0 0;
        padding: 7px 8px max(7px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 -10px 30px rgba(8, 48, 57, .08);
        backdrop-filter: blur(18px);
    }

    .mobile-bottom-nav > a {
        min-width: 0;
        display: grid;
        justify-items: center;
        gap: 2px;
        color: #7c8d91;
        font-size: 9px;
        font-weight: 750;
    }

    .mobile-bottom-nav > a.active {
        color: var(--teal-dark);
    }

    .mobile-bottom-nav svg {
        width: 20px;
        height: 20px;
    }

    .mobile-bottom-nav .bottom-action {
        color: var(--ink);
    }

    .bottom-action-icon {
        width: 46px;
        height: 46px;
        margin-top: -31px;
        display: grid;
        place-items: center;
        color: #fff;
        border: 4px solid #fff;
        border-radius: 50%;
        background: var(--teal);
        box-shadow: 0 9px 22px rgba(15, 166, 171, .3);
    }

    .bottom-action-icon svg {
        width: 23px;
        height: 23px;
    }

    .flash-toast {
        right: 15px;
        top: 82px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
.brand-footer .brand-crop {
    background: transparent !important;
    border-radius: 0 !important;
}

/* Small departure picker inside the search filter. */
.departure-field .field-copy{overflow:hidden}
.departure-trigger{display:block;width:100%;height:28px;padding:0;text-align:left;border:0;background:transparent;color:var(--ink);font-size:14px;font-weight:750;font-family:inherit;cursor:pointer;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.departure-trigger:focus-visible{outline:2px solid var(--teal);outline-offset:3px}
.departure-popup{position:fixed;z-index:99999;box-sizing:border-box;max-height:min(390px,calc(100dvh - 20px));overflow:auto;padding:16px;border:1px solid #dbe9e7;border-radius:18px;background:#fff;color:#17343a;box-shadow:0 25px 70px #082f3980;font:14px/1.4 system-ui,-apple-system,sans-serif}
.departure-heading{display:flex;align-items:center;justify-content:space-between;gap:8px;margin-bottom:10px;text-align:center}
.departure-heading strong{font-size:15px;text-transform:capitalize}
.departure-heading button{width:35px;height:35px;border:0;border-radius:10px;background:#e8f6f4;color:#066c73;font-size:25px;line-height:1;cursor:pointer}
.departure-grid{display:grid;grid-template-columns:repeat(7,minmax(0,1fr));gap:4px}
.departure-weekday{text-align:center;color:#6f8489;font-size:11px;font-weight:700;padding:5px 0}
.departure-day{position:relative;min-height:37px;padding:0;border:0;border-radius:9px;background:transparent;color:#a7b1b4;font-weight:600}
.departure-day.available{background:#d9f3ed;color:#07565b;cursor:pointer;font-weight:800}
.departure-day.available::after{content:'';position:absolute;bottom:3px;left:calc(50% - 2px);width:4px;height:4px;border-radius:50%;background:#009b8c}
.departure-day.available:hover,.departure-day.selected{background:#007e80;color:#fff}
.departure-day.available:hover::after,.departure-day.selected::after{background:#fff}
.departure-day:focus-visible{outline:2px solid #e5ac26;outline-offset:1px}
.departure-empty{margin:12px 0 0;text-align:center;color:#7d9094;font-size:12px}
.departure-clear{margin-top:10px;background:none;border:0;color:#087c83;cursor:pointer;font-weight:700}
@media(max-width:600px){.departure-trigger{font-size:12px}.departure-popup{padding:12px}}
