:root {
    --color-ink: #162b2a;
    --color-muted: #647575;
    --color-line: #dce8e4;
    --color-page: #f8fbf8;
    --color-panel: #ffffff;
    --color-sea: #0d665d;
    --color-sea-dark: #083f3a;
    --color-coral: #c76545;
    --color-coral-dark: #a84f35;
    --color-sun: #d8ad55;
    --color-mist: #eef7f2;
    --color-ivory: #fffaf0;
    --shadow-soft: 0 24px 60px rgba(22, 43, 42, 0.14);
    --shadow-card: 0 18px 38px rgba(22, 43, 42, 0.10);
    --radius: 8px;
    --container: 1180px;
    --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
    --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--color-page);
    color: var(--color-ink);
    font-family: var(--font-body);
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 20;
    background: rgba(248, 251, 248, 0.90);
    border-bottom: 1px solid rgba(223, 233, 231, 0.86);
    backdrop-filter: blur(18px);
    transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
    background: rgba(248, 251, 248, 0.98);
    box-shadow: 0 14px 34px rgba(22, 43, 42, 0.10);
}

.header-shell {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand img {
    width: 150px;
    height: auto;
}

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

.site-nav a {
    color: var(--color-ink);
    font-size: 0.91rem;
    font-weight: 800;
    text-decoration: none;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
    color: var(--color-sea);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-panel);
    color: var(--color-sea);
}

.button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary {
    background: var(--color-coral);
    color: #fff;
    box-shadow: 0 16px 32px rgba(199, 101, 69, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--color-coral-dark);
}

.button-secondary {
    background: var(--color-sea);
    color: #fff;
    box-shadow: 0 12px 24px rgba(15, 111, 100, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
    background: var(--color-sea-dark);
}

.button-outline {
    border-color: rgba(255, 250, 240, 0.64);
    background: rgba(255, 250, 240, 0.10);
    color: #fff;
}

.button-outline:hover,
.button-outline:focus-visible {
    background: rgba(255, 250, 240, 0.22);
}

.whatsapp-float {
    position: fixed;
    right: calc(18px + env(safe-area-inset-right));
    bottom: calc(18px + env(safe-area-inset-bottom));
    z-index: 45;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-2px);
    background: #1ebe5d;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.26);
}

.whatsapp-float i {
    position: relative;
    z-index: 1;
    font-size: 30px;
    line-height: 1;
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: -6px;
    border: 2px solid rgba(37, 211, 102, 0.35);
    border-radius: 999px;
    animation: waPulse 1.8s ease-out infinite;
}

@keyframes waPulse {
    0% {
        opacity: 0.9;
        transform: scale(0.95);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.12);
    }
}

.hero {
    position: relative;
    min-height: 88svh;
    padding: 152px 0 92px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #17312f;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(8, 63, 58, 0.88) 0%, rgba(8, 63, 58, 0.62) 42%, rgba(22, 43, 42, 0.14) 100%),
        linear-gradient(0deg, rgba(22, 43, 42, 0.70) 0%, rgba(22, 43, 42, 0.02) 58%);
}

.hero-media {
    position: absolute;
    inset: 0;
}

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

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 690px) minmax(250px, 340px);
    align-items: end;
    gap: 64px;
}

.hero-copy {
    color: #fff;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--color-coral);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: var(--color-sun);
}

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

h1 {
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 5.4rem;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: 0;
}

.hero-lead {
    max-width: 590px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.16rem;
    font-weight: 500;
}

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

.hero-highlights {
    display: grid;
    gap: 0;
    padding: 22px;
    border: 1px solid rgba(255, 250, 240, 0.30);
    border-radius: var(--radius);
    background: rgba(255, 250, 240, 0.14);
    color: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(18px);
}

.hero-panel-kicker {
    margin: 0 0 8px;
    color: var(--color-sun);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
}

.hero-highlight-row {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: center;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 250, 240, 0.18);
}

.hero-highlight-row i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 250, 240, 0.14);
    color: var(--color-sun);
    font-size: 0.9rem;
}

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

.hero-highlights strong {
    font-family: var(--font-display);
    font-size: 1.36rem;
    font-weight: 700;
    line-height: 1;
}

.hero-highlights span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
}

.booking-search {
    position: relative;
    z-index: 3;
    margin-top: -48px;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(150px, 1.1fr)) repeat(3, minmax(118px, 0.8fr)) auto;
    gap: 14px;
    align-items: end;
    padding: 18px;
    border: 1px solid rgba(220, 232, 228, 0.98);
    border-radius: var(--radius);
    background: var(--color-panel);
    box-shadow: var(--shadow-soft);
}

.field {
    min-width: 0;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: var(--color-muted);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
}

.field input,
.field select {
    width: 100%;
    min-height: 50px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--color-ink);
    padding: 10px 14px;
    font-weight: 650;
}

.field input:focus,
.field select:focus {
    outline: 3px solid rgba(15, 111, 100, 0.16);
    border-color: var(--color-sea);
}

.button-search {
    min-height: 50px;
    background: var(--color-sea);
    color: #fff;
}

.button-search:hover,
.button-search:focus-visible {
    background: var(--color-sea-dark);
}

.section {
    padding: 104px 0;
}

.split-layout,
.location-grid,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 70px;
    align-items: center;
}

.split-layout {
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
}

.media-stack {
    position: relative;
    min-height: 520px;
}

.media-stack img {
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
}

.media-main {
    height: 430px;
}

.media-secondary {
    position: absolute;
    right: -18px;
    bottom: 0;
    width: 48%;
    height: 230px;
    border: 8px solid var(--color-page);
}

.section-copy h2,
.section-heading h2 {
    margin-bottom: 20px;
    font-family: var(--font-display);
    color: var(--color-ink);
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 0.98;
    letter-spacing: 0;
}

.section-copy p {
    color: var(--color-muted);
    font-size: 1.04rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0;
}

.feature-list span,
.clean-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-ink);
    font-weight: 800;
}

.feature-list i,
.clean-list i {
    color: var(--color-sea);
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--color-sea);
    font-weight: 800;
    text-decoration: none;
}

.text-link::after {
    content: "→";
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
    transform: translateX(3px);
}

.amenities-section,
.gallery-section,
.contact-section {
    background: var(--color-mist);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.section-heading-row {
    max-width: none;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    align-items: end;
}

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

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

.amenity-card,
.room-card {
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-panel);
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.amenity-card:hover,
.room-card:hover {
    transform: translateY(-3px);
    border-color: rgba(13, 102, 93, 0.24);
    box-shadow: var(--shadow-card);
}

.amenity-card {
    padding: 26px;
}

.amenity-card i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: var(--radius);
    background: rgba(15, 111, 100, 0.10);
    color: var(--color-sea);
    font-size: 1.1rem;
}

.amenity-card h3,
.room-card h3 {
    margin-bottom: 10px;
    font-family: var(--font-display);
    font-size: 1.46rem;
    line-height: 1.05;
}

.amenity-card p,
.room-card p {
    margin-bottom: 0;
    color: var(--color-muted);
}

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

.room-card {
    overflow: hidden;
}

.room-card img {
    width: 100%;
    height: 286px;
    object-fit: cover;
}

.room-content {
    padding: 26px;
}

.room-content p {
    min-height: 78px;
    margin-bottom: 18px;
}

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

.gallery-item {
    position: relative;
    min-height: 210px;
    padding: 0;
    border: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: #dfe9e7;
    cursor: zoom-in;
}

.gallery-item:nth-child(1),
.gallery-item:nth-child(2) {
    grid-column: span 3;
}

.gallery-item:nth-child(n+3) {
    grid-column: span 2;
}

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

.gallery-item::after {
    content: "\f00e";
    position: absolute;
    inset: auto 12px 12px auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-sea);
    font: var(--fa-font-solid);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
    transform: scale(1.04);
}

.gallery-item:hover::after,
.gallery-item:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

.clean-list {
    display: grid;
    gap: 12px;
    margin: 24px 0 28px;
    padding: 0;
    list-style: none;
}

.map-preview {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-line);
    box-shadow: var(--shadow-card);
}

.map-preview img {
    width: 100%;
    height: 430px;
    object-fit: cover;
}

.contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
}

.contact-panel {
    display: grid;
    gap: 12px;
    padding: 22px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-panel);
    box-shadow: 0 16px 36px rgba(22, 43, 42, 0.09);
}

.contact-panel a {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius);
    color: var(--color-ink);
    font-weight: 750;
    text-decoration: none;
}

.contact-panel a:hover,
.contact-panel a:focus-visible {
    background: var(--color-mist);
    color: var(--color-sea);
}

.contact-panel i {
    width: 22px;
    color: var(--color-sea);
}

.site-footer {
    padding: 58px 0 24px;
    background: var(--color-sea-dark);
    color: rgba(255, 255, 255, 0.80);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 32px;
}

.footer-logo {
    width: 164px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.site-footer h2 {
    margin-bottom: 14px;
    color: #fff;
    font-size: 0.98rem;
}

.site-footer a {
    display: table;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: var(--color-sun);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 34px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.92rem;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 50;
    display: grid;
    place-items: center;
    padding: 28px;
    background: rgba(15, 28, 27, 0.88);
}

.lightbox[hidden] {
    display: none;
}

.lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 84vh;
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: var(--radius);
    background: #fff;
    color: var(--color-ink);
    cursor: pointer;
}

@media (max-width: 1080px) {
    .site-nav {
        gap: 16px;
    }

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

    .button-search {
        grid-column: span 3;
    }

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

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

    .room-card {
        display: grid;
        grid-template-columns: 0.92fr 1fr;
    }

    .room-card img {
        height: 100%;
        min-height: 260px;
    }

    .room-content p {
        min-height: 0;
    }
}

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

    .header-shell {
        min-height: 72px;
    }

    .brand img {
        width: 138px;
    }

    .menu-toggle {
        display: grid;
        place-items: center;
    }

    .site-nav {
        position: fixed;
        inset: 72px 14px auto;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--color-line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow-soft);
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav a {
        padding: 13px 12px;
    }

    .site-nav .button {
        margin-top: 8px;
    }

    .hero {
        min-height: 84svh;
        padding: 116px 0 72px;
    }

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

    h1 {
        font-size: 4.2rem;
    }

    .hero-lead {
        font-size: 1.08rem;
    }

    .hero-highlights {
        max-width: 560px;
        grid-template-columns: 1fr;
    }

    .hero-highlight-row {
        padding: 14px 0;
    }

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

    .button-search {
        grid-column: span 2;
    }

    .section {
        padding: 68px 0;
    }

    .split-layout,
    .location-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .split-layout .media-stack {
        order: 2;
    }

    .section-copy h2,
    .section-heading h2 {
        font-size: 2.1rem;
    }

    .section-heading-row {
        display: grid;
        align-items: start;
    }

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

    .gallery-item,
    .gallery-item:nth-child(1),
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(n+3) {
        grid-column: span 1;
        min-height: 180px;
    }

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

@media (max-width: 620px) {
    .whatsapp-float {
        right: calc(14px + env(safe-area-inset-right));
        bottom: calc(14px + env(safe-area-inset-bottom));
        width: 56px;
        height: 56px;
    }

    .whatsapp-float i {
        font-size: 28px;
    }

    .hero {
        min-height: auto;
        padding: 106px 0 62px;
    }

    h1 {
        font-size: 3.1rem;
    }

    .hero-actions,
    .feature-list,
    .amenities-grid,
    .search-form,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        display: grid;
    }

    .hero-highlights {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
        padding: 14px;
    }

    .hero-panel-kicker {
        grid-column: 1 / -1;
        margin-bottom: 6px;
    }

    .hero-highlight-row {
        display: block;
        padding: 11px 6px 8px;
        text-align: center;
    }

    .hero-highlight-row + .hero-highlight-row {
        border-left: 1px solid rgba(255, 250, 240, 0.18);
    }

    .hero-highlight-row i {
        margin: 0 auto 8px;
    }

    .hero-highlights strong {
        font-size: 1.05rem;
    }

    .hero-highlights span {
        font-size: 0.76rem;
        line-height: 1.3;
    }

    .booking-search {
        margin-top: -42px;
    }

    .button-search {
        grid-column: auto;
    }

    .field-small {
        grid-column: auto;
    }

    .media-stack {
        min-height: 0;
    }

    .media-main {
        height: 310px;
    }

    .media-secondary {
        position: static;
        width: 100%;
        height: 220px;
        margin-top: 12px;
        border: 0;
    }

    .room-card {
        display: block;
    }

    .room-card img {
        height: 230px;
    }

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

    .map-preview img {
        height: 310px;
    }

    .footer-bottom {
        display: grid;
    }
}
