:root {
    --navy: #082f3c;
    --navy-2: #0d4251;
    --aqua: #dff8f7;
    --aqua-2: #c8f0ef;
    --sand: #f4e2ca;
    --cream: #fbfaf6;
    --white: #fff;
    --ink: #102d35;
    --muted: #61757a;
    --line: #d8e5e5;
    --accent: #cc7b31;
    --shadow: 0 18px 60px rgba(8, 47, 60, .13);
    --radius: 24px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.65
}

body.nav-open {
    overflow: hidden
}

img {
    display: block;
    width: 100%;
    height: auto
}

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

button,
input,
select {
    font: inherit
}

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

.narrow {
    max-width: 800px
}

.center {
    text-align: center
}

.section {
    padding: 110px 0
}

.pale {
    background: var(--aqua)
}

.aqua {
    background: var(--aqua-2)
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent);
    font: 700 12px/1.2 "Manrope", sans-serif;
    letter-spacing: .16em;
    text-transform: uppercase
}

.eyebrow.light {
    color: #f5c994
}

h1,
h2,
h3 {
    font-family: "Manrope", sans-serif;
    line-height: 1.05;
    margin: 0;
    color: var(--navy)
}

h1 {
    font-size: clamp(22px, 4vw, 48px);
    max-width: 850px;
    color: white;
    letter-spacing: -.045em
}

h2 {
    font-size: clamp(20px, 3vw, 36px);
    letter-spacing: -.04em
}

h3 {
    font-size: 28px;
    letter-spacing: -.025em
}

.lead {
    font-size: 18px;
    color: var(--muted);
    max-width: 720px;
    margin: 24px auto 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: .25s
}

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

.btn-dark:hover {
    background: var(--navy-2);
    transform: translateY(-2px)
}

.btn-light {
    background: #fff;
    color: var(--navy)
}

.btn-light:hover {
    background: var(--sand);
    transform: translateY(-2px)
}

.text-link {
    font-weight: 700;
    color: var(--navy)
}

.text-link span {
    margin-left: 6px
}

.light-link {
    color: #fff
}

.site-header {
    position: absolute;
    z-index: 20;
    width: 100%;
    top: 0;
    color: #fff
}

.header-inner {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font: 800 15px/1 "Manrope";
    letter-spacing: .12em
}
.brand img {
    width:230px;
    height: auto;
}
.brand small {
    display: block;
    font-size: 9px;
    letter-spacing: .27em;
    margin-top: 5px;
    opacity: .8
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 35px;
    height: 35px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 14px
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px;
    font-weight: 600
}

.site-nav a {
    opacity: .9
}

.site-nav a:hover {
    opacity: 1
}

.nav-cta {
    border: 1px solid rgba(255, 255, 255, .55);
    padding: 11px 18px;
    border-radius: 999px
}

.nav-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px
}

.hero {
    position: relative;
    min-height: 550px;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 120px 0 160px;
    overflow: hidden
}

.hero-media {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1550498586-2b666c0fa65f?q=80&w=1828&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover no-repeat
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 31, 42, .48)
}

.hero-content {
    position: relative;
    z-index: 2
}

.hero-title-row {
    display: grid;
    grid-template-columns: 1.4fr .65fr;
    gap: 70px;
    align-items: end
}

.hero-title-row p {
    font-size: 20px;
    max-width: 410px;
    margin: 0 0 12px;
    color: rgba(255, 255, 255, .86)
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 38px
}

.hero-search-wrap {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%)
}

.voyage-search {
    background: #fff;
    border-radius: 18px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr .8fr auto;
    gap: 10px;
    box-shadow: var(--shadow);
    color: var(--ink)
}

.voyage-search label {
    padding: 8px 15px;
    border-right: 1px solid var(--line)
}

.voyage-search span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: var(--muted);
    font-weight: 700
}

.voyage-search select,
.voyage-search input {
    border: 0;
    background: transparent;
    width: 100%;
    outline: 0;
    color: var(--ink);
    font-weight: 700;
    padding: 5px 0
}

.intro {
    overflow: hidden
}

.feature-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 100px;
    align-items: center;
    margin-top: 80px
}

.feature-pair figure {
    margin: 0;
    max-width: 500px
}

.feature-pair figure img {
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--shadow)
}

.tilt-left {
    transform: rotate(-4deg)
}

.tilt-right {
    transform: rotate(4deg);
    justify-self: end
}

.feature-copy {
    max-width: 430px
}

.feature-copy p {
    color: var(--muted)
}

.feature-copy a {
    color: var(--accent);
    font-weight: 700
}

.feature-number {
    font: 700 12px "Manrope";
    color: var(--accent);
    letter-spacing: .15em
}

.ship-cutout {
    margin-top: 55px
}

.ship-cutout img {
    height: 380px;
    object-fit: cover;
    object-position: center 58%;
    border-radius: var(--radius)
}

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

.section-head h2 {
    max-width: 760px
}

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

.voyage-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #e7ecea;
    transition: .25s
}

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

.card-image {
    position: relative
}

.card-image img {
    height: 230px;
    object-fit: cover
}

.card-image span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, .93);
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700
}

.card-body {
    padding: 20px
}

.card-kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--accent);
    font-weight: 700;
    margin: 0 0 7px
}

.card-body h3 {
    font-size: 21px
}

.card-meta {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: var(--muted)
}

.card-meta strong {
    color: var(--navy)
}

.experience-panel {
    background: #fff;
    border-radius: 28px;
    margin-top: 55px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.experience-copy {
    padding: 65px
}

.experience-copy h3 {
    font-size: 38px
}

.experience-copy ul {
    list-style: none;
    padding: 0;
    margin: 28px 0
}

.experience-copy li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--muted)
}

.experience-copy li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800
}

.experience-image img {
    height: 100%;
    min-height: 530px;
    object-fit: cover
}

.journal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px
}

.journal-grid article {
    background: var(--sand);
    border-radius: 16px;
    overflow: hidden
}

.journal-grid img {
    height: 240px;
    object-fit: cover
}

.journal-grid article div {
    padding: 24px
}

.journal-grid span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--accent);
    font-weight: 700
}

.journal-grid h3 {
    font-size: 23px;
    margin: 9px 0 22px
}

.journal-grid a {
    font-weight: 700;
    font-size: 13px
}

.social-strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    margin-top: 45px;
    overflow: hidden
}

.social-strip img {
    height: 260px;
    object-fit: cover
}

.social-strip img:nth-child(even) {
    transform: translateY(28px)
}

.cta-section {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    color: #fff
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1706940492301-cfb78d69c38f?q=80&w=1548&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 37, 48, .62)
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 900px
}

.cta-content h2 {
    color: #fff
}

.cta-content>p:not(.eyebrow):not(.form-note) {
    font-size: 18px;
    max-width: 650px;
    margin: 20px auto 34px;
    color: rgba(255, 255, 255, .85)
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 10px;
    background: rgba(255, 255, 255, .12);
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 18px;
    backdrop-filter: blur(10px)
}

.contact-form input,
.contact-form select {
    border: 0;
    border-radius: 10px;
    padding: 0 16px;
    min-height: 52px;
    background: #fff;
    color: var(--ink);
    outline: 0
}

.form-note {
    min-height: 24px;
    font-weight: 600
}

.site-footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .72);
    padding: 75px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .7fr .8fr 1fr;
    gap: 55px
}

.footer-brand {
    color: #fff;
    margin-bottom: 20px
}

.footer-grid p {
    max-width: 330px
}

.footer-grid h3 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 20px
}

.footer-grid a,
.footer-grid span {
    display: block;
    margin: 8px 0;
    font-size: 14px
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .14);
    margin-top: 55px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    font-size: 13px
}

.legal-hero {
    background: var(--navy);
    padding: 150px 0 80px;
    color: #fff
}

.legal-hero h1 {
    font-size: clamp(24px, 3vw, 38px)
}

.legal-content {
    padding: 30px 0
}



.legal-content h2 {
    font-size: 22px;
    margin: 38px 0 12px
}

.legal-content p,
.legal-content li {
    color: var(--muted)
}

.legal-content ul {
    padding-left: 22px
}

@media(max-width:980px) {
    .site-nav {
        position: fixed;
        inset: 0 0 0 30%;
        background: var(--navy);
        padding: 110px 35px;
        flex-direction: column;
        align-items: flex-start;
        transform: translateX(100%);
        transition: .3s
    }

    .site-nav.open {
        transform: none
    }

    .nav-toggle {
        display: block;
        position: relative;
        z-index: 3
    }

    .hero-title-row {
        grid-template-columns: 1fr
    }

    .hero-title-row p {
        max-width: 650px
    }

    .voyage-search {
        grid-template-columns: 1fr 1fr
    }

    .voyage-search label {
        border-right: 0
    }

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

    .experience-panel {
        grid-template-columns: 1fr
    }

    .experience-image {
        order: -1
    }

    .experience-image img {
        min-height: 380px
    }

    .contact-form {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .social-strip {
        grid-template-columns: repeat(3, 1fr)
    }

    .social-strip img:nth-child(n+4) {
        display: none
    }
}

@media(max-width:700px) {
    .container {
        width: min(100% - 26px, 1180px)
    }

    .section {
        padding: 75px 0
    }

    .hero {
        min-height: 300px;
        
    }

    .hero-title-row {
        gap: 25px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .hero-search-wrap {
        bottom: 25px
    }

    .voyage-search {
        grid-template-columns: 1fr
    }

    .voyage-search .btn {
        width: 100%
    }

    .feature-pair {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-top: 55px
    }

    .tilt-left,
    .tilt-right {
        transform: none
    }

    .order-mobile {
        order: 3
    }

    .ship-cutout img {
        height: 260px
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column
    }

    .cards-grid,
    .journal-grid {
        grid-template-columns: 1fr
    }

    .experience-copy {
        padding: 35px 25px
    }

    .experience-copy h3 {
        font-size: 31px
    }

    .social-strip {
        grid-template-columns: 1fr 1fr
    }

    .social-strip img {
        height: 220px
    }

    .social-strip img:nth-child(3) {
        display: none
    }

    .contact-form {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px
    }

    .site-nav {
        left: 0
    }

    .card-image img {
        height: 250px
    }
}

/* Floating Call Button */

.call-now-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:9999;

    display:flex;
    align-items:center;
    gap:10px;

    background:#000;
    color:#fff;

    padding:14px 22px;

    border-radius:60px;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    box-shadow:0 12px 30px rgba(0,0,0,.25);

    transition:.3s;
}

.call-now-btn:hover{
    background:#222;
    transform:translateY(-4px);
}

.call-now-btn svg{
    flex-shrink:0;
}

@media(max-width:768px){

.call-now-btn{

    right:15px;
    bottom:15px;

    padding:12px 18px;

    font-size:14px;
}

.call-now-btn span{
    display:none;
}

.call-now-btn{
    width:58px;
    height:58px;
    justify-content:center;
    border-radius:50%;
    padding:0;
}

}