:root {
    --ink: #17221e;
    --muted: #65716c;
    --paper: #f7f2eb;
    --paper-soft: #fbf8f2;
    --sea: #0e5d64;
    --sea-dark: #073f47;
    --clay: #b36f4d;
    --line: rgba(23, 34, 30, 0.13);
    --white: #ffffff;
    --shadow: 0 22px 70px rgba(23, 34, 30, 0.14);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper-soft);
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
}

body.share-modal-open {
    overflow: hidden;
}

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

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

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px clamp(18px, 4vw, 52px);
    color: var(--white);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-logo {
    display: block;
    width: clamp(88px, 7vw, 124px);
    height: auto;
    max-height: 96px;
    object-fit: contain;
}

.brand-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 0.93rem;
    font-weight: 650;
    letter-spacing: 0;
}

.brand small {
    margin-top: 1px;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.72);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
}

.hero {
    position: relative;
    display: grid;
    min-height: 93svh;
    align-items: end;
    overflow: hidden;
    color: var(--white);
    background-image: var(--hero-image);
    background-position: center;
    background-size: cover;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(4, 25, 28, 0.74), rgba(4, 25, 28, 0.28) 52%, rgba(4, 25, 28, 0.18)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.42));
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(760px, calc(100% - 36px));
    margin: 0 auto;
    padding: 132px 0 clamp(72px, 11vh, 124px);
}

.eyebrow {
    margin: 0 0 18px;
    font-size: 0.73rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow.dark {
    color: var(--sea);
}

h1,
h2,
p {
    margin-top: 0;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: 1.02;
    letter-spacing: 0;
}

h1 {
    max-width: 720px;
    margin-bottom: 22px;
    font-size: clamp(3rem, 10vw, 7rem);
}

h2 {
    font-size: clamp(2.1rem, 5vw, 4.75rem);
}

.hero-subtitle {
    max-width: 560px;
    margin-bottom: 32px;
    font-size: clamp(1.06rem, 2.2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.86);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 52px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 0.94rem;
    font-weight: 800;
    line-height: 1;
    transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-light {
    color: var(--sea-dark);
    background: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.button-dark {
    color: var(--white);
    background: var(--sea-dark);
    box-shadow: 0 14px 34px rgba(7, 63, 71, 0.2);
}

.section-peek {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 36px));
    margin: -44px auto 0;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: var(--shadow);
}

.benefit {
    display: grid;
    gap: 10px;
    min-height: 190px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.94);
}

.icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--sea);
    border: 1px solid rgba(14, 93, 100, 0.22);
    border-radius: 50%;
    background: rgba(14, 93, 100, 0.06);
}

.icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.75;
}

.benefit strong {
    font-size: 1.02rem;
}

.benefit span:last-child {
    color: var(--muted);
    font-size: 0.95rem;
}

.section {
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: clamp(72px, 10vw, 128px) 0;
}

.section-narrow {
    width: min(900px, calc(100% - 36px));
    margin: 0 auto;
}

.story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.45fr);
    gap: clamp(36px, 8vw, 96px);
    align-items: center;
}

.story-copy p:last-child {
    max-width: 620px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.story-panel {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.story-panel span {
    padding: 24px;
    background: var(--paper);
    color: var(--sea-dark);
    font-weight: 750;
}

.mid-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 34px clamp(22px, 5vw, 56px);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.mid-cta p {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 4vw, 3rem);
    line-height: 1.08;
}

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

.section-heading h2 {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    background: #d9d2c8;
}

.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
}

.gallery-item figcaption {
    position: absolute;
    inset: auto 12px 12px 12px;
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 24px);
    padding: 8px 12px;
    border-radius: 999px;
    color: var(--white);
    background: rgba(7, 34, 37, 0.72);
    font-size: 0.82rem;
    font-weight: 760;
    backdrop-filter: blur(14px);
}

.trust {
    padding-top: 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.trust-grid div {
    min-height: 170px;
    padding: 26px;
    background: var(--white);
}

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

.trust-grid strong {
    margin-bottom: 12px;
    color: var(--sea-dark);
    font-size: 1.02rem;
}

.trust-grid span {
    color: var(--muted);
}

.trust-grid a {
    color: var(--sea-dark);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.destination {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    padding-top: 0;
}

.destination-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    overflow: hidden;
    border-radius: var(--radius);
}

.destination-grid img {
    aspect-ratio: 5 / 4;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius);
    background: #d9d2c8;
}

.destination-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    color: var(--white);
    border-radius: var(--radius);
    background: rgba(4, 25, 28, 0.12);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 13vw, 10rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.destination-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    max-width: 100%;
}

.destination-copy h2 {
    margin: 0;
    max-width: 100%;
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    text-wrap: balance;
}

.destination-copy p:last-child {
    max-width: 720px;
    margin: 0;
    color: var(--muted);
    font-size: 1.08rem;
}

.final-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: end;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto clamp(60px, 8vw, 96px);
    padding: clamp(44px, 7vw, 72px);
    border-radius: var(--radius);
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(7, 63, 71, 0.94), rgba(14, 93, 100, 0.76)),
        var(--final-image, none) center/cover;
}

.final-cta h2 {
    margin-bottom: 18px;
}

.final-cta p:last-child {
    max-width: 640px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.08rem;
}

.share-section {
    display: grid;
    justify-items: center;
    gap: 16px;
    width: min(1120px, calc(100% - 36px));
    margin: calc(clamp(60px, 8vw, 96px) * -0.55) auto clamp(48px, 7vw, 78px);
    text-align: center;
}

.share-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--sea-dark);
    background: var(--white);
    box-shadow: 0 12px 32px rgba(23, 34, 30, 0.08);
    font: inherit;
    font-size: 0.94rem;
    font-weight: 800;
    cursor: pointer;
}

.share-button-icon {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
}

.share-button svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.9;
}

.share-modal[hidden] {
    display: none;
}

.share-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 18px;
}

.share-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 34, 37, 0.52);
}

.share-dialog {
    position: relative;
    z-index: 1;
    width: min(440px, 100%);
    padding: 30px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 28px 80px rgba(7, 34, 37, 0.28);
}

.share-close {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--sea-dark);
    background: var(--paper-soft);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.share-dialog p {
    color: var(--muted);
}

.share-actions {
    display: grid;
    gap: 10px;
    margin-top: 22px;
}

.share-actions [hidden] {
    display: none;
}

.share-actions a,
.share-actions button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--sea-dark);
    background: var(--paper-soft);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.share-actions [data-share-native] {
    color: var(--white);
    background: var(--sea-dark);
}

.share-status {
    min-height: 22px;
    margin: 14px 0 0;
    color: var(--sea-dark);
    font-size: 0.9rem;
    font-weight: 750;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: min(1120px, calc(100% - 36px));
    margin: 0 auto;
    padding: 28px 0 36px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.9rem;
}

.mobile-sticky-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 40;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    color: var(--white);
    background: var(--sea-dark);
    box-shadow: 0 14px 36px rgba(7, 63, 71, 0.28);
    font-size: 0.9rem;
    font-weight: 800;
}

@media (max-width: 960px) {
    .benefits,
    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

    .final-cta {
        grid-template-columns: 1fr;
    }

    .destination-copy {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 640px) {
    body {
        padding-bottom: 76px;
    }

    .site-header {
        justify-content: center;
        padding: 14px 16px;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
        font-size: 19px;
    }

    .brand-logo {
        width: 84px;
        max-height: 72px;
    }

    .brand strong {
        font-size: 0.85rem;
    }

    .header-cta {
        display: none;
    }

    .hero {
        min-height: 91svh;
        background-position: 75% center;
    }

    .hero-shade {
        background:
            linear-gradient(180deg, rgba(4, 25, 28, 0.2), rgba(4, 25, 28, 0.76)),
            linear-gradient(90deg, rgba(4, 25, 28, 0.52), rgba(4, 25, 28, 0.18));
    }

    .hero-content {
        width: calc(100% - 32px);
        padding: 112px 0 68px;
    }

    h1 {
        font-size: clamp(3rem, 16vw, 4.9rem);
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .button {
        width: 100%;
        min-height: 52px;
    }

    .section-peek {
        width: calc(100% - 24px);
        margin-top: -34px;
    }

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

    .benefit {
        min-height: 0;
        padding: 22px;
    }

    .section,
    .section-narrow,
    .share-section,
    .final-cta,
    .site-footer {
        width: calc(100% - 32px);
    }

    .section {
        padding: 72px 0;
    }

    .mid-cta {
        display: grid;
        padding: 30px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 255px;
        gap: 12px;
    }

    .gallery-item-large {
        grid-column: auto;
        grid-row: auto;
    }

    .destination-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .destination-grid img {
        aspect-ratio: 5 / 4;
        min-height: 0;
    }

    .destination-overlay {
        font-size: clamp(2.6rem, 16vw, 5rem);
        letter-spacing: 0.04em;
    }

    .final-cta {
        padding: 34px 24px;
    }

    .site-footer {
        display: grid;
    }

    .mobile-sticky-cta {
        display: inline-flex;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .button,
    .button:hover,
    .button:focus-visible {
        transition: none;
        transform: none;
    }
}
