:root {
    --background: #f8f5ef;
    --foreground: #1a1a1a;
    --primary: #0c2b22;
    --primary-soft: #173c31;
    --secondary: #2a4a3a;
    --accent: #c9a84c;
    --accent-light: #e2c06a;
    --accent-dark: #a8842e;
    --muted: #e8e2d9;
    --muted-foreground: #6b6560;
    --card: #ffffff;
    --border: #d9d0c3;
    --shadow: 0 22px 60px rgba(12, 43, 34, 0.14);
    --radius: 18px;
    --font-sans: "DM Sans", Arial, sans-serif;
    --font-serif: "Cormorant Garamond", Georgia, serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: var(--font-sans);
    -webkit-font-smoothing: antialiased;
}

body.no-scroll {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.grain-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.06'/%3E%3C/svg%3E");
}

#page-content {
    transform: translateY(0);
    opacity: 1;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

body.page-is-transitioning #page-content {
    opacity: 0.72;
    transform: translateY(8px);
}

.section-inner {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.section-inner.narrow {
    width: min(100% - 32px, 860px);
}

.center {
    text-align: center;
}

.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;
}

.section {
    padding: 92px 0;
}

.bg-ivory {
    background: var(--background);
}

.bg-muted {
    background: rgba(232, 226, 217, 0.48);
}

.bg-primary {
    background: var(--primary);
    color: #fff;
}

.section-heading {
    margin-bottom: 52px;
}

.section-heading.left {
    text-align: left;
    margin-bottom: 32px;
}

.section-label {
    margin: 0 0 14px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.section-heading h2,
.content-stack h2,
.cta-band h2 {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.08;
    font-weight: 650;
    letter-spacing: 0.03em;
}

.bg-primary .section-heading h2,
.stats-section h2 {
    color: #fff;
}

.section-heading p:last-child,
.brand-copy-large,
.content-stack p,
.cta-band p {
    color: var(--muted-foreground);
    line-height: 1.75;
}

.bg-primary .section-heading p:last-child,
.bg-primary .content-stack p {
    color: rgba(255, 255, 255, 0.62);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 13px 28px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

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

.btn-gold {
    color: var(--primary);
    background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--accent-dark));
    box-shadow: 0 12px 30px rgba(201, 168, 76, 0.32);
}

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

.btn-outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.04);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.14);
}

.btn-outline-dark {
    color: var(--primary);
    border-color: rgba(12, 43, 34, 0.42);
    background: transparent;
}

.btn-outline-dark:hover {
    color: #fff;
    background: var(--primary);
}

.full-btn {
    width: 100%;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-header.is-scrolled {
    background: rgba(248, 245, 239, 0.9);
    border-bottom: 1px solid rgba(217, 208, 195, 0.55);
    box-shadow: 0 10px 32px rgba(12, 43, 34, 0.08);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: min(100% - 32px, 1180px);
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    color: #fff;
}

.site-header.is-scrolled .brand {
    color: var(--primary);
}

.brand-logo {
    display: block;
    width: 174px;
    height: 62px;
    object-fit: contain;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--primary);
    background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--accent-dark));
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--accent);
    font-size: 10px;
    letter-spacing: 0.28em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
}

.site-header.is-scrolled .desktop-nav {
    color: var(--foreground);
}

.desktop-nav a,
.nav-dropdown-btn {
    position: relative;
    transition: color 0.2s ease;
}

.desktop-nav a:hover,
.nav-dropdown-btn:hover {
    color: var(--accent);
}

.desktop-nav a.is-active,
.nav-dropdown.is-active .nav-dropdown-btn {
    color: var(--accent);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 16px 0;
    border: 0;
    background: none;
    color: inherit;
    font-weight: 700;
}

.nav-dropdown-btn svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-btn svg {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 260px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 10px);
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    color: var(--foreground);
    box-shadow: var(--shadow);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.nav-dropdown-menu a:last-child {
    border-bottom: 0;
}

.nav-dropdown-menu a:hover {
    background: var(--muted);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: #fff;
}

.site-header.is-scrolled .mobile-toggle {
    background: var(--muted);
}

.site-header.is-scrolled .mobile-toggle span {
    background: var(--primary);
}

.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.mobile-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(35, 35, 35, 0.72);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-menu {
    position: relative;
    width: min(82vw, 408px);
    max-height: calc(100svh - 64px);
    margin: auto;
    padding: 44px 28px 30px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: linear-gradient(135deg, rgba(147, 140, 78, 0.46), rgba(7, 45, 32, 0.76));
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(34px) saturate(118%);
    -webkit-backdrop-filter: blur(34px) saturate(118%);
    color: #fff;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.35) transparent;
}

.mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 42px;
}

.mobile-menu .brand-logo {
    width: 78px;
    height: 32px;
    border-radius: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.14);
}

.mobile-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    font-size: 34px;
    font-weight: 300;
    line-height: 1;
    opacity: 0.92;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.mobile-nav {
    display: grid;
    gap: 0;
}

.mobile-nav > a {
    position: relative;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.86);
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.18);
}

.mobile-nav > a.is-active {
    color: var(--accent);
}

.mobile-nav > a.is-active::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 4px;
    height: 24px;
    border-radius: 999px;
    background: var(--accent);
    transform: translateY(-50%);
}

.mobile-destinations {
    padding: 20px 0 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-destinations.is-active p {
    color: var(--accent);
}

.mobile-destinations p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.mobile-destinations a {
    display: block;
    padding: 10px 0 10px 14px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 700;
}

.mobile-enquire {
    width: 100%;
    margin-top: 28px;
}

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: var(--primary);
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 43, 34, 0.88), rgba(12, 43, 34, 0.54) 42%, rgba(12, 43, 34, 0.16));
}

.home-hero {
    display: grid;
    place-items: center;
    padding: 250px 16px 56px;
}

.hero-content,
.location-hero-content,
.inner-hero-content {
    position: relative;
    z-index: 2;
}

.hero-content {
    width: min(100%, 980px);
    text-align: center;
    pointer-events: none;
    transform: translateY(86px);
}

.hero-actions,
.hero-actions * {
    pointer-events: auto;
}

.eyebrow-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 999px;
    color: var(--accent);
    background: rgba(201, 168, 76, 0.12);
    box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.08), 0 0 22px rgba(255, 255, 255, 0.08);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    animation: badgeGlowPulse 3.4s ease-in-out infinite;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.8);
}

.eyebrow-text {
    display: inline-block;
    width: 0;
    max-width: max-content;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    animation:
        eyebrowTyping 2.2s steps(32, end) 0.5s forwards,
        typingCursorBlink 0.78s step-end 0.5s 5,
        typingCursorHide 0.01s linear 4.6s forwards;
}

.hero h1,
.location-hero h1,
.inner-hero h1 {
    margin: 0;
    font-family: var(--font-serif);
    font-size: clamp(3.1rem, 8vw, 7rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: 0.07em;
}

.hero-subtitle,
.location-tagline {
    margin: 20px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 4vw, 3rem);
    font-style: italic;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.scroll-cue {
    margin-top: 54px;
    color: rgba(255, 255, 255, 0.42);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-cue span {
    display: block;
    margin-top: 7px;
}

.hero-arch {
    position: absolute;
    top: 128px;
    left: 50%;
    z-index: 1;
    width: min(100%, 1080px);
    height: 340px;
    transform: translateX(-50%);
    perspective: 1200px;
    pointer-events: auto;
}

.arch-card {
    --arch-rotate: 0deg;
    position: absolute;
    width: 132px;
    height: 132px;
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42);
    opacity: 0;
    pointer-events: auto;
    transform: rotate(var(--arch-rotate));
    transform-style: preserve-3d;
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.42s ease, filter 0.42s ease;
    will-change: opacity, transform;
}

.hero-arch:not(.is-ready) .arch-card {
    pointer-events: none;
}

.arch-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
    background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.34) 42%, transparent 66%);
    opacity: 0;
    transform: translateX(-120%);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.arch-card:hover {
    z-index: 6;
    transform: translateY(-12px) rotate(var(--arch-rotate)) scale(1.08);
    box-shadow: 0 28px 66px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.28);
    filter: saturate(1.08) brightness(1.05);
}

.arch-card:hover::after {
    opacity: 1;
    transform: translateX(120%);
}

.arch-card-frame {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: inherit;
    clip-path: inset(0 100% 0 0 round 18px);
    transform: translateX(-46px) rotateY(76deg) scale(0.9);
    transform-origin: left center;
    filter: blur(10px) saturate(0.75) brightness(0.9);
    opacity: 0;
    backface-visibility: hidden;
    will-change: transform, clip-path, opacity, filter;
}

.arch-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
}

.hero-arch.is-ready .arch-card {
    animation: heroCardFadeIn 0.2s ease forwards;
    animation-delay: var(--hero-card-delay, 160ms);
}

.hero-arch.is-ready .arch-card-frame {
    animation: heroCardFlipExpose 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--hero-card-delay, 160ms);
}

.hero-arch.is-ready .arch-card img {
    animation: heroCardImageSettle 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--hero-card-delay, 160ms);
}

.arch-1 { left: 2%; top: 64%; --arch-rotate: -38deg; }
.arch-2 { left: 12%; top: 36%; --arch-rotate: -25deg; }
.arch-3 { left: 23%; top: 14%; --arch-rotate: -14deg; }
.arch-4 { left: 37%; top: 4%; --arch-rotate: -4deg; }
.arch-5 { left: 51%; top: 4%; --arch-rotate: 4deg; }
.arch-6 { left: 64%; top: 14%; --arch-rotate: 14deg; }
.arch-7 { left: 76%; top: 36%; --arch-rotate: 25deg; }
.arch-8 { left: 86%; top: 64%; --arch-rotate: 38deg; }

.brand-intro {
    padding: 70px 0;
    background: var(--primary);
}

.brand-quote {
    margin: 0;
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    font-style: italic;
    line-height: 1.3;
}

.brand-copy-large {
    max-width: 720px;
    margin: 24px auto 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 18px;
}

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

.destination-card {
    min-height: 374px;
    border-radius: 22px;
    overflow: hidden;
    background: var(--primary);
    box-shadow: 0 14px 38px rgba(12, 43, 34, 0.08);
}

.destination-card a,
.destination-card img,
.card-scrim {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.destination-card a {
    min-height: 374px;
}

.destination-card img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.destination-card:hover img {
    transform: scale(1.07);
}

.card-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 43, 34, 0.94), rgba(12, 43, 34, 0.38) 56%, transparent);
}

.destination-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 26px;
    color: #fff;
    transition: transform 0.35s ease;
}

.destination-card:hover .destination-content {
    transform: translateY(-5px);
}

.destination-content p {
    margin: 0 0 7px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.destination-content h3 {
    margin: 0 0 8px;
    font-family: var(--font-serif);
    font-size: 27px;
    font-weight: 600;
}

.destination-desc {
    display: block;
    max-height: 0;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.55;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.destination-card:hover .destination-desc {
    max-height: 68px;
    opacity: 1;
}

.destination-meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
}

.destination-meta strong {
    color: var(--accent);
}

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

.lifestyle-card {
    position: relative;
    min-height: 310px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--primary);
}

.lifestyle-card.is-tall {
    grid-row: span 2;
    min-height: 644px;
}

.lifestyle-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lifestyle-card:hover img {
    transform: scale(1.05);
}

.lifestyle-card span {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 43, 34, 0.82), rgba(12, 43, 34, 0.18), transparent);
}

.lifestyle-card p {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
    line-height: 1.18;
}

.reason-grid,
.testimonial-grid,
.investment-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

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

.info-card,
.testimonial-card,
.detail-card,
.contact-card,
.success-panel,
.popup-card {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--card);
    box-shadow: 0 10px 32px rgba(12, 43, 34, 0.05);
}

.info-card {
    padding: 30px;
}

.card-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 16px;
    color: var(--primary);
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.24), rgba(12, 43, 34, 0.08));
    box-shadow: inset 0 0 0 1px rgba(201, 168, 76, 0.18);
}

.card-icon svg {
    width: 27px;
    height: 27px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-card h3,
.testimonial-card strong,
.contact-card strong {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 23px;
    font-weight: 650;
}

.info-card p,
.testimonial-card p {
    color: var(--muted-foreground);
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch;
    gap: 18px;
}

.stat-item {
    min-height: 136px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 12px;
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.025);
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(201, 168, 76, 0.28);
    background: rgba(255, 255, 255, 0.045);
}

.stat-item strong {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: clamp(2.45rem, 3.8vw, 3.55rem);
    line-height: 1;
    white-space: nowrap;
}

.price-stat {
    gap: 5px;
    max-width: 100%;
    font-size: clamp(2.05rem, 2.4vw, 2.38rem) !important;
    letter-spacing: 0;
}

.price-stat span {
    display: block;
}

.price-stat small {
    font-family: var(--font-sans);
    font-size: 0.32em;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transform: translateY(-0.2em);
}

.price-stat em {
    width: 14px;
    height: 2px;
    flex: 0 0 14px;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.72);
}

.stat-item > span {
    min-height: 38px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
    line-height: 1.45;
}

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
    gap: 72px;
}

.image-feature {
    position: relative;
}

.image-feature > img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 34px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.floating-note {
    position: absolute;
    right: -24px;
    bottom: -24px;
    max-width: 260px;
    padding: 24px;
    border: 1px solid rgba(217, 208, 195, 0.65);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--primary);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
    line-height: 1.3;
}

.floating-note strong {
    display: block;
    font-size: 34px;
    font-style: normal;
    line-height: 1;
}

.floating-note span {
    display: block;
    margin-top: 6px;
    color: var(--muted-foreground);
    font-family: var(--font-sans);
    font-size: 12px;
    font-style: normal;
    letter-spacing: 0.04em;
}

.content-stack h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.content-stack blockquote {
    margin: 28px 0 0;
    padding: 10px 0 10px 24px;
    border-left: 2px solid var(--accent);
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 24px;
    font-style: italic;
    line-height: 1.35;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 390px;
    padding: 30px;
}

.stars {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 24px;
    color: var(--accent);
}

.stars svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: 0.7;
    filter: drop-shadow(0 2px 5px rgba(201, 168, 76, 0.28));
}

.testimonial-card p {
    margin: 0 0 24px;
    color: var(--foreground);
    font-family: var(--font-serif);
    font-size: 20px;
    font-style: italic;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.testimonial-person img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-person strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 14px;
}

.testimonial-person span,
.testimonial-person small {
    display: block;
    color: var(--muted-foreground);
    font-size: 12px;
}

.testimonial-person small {
    color: var(--accent-dark);
    font-weight: 700;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.card-faq {
    border-top: 0;
}

.card-faq .faq-item {
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #fff;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 0;
    border: 0;
    background: transparent;
    color: var(--primary);
    text-align: left;
}

.card-faq .faq-question {
    padding: 22px;
}

.faq-question span {
    font-family: var(--font-serif);
    font-size: 21px;
    font-weight: 650;
}

.faq-question i {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted-foreground);
    font-style: normal;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-question i svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
    background: var(--accent);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.card-faq .faq-answer p {
    padding: 0 22px 22px;
}

.location-faq-section {
    padding: 96px 0 88px;
}

.location-faq-inner {
    width: min(100% - 32px, 900px);
}

.location-card-faq .faq-item {
    margin-bottom: 16px;
    border: 1px solid rgba(217, 208, 195, 0.95);
    border-radius: 30px;
    background: #fff;
}

.location-card-faq .faq-question {
    min-height: 90px;
    padding: 0 30px;
}

.location-card-faq .faq-question span {
    color: #101010;
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0;
}

.location-card-faq .faq-question i {
    width: 24px;
    height: 24px;
    border: 0;
    background: transparent;
    color: var(--accent-dark);
}

.location-card-faq .faq-question i svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.8;
}

.location-card-faq .faq-item.is-open .faq-question {
    min-height: 74px;
    padding-bottom: 4px;
}

.location-card-faq .faq-item.is-open .faq-question i {
    background: transparent;
    color: var(--accent-dark);
}

.location-card-faq .faq-answer p {
    padding: 0 30px 32px;
    color: #555;
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 640px) {
    .location-faq-section {
        padding: 72px 0;
    }

    .location-card-faq .faq-question {
        min-height: 78px;
        padding: 0 22px;
    }

    .location-card-faq .faq-question span {
        font-size: 17px;
    }

    .location-card-faq .faq-answer p {
        padding: 0 22px 26px;
        font-size: 15px;
    }
}

.cta-band {
    padding: 86px 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--accent-dark));
    color: var(--primary);
}

.cta-band h2 {
    color: var(--primary);
}

.cta-band p {
    max-width: 560px;
    margin: 18px auto 0;
    color: rgba(12, 43, 34, 0.72);
    font-size: 18px;
}

.dark-label {
    color: rgba(12, 43, 34, 0.72);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.inner-hero {
    min-height: 460px;
    display: flex;
    align-items: flex-end;
    padding: 140px 0 72px;
}

.inner-hero-content,
.location-hero-content {
    width: min(100% - 32px, 1180px);
    margin: 0 auto;
}

.inner-hero h1 {
    max-width: 720px;
    font-size: clamp(3rem, 6vw, 5.4rem);
}

.inner-hero-content > p:last-child {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    align-items: start;
    gap: 70px;
}

.contact-form,
.form-stack {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

label span {
    display: block;
    margin-bottom: 8px;
    color: var(--foreground);
    font-size: 14px;
    font-weight: 700;
}

.form-field-label {
    display: block;
    margin-bottom: 8px;
    color: var(--foreground);
    font-size: 14px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 50px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    background: rgba(232, 226, 217, 0.36);
    color: var(--foreground);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(201, 168, 76, 0.8);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.16);
}

.phone-field {
    display: flex;
    align-items: center;
    min-height: 50px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(232, 226, 217, 0.36);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.phone-field:focus-within {
    border-color: rgba(201, 168, 76, 0.8);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.16);
}

.phone-field > span {
    align-self: stretch;
    display: inline-flex;
    align-items: center;
    padding: 0 15px;
    border-right: 1px solid var(--border);
    color: var(--primary);
    background: rgba(255, 255, 255, 0.55);
    font-weight: 800;
}

.phone-field input {
    min-height: 48px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.phone-field input:focus {
    box-shadow: none;
}

.custom-select {
    position: relative;
    z-index: 4;
}

.custom-select.is-open {
    z-index: 40;
}

.custom-select-trigger {
    width: 100%;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 14px;
    outline: none;
    background: rgba(232, 226, 217, 0.36);
    color: var(--foreground);
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus,
.custom-select.is-open .custom-select-trigger,
.custom-select.is-invalid .custom-select-trigger {
    border-color: rgba(201, 168, 76, 0.8);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.16);
}

.custom-select-trigger span {
    overflow: hidden;
    margin: 0;
    color: var(--foreground);
    font-size: 14px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-trigger svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    color: var(--accent-dark);
    transition: transform 0.2s ease;
}

.custom-select.is-open .custom-select-trigger svg {
    transform: rotate(180deg);
}

.custom-select-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    max-height: min(248px, 42vh);
    overflow: auto;
    padding: 8px;
    border: 1px solid rgba(217, 208, 195, 0.92);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 42px rgba(12, 43, 34, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.custom-select.is-open .custom-select-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 11px 12px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--foreground);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.custom-select-option:hover,
.custom-select-option:focus,
.custom-select-option[aria-selected="true"] {
    background: rgba(201, 168, 76, 0.16);
    color: var(--accent-dark);
}

.custom-select-option:active {
    transform: scale(0.99);
}

.inline-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted-foreground);
    font-size: 13px;
    line-height: 1.35;
    text-align: left;
}

.inline-check input {
    width: 17px;
    min-height: 17px;
    height: 17px;
    flex: 0 0 auto;
    accent-color: var(--accent);
}

.inline-check span {
    margin: 0;
    color: inherit;
    font-size: inherit;
    font-weight: 600;
}

.form-note {
    margin: 0;
    color: var(--muted-foreground);
    font-size: 12px;
    text-align: center;
}

.success-panel {
    padding: 42px;
    text-align: center;
}

.success-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    color: var(--primary);
    background: rgba(201, 168, 76, 0.22);
    font-size: 12px;
    font-weight: 900;
}

.success-panel h3,
.popup-card h3,
.callback-box h3 {
    margin: 0 0 10px;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 30px;
}

.success-panel p {
    color: var(--muted-foreground);
}

.contact-side {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

a.contact-card:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 168, 76, 0.55);
    box-shadow: var(--shadow);
}

.contact-card span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted-foreground);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.contact-card strong {
    display: block;
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: 1.45;
}

.contact-card small {
    display: block;
    margin-top: 5px;
    color: var(--muted-foreground);
}

.contact-card-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
}

.contact-card-icon.whatsapp-icon {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-card-icon.light-icon {
    background: rgba(12, 43, 34, 0.08);
    color: var(--primary);
}

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

.callback-box {
    padding: 28px;
    border-radius: 24px;
    background: var(--primary);
    color: #fff;
}

.callback-box h3 {
    color: #fff;
}

.callback-box p {
    color: rgba(255, 255, 255, 0.58);
}

.callback-form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.callback-form input {
    border-color: rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.callback-form input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.callback-success {
    color: var(--accent);
    font-weight: 700;
}

.location-hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 150px 0 78px;
    text-align: center;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
}

.location-price {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 20px;
}

.location-price strong {
    color: var(--accent);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.highlight-grid div {
    padding: 16px;
    border-radius: 16px;
    background: rgba(232, 226, 217, 0.62);
    color: var(--foreground);
    font-size: 14px;
    line-height: 1.4;
}

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

.detail-card {
    padding: 24px;
}

.detail-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--muted-foreground);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.detail-card strong {
    display: block;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.2;
}

.investment-card {
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.055);
}

.investment-card strong {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 42px;
    line-height: 1;
}

.investment-card h3 {
    margin: 0 0 12px;
    color: #fff;
}

.investment-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 0;
    border-radius: 18px;
    background: var(--muted);
}

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

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.82);
}

.lightbox,
.lead-popup {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.lightbox.is-open,
.lead-popup.is-open {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop,
.popup-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.88);
}

.lightbox-frame {
    position: relative;
    z-index: 1;
    width: min(100%, 980px);
    height: min(72vh, 620px);
    border-radius: 22px;
    overflow: hidden;
}

.lightbox-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close,
.popup-close {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    color: #fff;
    font-size: 20px;
}

.popup-backdrop {
    background: rgba(12, 43, 34, 0.68);
    backdrop-filter: blur(6px);
}

.popup-card {
    position: relative;
    z-index: 1;
    width: min(100%, 440px);
    padding: 34px;
    text-align: center;
}

.popup-close {
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-color: var(--border);
    background: var(--muted);
    color: var(--muted-foreground);
}

.popup-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.popup-card small {
    display: block;
    margin-top: 12px;
    color: var(--muted-foreground);
}

.site-footer {
    padding: 64px 0 28px;
    background: var(--primary);
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.8fr 1fr 1.1fr;
    gap: 42px;
}

.footer-brand {
    color: #fff;
    margin-bottom: 18px;
}

.footer-logo {
    width: 190px;
    height: 68px;
}

.footer-about {
    max-width: 260px;
    color: rgba(255, 255, 255, 0.56);
    line-height: 1.7;
}

.social-row {
    display: flex;
    gap: 12px;
}

.social-row a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 800;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-row a:hover {
    transform: translateY(-2px);
    border-color: var(--accent);
    background: rgba(201, 168, 76, 0.12);
    color: var(--accent);
}

.social-row svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-title {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

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

.footer-list a,
.footer-list li {
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.5;
}

.footer-list a:hover {
    color: var(--accent);
}

.footer-rera {
    margin-top: 46px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.32);
    font-size: 12px;
    line-height: 1.7;
    text-align: center;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.35);
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    gap: 18px;
}

.floating-btn {
    position: fixed;
    z-index: 150;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease;
}

.floating-btn svg {
    width: 31px;
    height: 31px;
    display: block;
    fill: currentColor;
}

.floating-btn:hover {
    transform: scale(1.08);
}

.floating-whatsapp {
    right: 22px;
    bottom: 24px;
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.reveal-item {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.legal-hero {
    position: relative;
    overflow: hidden;
    padding: 150px 0 78px;
    background:
        linear-gradient(135deg, rgba(12, 43, 34, 0.94), rgba(23, 60, 49, 0.9)),
        url("/userside/images/image.webp") center/cover no-repeat;
    color: #fff;
}

.legal-hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -36% -10%;
    height: 220px;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.22), transparent 62%);
    pointer-events: none;
}

.legal-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 48px;
    align-items: end;
}

.legal-hero-copy h1 {
    max-width: 720px;
    margin: 0;
    color: #fff;
    font-family: var(--font-serif);
    font-size: clamp(3.6rem, 8vw, 6.7rem);
    font-weight: 650;
    line-height: 0.98;
}

.legal-hero-copy p:last-child {
    max-width: 680px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 19px;
    line-height: 1.75;
}

.legal-summary-card {
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.legal-summary-card span,
.legal-sidebar-card p,
.legal-highlight-card p {
    display: block;
    margin: 0 0 10px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.legal-summary-card strong {
    display: block;
    color: #fff;
    font-family: var(--font-serif);
    font-size: 34px;
}

.legal-summary-card p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.6;
}

.legal-section-wrap {
    padding: 86px 0;
}

.legal-layout {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 110px;
}

.legal-sidebar-card,
.legal-highlight-card,
.legal-card,
.legal-contact-panel {
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 18px 48px rgba(12, 43, 34, 0.06);
}

.legal-sidebar-card {
    padding: 22px;
}

.legal-sidebar-card nav {
    display: grid;
    gap: 8px;
}

.legal-sidebar-card a {
    padding: 11px 12px;
    border-radius: 12px;
    color: var(--muted-foreground);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.legal-sidebar-card a:hover {
    transform: translateX(2px);
    background: rgba(201, 168, 76, 0.14);
    color: var(--primary);
}

.legal-content {
    display: grid;
    gap: 22px;
}

.legal-highlight-card {
    padding: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 245, 239, 0.92));
}

.legal-highlight-card ul,
.legal-card ul {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.legal-highlight-card li,
.legal-card li {
    position: relative;
    padding-left: 24px;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.legal-highlight-card li::before,
.legal-card li::before {
    content: "";
    position: absolute;
    top: 0.74em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.13);
}

.legal-card {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 26px;
    padding: 34px;
    scroll-margin-top: 120px;
}

.legal-card-index {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: var(--accent);
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 700;
}

.legal-card h2,
.legal-contact-panel h2 {
    margin: 0 0 14px;
    color: var(--primary);
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
}

.legal-card p,
.legal-contact-panel p {
    margin: 0 0 14px;
    color: var(--muted-foreground);
    font-size: 16px;
    line-height: 1.8;
}

.legal-card p:last-child,
.legal-contact-panel p:last-child {
    margin-bottom: 0;
}

.legal-contact-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 32px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(255, 255, 255, 0.88));
}

.legal-contact-actions {
    display: flex;
    gap: 12px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

@keyframes eyebrowTyping {
    from {
        width: 0;
    }

    to {
        width: 35ch;
    }
}

@keyframes typingCursorBlink {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.92);
    }

    50% {
        border-color: transparent;
    }
}

@keyframes typingCursorHide {
    to {
        border-color: transparent;
    }
}

@keyframes badgeGlowPulse {
    0%, 100% {
        box-shadow: inset 0 0 16px rgba(255, 255, 255, 0.08), 0 0 20px rgba(255, 255, 255, 0.08);
    }

    50% {
        box-shadow: inset 0 0 18px rgba(255, 255, 255, 0.14), 0 0 30px rgba(255, 255, 255, 0.16);
    }
}

@keyframes heroCardFadeIn {
    to {
        opacity: 1;
    }
}

@keyframes heroCardFlipExpose {
    0% {
        clip-path: inset(0 100% 0 0 round 18px);
        transform: translateX(-52px) rotateY(78deg) scale(0.9);
        filter: blur(12px) saturate(0.7) brightness(0.88);
        opacity: 0;
    }

    38% {
        clip-path: inset(0 34% 0 0 round 18px);
        transform: translateX(-18px) rotateY(34deg) scale(0.98);
        filter: blur(4px) saturate(0.9) brightness(0.96);
        opacity: 0.88;
    }

    72% {
        clip-path: inset(0 0 0 0 round 18px);
        transform: translateX(6px) rotateY(-8deg) scale(1.035);
        filter: blur(0) saturate(1.08) brightness(1.02);
        opacity: 1;
    }

    100% {
        clip-path: inset(0 0 0 0 round 18px);
        transform: translateX(0) rotateY(0) scale(1);
        filter: none;
        opacity: 1;
    }
}

@keyframes heroCardImageSettle {
    0% {
        transform: translateX(-24px) scale(1.16);
    }

    100% {
        transform: translateX(0) scale(1);
    }
}

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

    .scroll-cue,
    .eyebrow-badge,
    .eyebrow-text,
    .arch-card,
    .arch-card-frame,
    .arch-card img {
        animation: none;
    }

    .eyebrow-text {
        width: auto;
        border-right: 0;
    }

    .arch-card,
    .arch-card-frame {
        opacity: 1;
    }

    .arch-card-frame {
        clip-path: inset(0 0 0 0 round 18px);
        transform: none;
        filter: none;
    }

    .arch-card img {
        transform: none;
    }
}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

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

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

    .contact-grid,
    .split-grid,
    .legal-hero-grid,
    .legal-layout,
    .legal-contact-panel {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .legal-sidebar {
        position: static;
    }

    .hero-arch {
        display: none;
    }

    .home-hero {
        padding-top: 128px;
    }

    .hero-content {
        transform: none;
    }

    .floating-note {
        right: 18px;
    }
}

@media (max-width: 760px) {
    .section {
        padding: 72px 0;
    }

    .nav-shell {
        min-height: 66px;
    }

    .brand-copy {
        display: none;
    }

    .brand-logo {
        width: 136px;
        height: 49px;
    }

    .nav-cta {
        display: none;
    }

    .hero h1,
    .location-hero h1 {
        font-size: clamp(2.6rem, 14vw, 4.1rem);
        letter-spacing: 0.045em;
    }

    .hero-subtitle,
    .location-tagline {
        font-size: 1.65rem;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }

    .destination-grid,
    .lifestyle-grid,
    .reason-grid,
    .stats-grid,
    .testimonial-grid,
    .detail-grid,
    .investment-grid,
    .gallery-grid,
    .footer-grid,
    .form-row,
    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .lifestyle-card.is-tall {
        min-height: 360px;
    }

    .destination-card,
    .destination-card a {
        min-height: 334px;
    }

    .floating-note {
        position: static;
        max-width: none;
        margin: -40px 16px 0;
    }

    .contact-grid {
        gap: 40px;
    }

    .legal-hero {
        padding: 118px 0 62px;
    }

    .legal-hero-copy h1 {
        font-size: clamp(3rem, 17vw, 4.8rem);
    }

    .legal-section-wrap {
        padding: 62px 0;
    }

    .legal-card {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .legal-contact-actions {
        flex-direction: column;
    }

    .callback-form {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .footer-bottom div {
        flex-wrap: wrap;
    }

}
