@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-300.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-600.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-600.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Cormorant Garamond";
    src: url("../fonts/cormorant-garamond-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ocean-deep: #072d3f;
    --ocean-mid: #0f4d67;
    --aqua: #66d6df;
    --white: #fefefe;
    --sand: #f8f1e6;
    --gold: #c8a56a;
    --text: #173345;
    --muted: #5d7482;
    --line: rgba(11, 58, 78, 0.12);
    --shadow: 0 24px 60px rgba(5, 29, 41, 0.14);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    background: #f7fbfc;
    line-height: 1.65;
}

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

.container {
    width: min(1180px, 92vw);
    margin: 0 auto;
}

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", Georgia, serif;
    margin: 0 0 14px;
    line-height: 1.1;
    color: #092f42;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h2 {
    font-size: clamp(1.9rem, 3.1vw, 3rem);
}

h3 {
    font-size: clamp(1.45rem, 2.2vw, 2rem);
}

p {
    margin: 0 0 14px;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 16px;
}

.section {
    padding: 92px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(120deg, #0e5d7e, #1791a9);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(10, 91, 121, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(10, 91, 121, 0.35);
}

.btn-ghost,
.btn-outline {
    color: #0d536f;
    border-color: rgba(14, 83, 111, 0.3);
    background: rgba(255, 255, 255, 0.86);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 200;
    transition: all 0.25s ease;
    padding: 18px 0;
}

.site-header.scrolled {
    background: rgba(5, 33, 47, 0.93);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 28px rgba(4, 23, 33, 0.34);
    padding: 12px 0;
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand-mark {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    color: #eff9ff;
    font-size: 0.9rem;
    font-weight: 500;
}

.main-nav .nav-cta {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 18px;
    border-radius: 999px;
}

.mobile-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 44px;
    height: 44px;
    padding: 0;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 6px auto;
}

.hero {
    min-height: 94vh;
    display: grid;
    align-items: end;
    position: relative;
    color: #fff;
    padding: 0 0 90px;
    overflow: hidden;
}

.hero-home {
    background: center/cover no-repeat url('../images/1.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 28, 44, 0.22) 0%, rgba(5, 26, 37, 0.76) 62%, rgba(4, 23, 34, 0.92) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 16px;
}

.hero-content p {
    color: rgba(238, 247, 250, 0.92);
    max-width: 660px;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.intro-split {
    background: linear-gradient(180deg, #f8fcfd, #f3f8fa);
}

.split-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.visual-card {
    min-height: 430px;
    border-radius: 24px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    padding: 26px;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.visual-journey {
    background-image: linear-gradient(180deg, rgba(5, 41, 57, 0.06), rgba(5, 31, 43, 0.68)), url('../images/2.jpg');
}

.visual-card span {
    font-size: 1.02rem;
    max-width: 320px;
}

.features-flow {
    background: #fdfdfc;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--line);
    padding: 30px 0;
}

.feature-item:last-child {
    border-bottom: 1px solid var(--line);
}

.feature-item span {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2.4rem;
    color: #95afbb;
}

.why-us {
    background: linear-gradient(120deg, #08324a, #0d5b78);
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: start;
}

.why-us h2,
.why-us p,
.why-us li {
    color: #eff8fb;
}

.elegant-list {
    padding: 0;
    margin: 20px 0 0;
    list-style: none;
}

.elegant-list li {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.25);
    padding: 12px 0;
}

.quote-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(3px);
}

.quote-card h4 {
    color: #f7dfbe;
    margin-top: 16px;
}

.destinations {
    background: linear-gradient(180deg, #f5fbfd, #fff);
}

.destination-cards {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.destination-cards article {
    background: #fff;
    border: 1px solid rgba(14, 77, 102, 0.12);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 14px 30px rgba(9, 55, 73, 0.08);
}

.gallery-narrative {
    background: #f7fcfe;
}

.gallery-asym {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 170px 230px;
    gap: 16px;
}

.gallery-panel {
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.gallery-panel.tall {
    grid-row: span 2;
}

.gallery-panel.wide {
    grid-column: span 2;
}

.gallery-copy {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid rgba(16, 88, 116, 0.1);
}

.trust-band {
    padding: 64px 0;
    background: linear-gradient(100deg, #06283a, #0b4258);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
}

.trust-grid h3,
.trust-grid p,
.trust-grid strong {
    color: #e7f4fb;
}

.cta-premium {
    background: center/cover no-repeat linear-gradient(180deg, rgba(8, 39, 57, 0.56), rgba(6, 31, 44, 0.82)), url('../images/10.jpg');
    color: #fff;
}

.cta-shell {
    text-align: center;
    max-width: 760px;
}

.cta-shell h2 {
    color: #fff;
    margin-bottom: 24px;
}

.inner-hero {
    padding: 180px 0 74px;
    background: center/cover no-repeat linear-gradient(180deg, rgba(5, 35, 50, 0.45), rgba(6, 30, 44, 0.86)), url('../images/9.jpg');
}

.inner-hero h1,
.inner-hero p {
    color: #fff;
    max-width: 840px;
}

.prose-wrap {
    background: #fff;
}

.prose,
.legal-prose {
    max-width: 880px;
}

.prose h2,
.legal-prose h2 {
    margin-top: 28px;
}

.pricing-section {
    background: #f5fafc;
}

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

.price-card {
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(8, 65, 86, 0.14);
    padding: 26px;
    box-shadow: 0 16px 34px rgba(7, 57, 76, 0.09);
}

.price-card .price {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 2rem;
    color: #0a4e68;
}

.price-card .price span {
    display: block;
    font-size: 0.8rem;
    font-family: Inter, Arial, sans-serif;
    color: #597484;
}

.price-card ul {
    margin: 0 0 22px;
    padding-left: 18px;
    color: #3f5d6d;
}

.price-card.featured,
.price-card.premium {
    background: linear-gradient(180deg, #0a4359, #0d536f);
    border-color: transparent;
}

.price-card.featured h3,
.price-card.featured p,
.price-card.featured li,
.price-card.premium h3,
.price-card.premium p,
.price-card.premium li,
.price-card.featured .price,
.price-card.premium .price {
    color: #f2fbff;
}

.price-card .tag {
    display: inline-block;
    padding: 5px 12px;
    font-size: 0.72rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: #f4dcb8;
    margin-bottom: 10px;
}

.pricing-note {
    margin-top: 22px;
    color: #597383;
    font-size: 0.92rem;
}

.contact-section {
    background: linear-gradient(180deg, #f7fcfe, #f2f8fb);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.contact-info {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(9, 64, 84, 0.12);
    padding: 28px;
}

.contact-info ul {
    padding-left: 0;
    margin: 16px 0 0;
    list-style: none;
}

.contact-info li {
    padding: 11px 0;
    border-bottom: 1px solid rgba(10, 78, 103, 0.1);
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(8, 68, 89, 0.13);
    padding: 28px;
    box-shadow: 0 18px 34px rgba(9, 57, 77, 0.08);
}

.field-row {
    margin-bottom: 14px;
}

.field-row label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2d5062;
    font-size: 0.88rem;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid rgba(9, 71, 94, 0.2);
    padding: 11px 13px;
    font: inherit;
    background: #fdfefe;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #0f7fa4;
    box-shadow: 0 0 0 4px rgba(15, 127, 164, 0.12);
}

.legal-content {
    background: #fff;
}

.site-footer {
    background: #061f2d;
    color: rgba(233, 244, 249, 0.88);
    padding-top: 74px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    margin-bottom: 10px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 0.9fr;
    gap: 26px;
}

.site-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer li {
    margin-bottom: 9px;
    color: rgba(230, 242, 248, 0.82);
}

.footer-note {
    margin-top: 10px;
    color: rgba(214, 230, 239, 0.72);
    font-size: 0.88rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 34px;
    padding: 18px 0 28px;
    color: rgba(214, 231, 241, 0.7);
    font-size: 0.86rem;
}

@media (max-width: 1100px) {
    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 0.84rem;
    }

    .footer-grid,
    .trust-grid,
    .split-grid,
    .two-col,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 820px) {
    .mobile-toggle {
        display: inline-block;
        position: relative;
        z-index: 260;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(340px, 82vw);
        height: 100vh;
        background: rgba(6, 35, 50, 0.98);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 18px;
        padding: 32px;
        transition: right 0.25s ease;
    }

    .main-nav a {
        font-size: 1rem;
    }

    .main-nav.open {
        right: 0;
    }

    .hero {
        min-height: 86vh;
        padding-bottom: 72px;
    }

    .gallery-asym {
        grid-template-columns: 1fr;
        grid-template-rows: 220px 220px 220px auto;
    }

    .gallery-panel.wide,
    .gallery-panel.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .destination-cards,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 74px 0;
    }

    .inner-hero {
        padding-top: 150px;
    }
}
