﻿:root {
    --sunset-amber: #f5e8d2;
    --sunset-glow: #f7ead8;
    --sunset-deep: #b48a4a;
    --sunset-soft: #fdf8ef;
    --sunset-haze: #f1ddbc;
    --text-dark: #362515;
    --text-muted: #7c6650;
    --white: #ffffff;
    --shadow-soft: 0 24px 48px rgba(180, 138, 74, 0.18);
    --transition: 0.3s ease;
    font-family: "Newsreader", "Georgia", serif;
}
.site-header,
.hero,
.site-footer {
    font-family: "Cormorant Garamond", "Playfair Display", serif;
}

.section,
.section *:not(h1):not(.btn) {
    font-family: "Newsreader", "Georgia", serif;
    letter-spacing: 0.005em;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    background-color: #ffe9d4;
}

body {
    margin: 0;
    color: var(--text-dark);
    background: linear-gradient(180deg, var(--sunset-amber) 0%, var(--sunset-soft) 60%, var(--white) 100%);
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(92%, 1180px);
    margin: 0 auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    font-family: "Manrope", "Segoe UI", sans-serif;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn-primary {
    background: var(--sunset-deep);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(180, 138, 74, 0.25);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    min-width: 160px;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.25);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 253, 247, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(180, 138, 74, 0.12);
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2.5vw;
    width: min(100%, 1500px);
    margin: 0 auto;
}

.brand img {
    height: 48px;
    width: auto;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-desktop a:not(.btn) {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    font-family: "Manrope", "Segoe UI", sans-serif;
    letter-spacing: 0.015em;
    color: var(--text-muted);
    position: relative;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    transition: color var(--transition), background-color var(--transition);
}

.nav-desktop a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 0.35rem;
    height: 2px;
    background: var(--sunset-deep);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform var(--transition);
}

.nav-desktop a:not(.btn):hover::after,
.nav-desktop a:not(.btn):focus::after {
    transform: scaleX(1);
}

.nav-desktop a:not(.btn):hover,
.nav-desktop a:not(.btn):focus {
    background: rgba(245, 232, 210, 0.32);
    color: var(--text-dark);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.header-actions .btn-whatsapp {
    color: var(--white);
    line-height: 1;
    padding: 0.65rem 1.5rem;
}

.header-actions .btn-whatsapp:hover,
.header-actions .btn-whatsapp:focus {
    color: var(--white);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
    padding: 0;
    border: none;
    background: transparent;
    margin-left: 1rem;
}

.nav-toggle:hover,
.nav-toggle:focus {
    outline: none;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--text-dark);
    transition: background var(--transition);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 4vw;
    background: rgba(255, 253, 247, 0.98);
    box-shadow: inset 0 1px 0 rgba(180, 138, 74, 0.16);
    text-align: center;
}

.nav-mobile a:not(.btn) {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 0.65rem 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    letter-spacing: 0.02em;
    border-radius: 999px;
    transition: color var(--transition), background-color var(--transition);
}

.nav-mobile a:not(.btn):hover,
.nav-mobile a:not(.btn):focus {
    color: var(--sunset-deep);
    background: rgba(245, 232, 210, 0.35);
}

.nav-mobile .btn {
    width: 100%;
    justify-content: center;
}

.nav-mobile.open {
    display: flex;
}

main {
    padding-top: 0;
}

.hero {
    position: relative;
    min-height: calc(100vw * 1204 / 1806);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(4.5rem, 10vw, 6.5rem) 0 5rem;
    color: var(--white);
    text-align: left;
    overflow: hidden;
    background-color: #140a05;
    font-family: "Playfair Display", "Source Serif 4", serif;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../image/Mutiara-Lake-BG.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    transform: translateZ(0);
    will-change: transform;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    margin-left: auto;
    text-align: right;
    margin-top: clamp(2.5rem, 18vh, 7.5rem);
    width: min(97%, 1360px);
}

.hero-headline {
    max-width: min(820px, 100%);
    margin-left: auto;
    color: #3b2416;
}

.hero-headline .eyebrow {
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: rgba(59, 36, 22, 0.82);
    margin-bottom: 0.75rem;
    text-shadow: 0 3px 14px rgba(251, 248, 238, 0.25);
}

.hero-headline .eyebrow span {
    display: inline;
}

.hero-headline h1 {
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    margin: 0 0 1rem;
    line-height: 1.05;
    color: #3b2416;
    text-shadow: 0 18px 38px rgba(20, 10, 5, 0.25);
}

.hero-headline .lead {
    max-width: 640px;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    margin-left: auto;
    color: rgba(59, 36, 22, 0.78);
    text-shadow: 0 14px 32px rgba(251, 248, 238, 0.18);
}

.section {
    padding: clamp(4rem, 10vw, 6.5rem) 0;
    scroll-margin-top: 110px;
}

.section h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    margin-bottom: clamp(0.55rem, 1.4vw, 0.85rem);
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section .lead {
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: clamp(1.1rem, 2.4vw, 1.6rem);
    font-size: 1.05rem;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.overview-phrase {
    max-width: 720px;
    margin: 0.75rem auto 1.75rem;
    font-size: 1.05rem;
    color: rgba(59, 36, 22, 0.8);
    text-align: center;
}

.overview-intro {
    /* background: linear-gradient(135deg, rgba(252, 239, 214, 0.58), rgba(241, 219, 184, 0.42)); */
    border: 1px solid rgba(227, 197, 151, 0.32);
    border-radius: 26px;
    padding: clamp(0.95rem, 1.6vw, 1.5rem);
    box-shadow: 0 18px 42px rgba(180, 138, 74, 0.18);
    backdrop-filter: blur(10px);
    display: grid;
    gap: clamp(0.25rem, 0.8vw, 0.5rem);
    text-align: center;
    margin: 0 auto clamp(0.85rem, 2vw, 1.2rem);
}

.overview-intro .btn {
    margin-top: 0.25rem;
    justify-self: center;
}
.overview-intro h2 {
    margin-bottom: 0.35rem;
}
.overview-intro .lead {
    margin-bottom: 0.45rem;
}
.overview-intro .overview-phrase {
    margin-bottom: 0.2rem;
}

.overview-cta { display: flex; align-items: center; justify-content: center; margin: 0 auto clamp(0.9rem, 1.8vw, 1.3rem); min-width: 0; width: fit-content; padding-inline: 1.75rem; }

.overview-subtitle {
    font-size: clamp(1.6rem, 3.2vw, 2rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(59, 36, 22, 0.72);
    text-align: center;
    margin: clamp(1.35rem, 3vw, 1.85rem) auto clamp(0.85rem, 1.8vw, 1.2rem);
    margin: auto;
}

.overview-feature-wrap {
    position: relative;
    margin-top: clamp(2.25rem, 5.5vw, 3.2rem);
    padding: clamp(2.75rem, 6.5vw, 3.75rem);
    border-radius: 36px;
    background: linear-gradient(140deg, rgba(245, 232, 210, 0.92), rgba(241, 221, 191, 0.72));
    overflow: hidden;
    box-shadow: 0 40px 90px rgba(180, 138, 74, 0.2);
}

.overview-feature-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 15% 0%, rgba(255, 255, 255, 0.45), rgba(245, 232, 210, 0.4) 55%, transparent 85%);
    opacity: 0.82;
    pointer-events: none;
}

.overview-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(2rem, 3.75vw, 3rem);
}

.feature-card {
    position: relative;
    padding: 2rem 1.75rem;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(227, 197, 151, 0.32);
    box-shadow: 0 22px 48px rgba(180, 138, 74, 0.14);
    display: grid;
    gap: 1.25rem;
    place-items: center;
    text-align: center;
    color: var(--text-dark);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.feature-card:hover,
.feature-card:focus-within {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(180, 138, 74, 0.22);
    border-color: rgba(227, 197, 151, 0.42);
}

.feature-card img { width: 56px; height: 56px; object-fit: contain; margin: 0 auto; }

.feature-card h3 {margin: 0; font-size: 1.18rem; color: #3b2416;}

.feature-card p {margin: 0;font-size: 0.95rem; color: rgba(59, 36, 22, 0.75);}

.overview-lifestyle {
    margin-top: clamp(2.5rem, 5.5vw, 3.5rem);
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 5vw, 3.5rem);
    align-items: stretch;
}

.lifestyle-text {
    margin-top: 15%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
    max-width: 420px;
}

.lifestyle-text h3 {
    text-align: left;
    margin: 0 0 1.25rem;
    font-size: clamp(2rem, 3.2vw, 2.6rem);
    color: #3b2416;
}

.lifestyle-text p {
    text-align: left;
    margin: 0;
    color: rgba(59, 36, 22, 0.82);
    line-height: 1.8;
}

.lifestyle-text .btn-whatsapp {
    align-self: flex-start;
}

.lifestyle-carousel { position: relative; border-radius: 0; overflow: visible; box-shadow: none; touch-action: pan-y; max-width: min(100%,1180px); margin: 0 auto; }

.carousel-track {
    position: relative;
    display: grid;
    width: 100%;
    overflow: hidden;
    cursor: grab;
    touch-action: pan-y;
    user-select: none;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-slide {grid-area: 1 / 1;opacity: 0;transition: opacity 0.6s ease;height: 100%;}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {display: block; width: 100%;height: 100%; object-fit: contain;}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 0;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(180, 138, 74, 0.4);
    background: rgba(245, 232, 210, 0.3);
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.carousel-dot::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--sunset-deep);
    transform: scale(0);
    transition: transform var(--transition);
}

.carousel-dot.active::after,
.carousel-dot:hover::after {
    transform: scale(1);
}

.carousel-dot:focus {
    outline: 2px solid var(--sunset-deep);
    outline-offset: 2px;
}

.carousel-dot.active {
    border-color: var(--sunset-deep);
    background: rgba(245, 232, 210, 0.6);
}

.layout .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.layout .container > h2 {
    margin-bottom: 0.75rem;
}

.layout .container > .lead {
    margin-bottom: 1.35rem;
}

.layout .container > * {
    width: 100%;
}

.layout-switch { display: inline-flex; justify-content: center; align-items: center; gap: 1rem; margin: 0 auto; padding: 0; background: transparent; order: 2; align-self: center; }

.layout-toggle {   border: 2px solid rgba(227, 197, 151, 0.45);   background: rgba(252, 243, 226, 0.5);   padding: 0.85rem 1.75rem;   border-radius: 999px;   font-weight: 700;   font-size: 1rem;   font-family: "Manrope", "Segoe UI", sans-serif;   letter-spacing: 0.02em;   color: var(--text-muted);   cursor: pointer;   transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);}

.layout-toggle.active {   background: linear-gradient(135deg, #d9ba7b 0%, #f1d9a8 100%);   color: var(--text-dark);   border-color: rgba(180, 138, 74, 0.55);   box-shadow: 0 20px 44px rgba(180, 138, 74, 0.26);}

.layout-content {
    position: relative;
    margin-top: 0rem;
    width: 100%;
    order: 3;
}

.layout-panel {
    display: none;
    gap: clamp(2rem, 6vw, 4rem);
    align-items: center;
    background: linear-gradient(150deg, rgba(252, 240, 220, 0.9), rgba(240, 220, 190, 0.66));
    border: 1px solid rgba(227, 197, 151, 0.34);
    border-radius: 32px;
    padding: clamp(2rem, 6vw, 3rem);
    box-shadow: 0 32px 76px rgba(180, 138, 74, 0.22);
}

.layout-panel.active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.layout-visual img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(43, 27, 22, 0.24);
}

.layout-info {
    display: grid;
    gap: 0.5rem;
}

.layout-info h3 {
    margin: 0 0 0.75rem;
    font-size: 1.8rem;
    color: var(--text-dark);
}

.layout-info .layout-lead {
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    color: rgba(59, 36, 22, 0.72);
    text-transform: uppercase;
}

.layout-facts {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.85rem;
}

.layout-facts li {
    padding-left: 1.4rem;
    position: relative;
    color: var(--text-muted);
}

.layout-facts li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--sunset-deep);
}


.layout-info .layout-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 0;
    margin-top: 0.5rem;
}

.location-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
    gap: 2rem;
}

.location-text ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.location-text li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-muted);
}

.location-text li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--sunset-deep);
}

.location-map {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(227, 197, 151, 0.28);
    min-height: 320px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact {
    background: linear-gradient(180deg, rgba(252, 239, 214, 0.65) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.contact .container > h2,
.contact .lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.contact .lead {
    max-width: 560px;
}

.contact-form {
    background: var(--white);
    border-radius: 28px;
    padding: clamp(2rem, 5vw, 3rem);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(227, 197, 151, 0.28);
}

.form-grid {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-grid-visit {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.form-grid-visit .field {
    flex: 1 1 min(220px, 260px);
}

.form-grid .field {
    display: flex;
    flex-direction: column;
    font-weight: 600;
    gap: 0.5rem;
}

.field-label {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
    font: inherit;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(115, 92, 82, 0.25);
    border-radius: 16px;
    background: rgba(243, 223, 193, 0.32);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
    border-color: var(--sunset-deep);
    box-shadow: 0 0 0 4px rgba(227, 197, 151, 0.25);
    outline: none;
}

.field-optional {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--sunset-deep);
}

.form-hint {
    font-size: 0.85rem;
    color: rgba(59, 36, 22, 0.65);
    margin: -0.25rem 0 1.1rem;
    text-align: center;
}

.form-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-align: center;
    border-radius: 14px;
    padding: 0.85rem 1.1rem;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

@media (min-width: 1081px) {
    .form-actions {
        justify-content: center;
    }
    .form-actions .btn {
        min-width: 260px;
        padding: 1rem 3rem;
        font-size: 1.05rem;
    }
}

.site-footer {
    background: rgba(43, 27, 22, 0.92);
    color: rgba(255, 255, 255, 0.85);
    padding: 2.25rem 0;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-content .brand img {
    height: 40px;
}

.footer-info {
    text-align: right;
}

.chat-widget {
    position: fixed;
    right: 24px;
    bottom: 12px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    pointer-events: none;
}

.chat-trigger {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: none;
    background: transparent;
    box-shadow: none;
    cursor: pointer;
    padding: 0;
    animation: breathe 2.8s ease-in-out infinite;
    position: relative;
    pointer-events: auto;
}

.chat-trigger::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 2px solid rgba(227, 197, 151, 0.45);
    animation: pulse 2.8s ease-in-out infinite;
}

.chat-trigger img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes breathe {
    0%, 100% {
        transform: scale(1);
        box-shadow: none;
    }
    50% {
        transform: scale(1.05);
        box-shadow: none;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}

.chat-window {
    width: min(320px, 90vw);
    background: var(--white);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(180, 138, 74, 0.2);
    padding: 1.5rem;
    border: 1px solid rgba(227, 197, 151, 0.3);
    transform: translateY(20px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
    position: absolute;
    right: 0;
    bottom: 88px;
    pointer-events: auto;
}

.chat-window.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.chat-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(227, 197, 151, 0.22);
    color: var(--sunset-deep);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-header {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
}

.chat-header img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(227, 197, 151, 0.5);
}

.chat-name {
    margin: 0;
    font-weight: 700;
}

.chat-role {
    margin: 0;
    color: var(--sunset-deep);
    font-size: 0.85rem;
    font-weight: 600;
}

.chat-body {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

/* =1080px ??(?? =1024px ??) */
@media (max-width: 1080px) {
  /* nav / header */
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-bar { padding-inline: 4vw; /* =520 ????? 5vw */ }
  .header-bar .brand { margin-right: auto; }
  .header-actions { display: none; }

  /* hero */
  .hero {
    align-items: center;
    padding: clamp(5rem, 10vw, 6.5rem) 0 4.5rem;
    min-height: auto;
    aspect-ratio: 3 / 4;
  }
  .hero::before {
    background-image: url("../image/Mutiara-Lake-BG_NB-WAP.jpg");
    background-position: center top;
  }
  .hero-content {
    width: 100%;
    padding-inline: 6vw;          /* =520 ????? 7vw */
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 0;
    align-items: flex-end;
    text-align: right;
  }
  .hero-headline .eyebrow {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
  }
  .hero-headline .eyebrow span { display: block; }
  .hero-headline h1 { font-size: clamp(1.9rem, 7.5vw, 2.8rem); }
  .hero-headline .lead {
    max-width: min(60%, 260px);
    font-size: 0.9rem;
    align-self: flex-end;
    line-height: 1.55;
  }
  .hero-headline .btn-whatsapp {
    padding: 0.55rem 1.1rem;
    min-width: 0;
    font-size: 0.85rem;
  }

  /* overview */
  .overview-feature-wrap { padding: clamp(2rem, 8vw, 2.75rem); }
  .overview-feature-wrap::after {
    background-size: 70% auto;          /* ? =1024 ? 60% */
    background-position: 150% 50%;       /* ? =1024 ? 135% center */
  }
  .overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .overview-lifestyle { grid-template-columns: 1fr; gap: 2.5rem; }
  .lifestyle-text { align-items: center; text-align: center; }
  .lifestyle-text h3,
  .lifestyle-text p { text-align: center; } /* ???? */
  .lifestyle-text .btn-whatsapp { margin: 0 auto; }
  .overview-cta { display: flex; align-items: center; justify-content: center; margin: 0 auto 2.5rem; min-width: 0; width: fit-content; padding-inline: 1.75rem; }
  .overview .container { width: 100%; }
  .overview-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  /* layout */
  .layout-panel { text-align: center; }
  .layout-panel.active { grid-template-columns: 1fr; }
  .layout-visual { margin-bottom: 1.75rem; }
  .layout-info h3,
  .layout-info .layout-lead { text-align: center; }
  .layout-facts { max-width: 360px; margin: 0 auto; text-align: left; }
  .layout-content { order: 3; }
  .layout-panel { padding: clamp(1.75rem, 8vw, 2.4rem); }
  .layout-toggle {
    border: 2px solid rgba(227, 197, 151, 0.45);
    background: rgba(252, 243, 226, 0.5);
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    font-family: "Manrope", "Segoe UI", sans-serif;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    cursor: pointer;
    transition: background var(--transition), color var(--transition),
                box-shadow var(--transition), border-color var(--transition),
                transform var(--transition);
  }
  .layout-toggle.active {
    background: linear-gradient(135deg, #d9ba7b 0%, #f1d9a8 100%);
    color: var(--text-dark);
    border-color: rgba(180, 138, 74, 0.55);
  }
  .layout-info .layout-cta {
    margin-left: auto; margin-right: auto;
    width: 100%; max-width: 240px;
  }

  /* footer / form */
  .footer-info { text-align: left; }
  .form-actions { justify-content: center; }

  .chat-trigger { width: 58px; height: 58px; }
  .chat-window { border-radius: 20px; padding: 1.25rem; }

  .location-flex{ grid-template-columns:1fr;}
}

/* =520px ????(???????) */
@media (max-width: 520px) {
  .header-bar { padding-inline: 5vw; }
  .brand img { height: 40px; }

  .hero {
    padding: clamp(4.75rem, 18vw, 6.5rem) 0 4rem;
    align-items: center;
  }
  .hero-content {
    gap: 1.75rem;
    padding-inline: 7vw;
    margin-top: 0; margin-bottom: 0;
  }
  .hero-headline { width: 100%; }
  .hero-headline h1 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .hero-headline .lead {
    max-width: min(60%, 240px);
    font-size: 0.9rem;
    align-self: flex-end;
    line-height: 1.6;
  }
  .hero-headline .btn-whatsapp {
    padding: 0.5rem 1rem; min-width: 0; font-size: 0.82rem;
  }

  .overview-feature-wrap { padding: clamp(1.75rem, 10vw, 2.25rem); }
  .overview-feature-wrap::after {
    background-size: 95% auto;
    background-position: 190% center;
    opacity: 0.7;
  }
  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }
  .overview .container { width: 100%; }
  .overview-feature-wrap { padding: 1rem; }
  .overview-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .feature-card { padding: 1.1rem; }
  .gallery .container {
    width: 100vw;
    max-width: none;
    padding: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .lifestyle-carousel {
    border-radius: 0;
  }
  .layout .container {
    width: 100vw;
    max-width: none;
    padding: clamp(1.75rem, 8vw, 2.4rem) clamp(1rem, 4vw, 1.5rem);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .layout-panel {
    border-radius: 18px;
    padding: clamp(1.5rem, 7vw, 2rem);
  }
  .location .container {
    width: 100vw;
    max-width: none;
    padding: clamp(2.2rem, 8vw, 3rem) clamp(1rem, 4vw, 1.5rem);
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
  }
  .location-visual img {
    border-radius: 18px;
  }
}

/* =400px */
@media (max-width: 400px) {
  .overview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}


.form-alert {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: min(320px, 90vw);
    background: rgba(252, 239, 214, 0.95);
    border: 1px solid rgba(227, 197, 151, 0.35);
    box-shadow: 0 24px 48px rgba(180, 138, 74, 0.2);
    border-radius: 24px;
    padding: 1.25rem 1.5rem;
    display: none;
    z-index: 1200;
}

.form-alert.show {
    display: block;
    animation: fadeSlide 0.35s ease;
}

.form-alert.success {
    background: rgba(214, 249, 229, 0.95);
    border-color: rgba(56, 183, 114, 0.55);
}

.form-alert.error {
    background: rgba(255, 229, 217, 0.95);
    border-color: rgba(227, 102, 67, 0.6);
}

.form-alert.success h3 {
    color: #2f7a54;
}

.form-alert.error h3 {
    color: #bb4b2c;
}

.form-alert h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.form-alert p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-alert button {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.6);
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(43, 27, 22, 0.15);
}

.form-alert button:hover,
.form-alert button:focus {
    background: rgba(255, 255, 255, 0.8);
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.layout-toggle:not(.active):hover, .layout-toggle:not(.active):focus {   border-color: rgba(180, 138, 74, 0.65);   box-shadow: 0 12px 28px rgba(180, 138, 74, 0.24);   background: rgba(250, 238, 214, 0.65);   transform: translateY(-1px);   outline: none;}

/* Lightbox styles */
.lightbox-overlay{position:fixed;inset:0;background:rgba(0,0,0,0.8);display:none;align-items:center;justify-content:center;z-index:2000;padding:2rem;}
.lightbox-overlay.open{display:flex;}
.lightbox-overlay img{max-width:95vw;max-height:90vh;border-radius:12px;box-shadow:0 30px 80px rgba(0,0,0,0.5);} 
.lightbox-close{position:absolute;top:18px;right:18px;width:38px;height:38px;border:none;border-radius:50%;background:rgba(255,255,255,0.8);font-size:1.25rem;cursor:pointer}

/* Mobile adjustments: make feature-card grid 2-per-row full width */
@media (max-width: 768px) {
  .overview .container { width: 100%; }
  .overview-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery .container {
    width: 100vw;
    max-width: none;
    padding: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .lifestyle-carousel {
    max-width: none;
    width: 100%;
  }
  .carousel-track {
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 0;
  }
  .carousel-slide img {
    object-fit: contain;
  }
}
@media (max-width: 520px) {
  .overview .container { width: 100%; }
  .overview-feature-wrap { padding: 1rem; }
  .overview-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .feature-card { padding: 1.1rem; }
}

/* location new layout */
.location .container {
    background: rgba(245, 232, 210, 0.92);
    border: 1px solid rgba(180, 138, 74, 0.2);
    border-radius: 36px;
    padding: clamp(2.75rem, 6.5vw, 3.9rem);
    box-shadow: 0 32px 72px rgba(180, 138, 74, 0.18);
    overflow: hidden;
}

.location .container > h2,
.location .container > .lead {
    text-align: center;
}

.location-flex{ display:grid; grid-template-columns: 2fr 1fr; gap: clamp(1rem,3vw,2rem); align-items:stretch; }
.location-visual{ display:flex; align-items:stretch; justify-content:center; width:100%; }
.location-visual img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  border:2px solid rgba(180,138,74,0.25);
  border-radius:28px;
  box-shadow:0 22px 48px rgba(180,138,74,0.18);
  flex:1;
}
.location-accordion{ display:grid; gap:.75rem; }
.location-accordion,
.location-accordion * {
  color:#3b2416;
}
.accordion-item{
  border:1px solid rgba(227,197,151,.32);
  border-radius:16px;
  overflow:hidden;
  background:var(--white);
  box-shadow:0 16px 32px rgba(180,138,74,0.15);
}
.accordion-header{
  width:100%;
  text-align:left;
  border:none;
  background:transparent;
  padding:.9rem 1rem;
  font-weight:700;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#3b2416;
}
.accordion-header::after{
  content:"\25BC";
  font-size:0.85rem;
  color:inherit;
  transition:transform var(--transition);
}
.accordion-header[aria-expanded='true']{
  background:rgba(245, 232, 210, 0.45);
}
.accordion-header[aria-expanded='true']::after{
  transform:rotate(180deg);
}
.accordion-header svg{ flex-shrink:0; }
.accordion-panel{
  display:none;
  padding:.25rem 1rem 1rem;
  background:rgba(245, 232, 210, 0.15);
  border-top:1px solid rgba(227,197,151,0.24);
}
.accordion-panel.open{ display:block; }
.location-list{ list-style:none; margin:0; padding:0; display:grid; gap:.5rem; }
.location-list li{ display:flex; justify-content:space-between; align-items:baseline; gap:.75rem; }
.location-list .left{ text-align:left; }
.location-list .right{ text-align:right; color:rgba(59, 36, 22, 0.65); white-space:nowrap; }
@media(max-width:1024px){.location-flex{ grid-template-columns:1fr; }}
