:root {
    color-scheme: light;
    --ink: #113037;
    --muted: #607179;
    --surface: #ffffff;
    --soft: #f4f8f7;
    --line: #dbe7e4;
    --green: #004833;
    --green-2: #007d65;
    --aqua: #0b93b8;
    --sun: #f0a326;
    --lime: #b8d414;
    --shadow: 0 18px 50px rgba(17, 48, 55, 0.14);
    --radius: 8px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: #fbfdfc;
    line-height: 1.5;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 50;
    translate: 0 -160%;
    background: var(--green);
    color: #fff;
    padding: 10px 14px;
    border-radius: 6px;
    text-decoration: none;
}

.skip-link:focus {
    translate: 0;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    min-height: 72px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 22px;
    padding: 8px clamp(16px, 4vw, 44px);
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(219, 231, 228, 0.9);
    backdrop-filter: blur(18px);
}

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

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

.brand span {
    display: inline-block;
    max-width: 130px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.site-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 30px);
}

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

.site-nav a:not(.nav-cta)::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 3px;
    background: var(--green-2);
    scale: 0 1;
    transform-origin: left;
    transition: scale 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    scale: 1 1;
}

.nav-cta {
    color: #fff !important;
    background: var(--green);
    padding: 11px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(0, 72, 51, 0.22);
}

.menu-toggle {
    display: none;
    justify-self: end;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--ink);
    border-radius: 2px;
    transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: clamp(560px, 82svh, 760px);
    display: grid;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

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

.hero-media {
    background: url("../img/slide-1.webp") center / cover no-repeat;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(1, 37, 34, 0.88) 0%, rgba(1, 37, 34, 0.66) 42%, rgba(1, 37, 34, 0.18) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.18), transparent 46%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(260px, 360px);
    align-items: end;
    gap: clamp(28px, 8vw, 88px);
    padding-block: clamp(72px, 12vw, 120px) clamp(46px, 8vw, 74px);
}

.hero-copy {
    max-width: 660px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--green-2);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #aee6d5;
}

.hero h1,
.section h2,
.split-section h2,
.experience h2,
.faq-section h2 {
    margin: 0;
    letter-spacing: 0;
    line-height: 1.02;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(2.85rem, 8vw, 6.6rem);
}

.hero-copy > p:not(.eyebrow) {
    max-width: 610px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    gap: 10px;
    border: 0;
    border-radius: 999px;
    padding: 0 20px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
    transition: translate 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    translate: 0 -2px;
}

.btn-primary {
    color: var(--ink);
    background: var(--lime);
    box-shadow: 0 18px 36px rgba(184, 212, 20, 0.25);
}

.btn-secondary {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.13);
}

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

.btn-outline {
    color: var(--green);
    border: 1px solid var(--green);
    background: #fff;
}

.trust-panel {
    display: grid;
    gap: 10px;
    width: min(100%, 360px);
    justify-self: end;
}

.trust-panel div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(0, 72, 51, 0.68);
    backdrop-filter: blur(16px);
}

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

.trust-panel strong {
    font-size: clamp(1.45rem, 3vw, 2rem);
}

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

.booking-band {
    position: relative;
    z-index: 2;
    padding: 22px 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 35px rgba(17, 48, 55, 0.08);
}

.booking-shell {
    display: grid;
    grid-template-columns: minmax(210px, 290px) 1fr;
    align-items: center;
    gap: 20px;
}

.booking-shell h2 {
    margin: 0;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(4, minmax(130px, 1fr)) auto;
    gap: 10px;
    align-items: end;
}

.booking-form label {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.booking-form span {
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.booking-form input,
.booking-form select {
    width: 100%;
    min-height: 48px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    padding: 0 12px;
}

.section,
.split-section,
.experience {
    padding: clamp(58px, 9vw, 108px) 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 30px;
    margin-bottom: 32px;
}

.section-heading.compact {
    max-width: 720px;
    display: block;
}

.section-heading h2,
.split-section h2,
.experience h2,
.faq-section h2 {
    font-size: clamp(2rem, 4vw, 4rem);
}

.section-heading > p:last-child,
.split-copy > p,
.experience p,
.faq-grid > div > p {
    color: var(--muted);
    font-size: 1.04rem;
}

.suites-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    align-items: end;
    gap: clamp(22px, 5vw, 54px);
    margin-bottom: 18px;
}

.suites-copy {
    max-width: 760px;
}

.suites-copy h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.02;
}

.suites-copy p:last-child {
    max-width: 660px;
    margin: 16px 0 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.promo-panel {
    padding: 20px;
    border-radius: var(--radius);
    color: #fff;
    background: var(--green);
    box-shadow: 0 18px 42px rgba(0, 72, 51, 0.18);
}

.promo-panel span,
.promo-panel strong,
.promo-panel a {
    display: block;
}

.promo-panel span {
    color: #d7f36a;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
}

.promo-panel strong {
    margin-top: 6px;
    font-size: 2.35rem;
    line-height: 1;
}

.promo-panel p {
    margin: 10px 0 18px;
    color: rgba(255, 255, 255, 0.78);
}

.promo-panel a {
    width: fit-content;
    color: var(--ink);
    background: var(--lime);
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 900;
    text-decoration: none;
}

.suite-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 0 0 28px;
    list-style: none;
}

.suite-steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    align-items: start;
    min-height: 104px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.suite-steps li > span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    color: #fff;
    background: var(--green-2);
    border-radius: 999px;
    font-weight: 900;
}

.suite-steps strong {
    display: block;
    margin-top: 1px;
}

.suite-steps p {
    margin: 5px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 1080px;
    margin-inline: auto;
}

.room-card,
.package-card,
.attraction-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: 0 12px 32px rgba(17, 48, 55, 0.06);
}

.room-card {
    display: grid;
    grid-template-rows: auto 1fr;
}

.room-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--soft);
}

.room-body {
    display: grid;
    min-height: 0;
    padding: 20px;
}

.room-title {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.room-title p {
    margin: 0 0 2px;
    color: var(--muted);
    font-size: 0.77rem;
    font-weight: 900;
    text-transform: uppercase;
}

.room-title h3 {
    margin: 0;
    font-size: 1.45rem;
}

.room-title span {
    align-self: start;
    color: var(--green);
    background: #e9f7f2;
    border-radius: 999px;
    padding: 7px 10px;
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
}

.feature-list,
.check-list {
    padding: 0;
    margin: 18px 0;
    list-style: none;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    align-content: start;
}

.feature-list li {
    color: #355057;
    background: var(--soft);
    border: 1px solid #e3eeee;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

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

.price-row span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.price-row strong {
    color: var(--green);
    font-size: 1.55rem;
}

.split-section {
    background: var(--green);
    color: #fff;
}

.split-section .eyebrow {
    color: var(--lime);
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 450px);
    gap: clamp(32px, 7vw, 82px);
    align-items: center;
}

.split-copy > p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.78);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 32px;
}

.proof-grid div {
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
}

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

.proof-grid span {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
}

.split-photo img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: rgba(0, 34, 25, 0.55);
    border-radius: var(--radius);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.muted {
    background: var(--soft);
}

.package-grid,
.attraction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.package-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.package-card div,
.attraction-card div {
    padding: 18px;
}

.package-card h3,
.attraction-card h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.package-card p,
.attraction-card p {
    margin: 0 0 18px;
    color: var(--muted);
}

.package-card a,
.attraction-card a,
.site-footer a,
.footer-bottom a {
    color: var(--green);
    font-weight: 900;
    text-decoration: none;
}

.attraction-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.experience {
    background: #fff;
}

.experience-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    gap: clamp(28px, 6vw, 70px);
    align-items: center;
}

.check-list {
    display: grid;
    gap: 10px;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    color: #324c54;
    font-weight: 800;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 15px;
    height: 8px;
    border-left: 3px solid var(--green-2);
    border-bottom: 3px solid var(--green-2);
    transform: rotate(-45deg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-rows: 220px 220px;
    gap: 12px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.gallery-grid img:first-child {
    grid-row: span 2;
}

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

.faq-grid {
    display: grid;
    grid-template-columns: minmax(250px, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(28px, 6vw, 70px);
}

.faq-list {
    display: grid;
    gap: 10px;
}

details {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 58px;
    padding: 0 18px;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: "+";
    color: var(--green-2);
    font-size: 1.45rem;
    line-height: 1;
}

details[open] summary::after {
    content: "-";
}

details p {
    margin: 0;
    padding: 0 18px 18px;
    color: var(--muted);
}

.site-footer {
    color: #dbe7e4;
    background: #0b2227;
    padding: 44px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.2fr) minmax(220px, 0.8fr) minmax(240px, 0.8fr);
    gap: 28px;
}

.footer-brand-stack {
    display: block;
    margin-bottom: 14px;
}

.site-footer .footer-hotel-logo {
    display: block;
    width: min(230px, 100%);
    aspect-ratio: 2560 / 1373;
    background: #ffffff;
    mask: url("../img/Hotel-Le-Jardin-scaled.png") center / contain no-repeat;
    -webkit-mask: url("../img/Hotel-Le-Jardin-scaled.png") center / contain no-repeat;
}

.site-footer h2 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 1rem;
}

.site-footer p {
    max-width: 380px;
    margin: 0;
    color: #b6c7c4;
}

.site-footer a {
    display: block;
    width: fit-content;
    margin: 8px 0;
    color: #d7f36a;
}

.site-footer .footer-social-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    margin-top: 12px;
    padding: 0 13px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.footer-social-link img {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9fb4b1;
    font-size: 0.9rem;
}

.floating-whatsapp {
    position: fixed;
    right: max(16px, env(safe-area-inset-right));
    bottom: max(16px, env(safe-area-inset-bottom));
    z-index: 25;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    color: #fff;
    background: #15b15e;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 16px 36px rgba(21, 177, 94, 0.36);
    text-decoration: none;
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;
}

.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 520ms ease, transform 520ms ease;
}

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

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

    .booking-shell,
    .booking-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .brand img {
        width: 145px;
    }

    .brand span {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: fixed;
        inset: 72px 12px auto 12px;
        display: grid;
        gap: 6px;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: var(--shadow);
        transform-origin: top;
        scale: 0.98 0;
        opacity: 0;
        pointer-events: none;
        transition: scale 160ms ease, opacity 160ms ease;
    }

    .site-nav.is-open {
        scale: 1;
        opacity: 1;
        pointer-events: auto;
    }

    .site-nav a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 12px;
        border-radius: 6px;
    }

    .site-nav a::after {
        display: none !important;
    }

    .nav-cta {
        justify-content: center;
        margin-top: 6px;
    }

    .hero {
        min-height: auto;
    }

    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(1, 37, 34, 0.9) 0%, rgba(1, 37, 34, 0.72) 54%, rgba(1, 37, 34, 0.42) 100%),
            linear-gradient(90deg, rgba(1, 37, 34, 0.64), rgba(1, 37, 34, 0.2));
    }

    .hero-grid,
    .split-grid,
    .experience-grid,
    .faq-grid,
    .suites-intro,
    .section-heading {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        padding-top: 86px;
    }

    .trust-panel {
        justify-self: stretch;
        width: 100%;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .package-grid,
    .attraction-grid {
        grid-template-columns: 1fr;
    }

    .package-card,
    .attraction-card {
        display: grid;
        grid-template-columns: minmax(160px, 0.42fr) 1fr;
    }

    .package-card img,
    .attraction-card img {
        height: 100%;
        aspect-ratio: auto;
    }
}

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

    .site-header {
        min-height: 64px;
        padding-inline: 14px;
    }

    .site-nav {
        inset-top: 64px;
    }

    .hero-grid {
        padding-block: 74px 34px;
        gap: 28px;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 14vw, 4.3rem);
    }

    .hero-copy > p:not(.eyebrow) {
        font-size: 1.03rem;
    }

    .hero-actions,
    .price-row,
    .footer-bottom {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn,
    .price-row .btn,
    .booking-form .btn {
        width: 100%;
    }

    .trust-panel,
    .proof-grid,
    .room-grid,
    .suite-steps,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .promo-panel a {
        width: 100%;
        text-align: center;
    }

    .trust-panel div {
        padding: 14px;
    }

    .section,
    .split-section,
    .experience {
        padding-block: 52px;
    }

    .room-body {
        min-height: auto;
    }

    .room-card img {
        aspect-ratio: 4 / 3;
    }

    .package-card,
    .attraction-card {
        grid-template-columns: 1fr;
    }

    .package-card img,
    .attraction-card img {
        aspect-ratio: 16 / 10;
    }

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

    .gallery-grid img:first-child {
        grid-column: span 2;
        grid-row: auto;
    }

    .floating-whatsapp {
        width: 54px;
        height: 54px;
    }

    .floating-whatsapp img {
        width: 31px;
        height: 31px;
    }
}

@media (max-width: 420px) {
    .brand img {
        width: 124px;
    }

    .hero-actions {
        gap: 10px;
    }

    .btn {
        min-height: 46px;
        padding-inline: 16px;
    }

    .room-title {
        display: grid;
    }

    .room-title span {
        width: fit-content;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
