:root {
    --green-900: #12352e;
    --green-800: #185447;
    --green-600: #1f9b76;
    --green-500: #28b98d;
    --mint: #e7f7ee;
    --mint-2: #f4fbf7;
    --cream: #fffaf0;
    --ink: #13231f;
    --muted: #63746f;
    --line: rgba(19, 35, 31, 0.12);
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(24, 84, 71, 0.16);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--mint-2);
    -webkit-font-smoothing: antialiased;
}

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

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

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

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 50;
    width: min(1160px, calc(100% - 32px));
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 12px 14px 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 20px 60px rgba(22, 57, 49, 0.12);
    backdrop-filter: blur(22px);
    transition: background 0.25s ease, box-shadow 0.25s ease, top 0.25s ease;
}

.site-header.is-scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 45px rgba(22, 57, 49, 0.18);
}

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

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(135deg, var(--green-800), var(--green-500));
    font-weight: 900;
    font-size: 0.82rem;
    letter-spacing: 0;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.05;
}

.brand strong {
    font-size: 0.98rem;
    font-weight: 900;
}

.brand small {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-900);
    font-size: 0.88rem;
    font-weight: 800;
}

.main-nav a {
    border-radius: 999px;
    padding: 12px 14px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: var(--green-800);
    background: rgba(31, 155, 118, 0.1);
}

.main-nav .nav-cta {
    color: var(--white);
    background: var(--green-800);
    box-shadow: 0 10px 24px rgba(24, 84, 71, 0.22);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: var(--green-900);
}

.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: var(--white);
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 150px 0 70px;
    background: var(--cream);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(250, 255, 252, 0.98) 0%, rgba(250, 255, 252, 0.9) 34%, rgba(250, 255, 252, 0.55) 58%, rgba(250, 255, 252, 0.14) 100%),
        linear-gradient(0deg, rgba(244, 251, 247, 0.96) 0%, rgba(244, 251, 247, 0) 32%);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    min-height: calc(100vh - 220px);
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    gap: 42px;
}

.hero-copy {
    max-width: 720px;
    padding-bottom: 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--green-800);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 999px;
    background: var(--green-500);
}

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

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.94;
    font-weight: 900;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 610px;
    margin-bottom: 34px;
    color: #40534e;
    font-size: clamp(1.06rem, 1.7vw, 1.28rem);
    line-height: 1.75;
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 16px 24px;
    border: 1px solid transparent;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--green-800), var(--green-500));
    box-shadow: 0 18px 34px rgba(31, 155, 118, 0.28);
}

.btn-secondary {
    color: var(--green-900);
    border-color: rgba(24, 84, 71, 0.22);
    background: rgba(255, 255, 255, 0.72);
}

.btn-full {
    width: 100%;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.trust-row div {
    min-width: 132px;
    padding: 16px 18px;
    border: 1px solid rgba(24, 84, 71, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 12px 34px rgba(24, 84, 71, 0.08);
}

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

.trust-row strong {
    color: var(--green-800);
    font-size: 1.35rem;
    font-weight: 900;
}

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

.booking-card,
.service-card,
.testimonial,
.location-card,
.benefit,
.faq-list details {
    border: 1px solid rgba(24, 84, 71, 0.12);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.booking-card {
    margin-bottom: 12px;
    padding: 26px;
    border-radius: var(--radius);
}

.status-dot {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green-800);
    font-size: 0.82rem;
    font-weight: 900;
}

.status-dot::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: 0 0 0 8px rgba(40, 185, 141, 0.12);
}

.booking-card h2 {
    margin: 18px 0 12px;
    font-size: 2rem;
    line-height: 1.05;
}

.booking-card p,
.mini-info {
    color: var(--muted);
    line-height: 1.65;
}

.mini-info {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    font-size: 0.9rem;
    font-weight: 700;
}

.proof-band {
    padding: 26px 0;
    background: var(--green-900);
    color: var(--white);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.proof-grid div {
    padding: 18px 0;
}

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

.proof-grid strong {
    margin-bottom: 7px;
    font-size: 1.1rem;
    font-weight: 900;
}

.proof-grid span {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.55;
}

.section,
.split-section,
.testimonial-section,
.contact-section {
    padding: 108px 0;
}

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

.section-heading h2,
.split-copy h2,
.contact-copy h2 {
    margin: 12px 0 16px;
    font-size: clamp(2.25rem, 4.5vw, 4.15rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.contact-copy p {
    color: var(--muted);
    font-size: 1.06rem;
    line-height: 1.75;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    min-height: 248px;
    padding: 28px;
    border-radius: var(--radius);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(31, 155, 118, 0.34);
    box-shadow: 0 30px 80px rgba(24, 84, 71, 0.2);
}

.service-icon {
    display: grid;
    width: 48px;
    height: 48px;
    margin-bottom: 26px;
    place-items: center;
    border-radius: 16px;
    color: var(--green-800);
    background: var(--mint);
    font-size: 1.5rem;
    font-weight: 900;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.service-card p,
.testimonial p,
.benefit span {
    color: var(--muted);
    line-height: 1.7;
}

.split-section {
    overflow: hidden;
    background: linear-gradient(180deg, var(--mint-2), var(--white));
}

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

.image-stack {
    position: relative;
    min-height: 570px;
}

.image-main,
.image-float {
    border-radius: var(--radius);
    object-fit: cover;
    box-shadow: var(--shadow);
}

.image-main {
    width: 88%;
    height: 570px;
}

.image-float {
    position: absolute;
    right: 0;
    bottom: 38px;
    width: 48%;
    height: 260px;
    border: 8px solid var(--white);
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 26px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 32px;
    color: #334742;
    font-weight: 700;
    line-height: 1.55;
}

.check-list li::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green-500);
    box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.58);
}

.text-link {
    color: var(--green-800);
    font-weight: 900;
}

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

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

.benefit {
    min-height: 210px;
    padding: 26px;
    border-radius: var(--radius);
}

.benefit strong,
.benefit span {
    display: block;
}

.benefit strong {
    margin-bottom: 14px;
    color: var(--green-900);
    font-size: 1.08rem;
}

.testimonial-section {
    background: var(--green-900);
    color: var(--white);
}

.testimonial-section .eyebrow,
.testimonial-section .section-heading p {
    color: #9fe7cc;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial {
    padding: 30px;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

.stars {
    margin-bottom: 18px;
    color: #f7c95f;
    font-size: 0.92rem;
    letter-spacing: 0;
}

.testimonial p {
    color: rgba(255, 255, 255, 0.78);
}

.testimonial strong,
.testimonial span {
    display: block;
}

.testimonial span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.contact-section {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1fr;
    align-items: center;
    gap: 52px;
}

.location-card {
    overflow: hidden;
    border-radius: var(--radius);
}

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

.location-content {
    display: grid;
    gap: 8px;
    padding: 24px;
}

.location-content strong {
    font-size: 1.25rem;
}

.location-content span {
    color: var(--muted);
    font-weight: 700;
}

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

.faq-wrap {
    max-width: 900px;
}

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

.faq-list details {
    border-radius: 18px;
    overflow: hidden;
}

.faq-list summary {
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    color: var(--green-900);
    font-weight: 900;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    display: grid;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--green-800);
    transition: transform 0.2s ease;
}

.faq-list details[open] summary span {
    transform: rotate(45deg);
}

.faq-list p {
    margin: 0;
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.7;
}

.site-footer {
    padding: 30px 0;
    color: rgba(255, 255, 255, 0.78);
    background: #0e2721;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.footer-grid strong {
    color: var(--white);
}

.footer-grid span {
    margin-top: 4px;
}

.footer-grid a {
    color: #9fe7cc;
    font-weight: 900;
}

.float-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0 20px;
    color: var(--white);
    background: #22c55e;
    box-shadow: 0 18px 38px rgba(34, 197, 94, 0.32);
    font-weight: 900;
}

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

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }

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

@media (max-width: 980px) {
    .site-header {
        border-radius: 28px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        padding-top: 10px;
    }

    .site-header.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        width: 100%;
    }

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

    .hero-grid {
        align-items: start;
        min-height: auto;
    }

    .booking-card {
        max-width: 520px;
    }

    .service-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .split-grid {
        gap: 44px;
    }
}

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

    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        padding: 10px;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 50px;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(250, 255, 252, 0.98) 0%, rgba(250, 255, 252, 0.96) 44%, rgba(250, 255, 252, 0.9) 100%);
    }

    h1 {
        font-size: clamp(2.65rem, 11.5vw, 3.9rem);
        line-height: 0.98;
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-actions,
    .contact-actions,
    .footer-grid {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        padding-inline: 18px;
        text-align: center;
    }

    .trust-row {
        display: grid;
        grid-template-columns: 1fr;
    }

    .proof-grid,
    .service-grid,
    .testimonial-grid,
    .benefit-grid {
        grid-template-columns: 1fr;
    }

    .section,
    .split-section,
    .testimonial-section,
    .contact-section {
        padding: 74px 0;
    }

    .image-stack {
        min-height: auto;
    }

    .image-main {
        width: 100%;
        height: 380px;
    }

    .image-float {
        position: relative;
        right: auto;
        bottom: auto;
        width: 76%;
        height: 190px;
        margin: -70px 18px 0 auto;
    }

    .location-card img {
        height: 300px;
    }

    .float-whatsapp {
        right: 14px;
        bottom: 14px;
        min-height: 48px;
        padding-inline: 16px;
    }
}
