/* =====================================================
   AVS PRE-LAUNCH NH24
   Original Design — Not templated, not AI-typical
   Each section has its own unique character
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Unique palette — not the usual dark+gold */
    --ink:        #111119;
    --ink-2:      #1a1a26;
    --ink-3:      #232333;
    --terra:      #c4724e;
    --terra-light:#e8956e;
    --sage:       #7d9b76;
    --sage-light: #a3c49a;
    --cream:      #f5f0e8;
    --cream-dim:  #e8e0d4;
    --sand:       #d4c5b0;
    --lavender:   #9b8ec4;
    --rose:       #c4727a;
    --white:      #fafaf8;
    --text:       #b8b5ad;
    --text-dim:   #706d65;
    --text-dark:  #3a3832;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 0; }
body {
    font-family: 'DM Sans', sans-serif;
    background: var(--ink);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* =====================================================
   NAV — Floating pill style, not a bar
   ===================================================== */
.nav-float {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0;
    background: rgba(17,17,25,0.92);
    backdrop-filter: blur(24px) saturate(1.4);
    border: none;
    border-left: 1px solid rgba(255,255,255,0.06);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    border-radius: 60px 0 0 60px;
    padding: 6px 0 6px 20px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-float.scrolled {
    background: rgba(17,17,25,0.95);
    box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}
.nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--cream);
    letter-spacing: -0.5px;
    white-space: nowrap;
    margin-right: 8px;
}
.nav-logo span { color: var(--terra); }
.nav-links {
    display: flex;
    gap: 2px;
    list-style: none;
    margin-right: 8px;
}
.nav-links a {
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-radius: 50px;
    transition: all 0.3s;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--cream);
    background: rgba(255,255,255,0.06);
}
.nav-cta {
    background: var(--terra) !important;
    color: var(--cream) !important;
    font-weight: 600 !important;
    padding: 12px 26px !important;
    border-radius: 0 54px 54px 0 !important;
    margin: -6px -20px -6px 0;
}
.nav-cta:hover { background: var(--terra-light) !important; }
.nav-phone {
    padding: 0 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--cream);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    border-left: 1px solid rgba(255,255,255,0.08);
    margin-left: 4px;
    height: 24px;
    transition: color 0.3s;
}
.nav-phone i { color: var(--terra); font-size: 12px; }
.nav-phone:hover { color: var(--terra-light); }
.nav-phone-mob {
    display: none;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(196,114,78,0.15);
    color: var(--terra);
    font-size: 12px;
    font-weight: 600;
    align-items: center;
    gap: 6px;
    margin-left: 6px;
    white-space: nowrap;
    transition: all 0.3s;
}
.nav-phone-mob:hover { background: var(--terra); color: var(--cream); }
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    cursor: pointer;
    position: relative;
}
.nav-hamburger span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: var(--cream);
    position: absolute;
    left: 10px;
    transition: all 0.3s;
}
.nav-hamburger span:nth-child(1) { top: 12px; }
.nav-hamburger span:nth-child(2) { top: 17px; }
.nav-hamburger span:nth-child(3) { top: 22px; }

/* Mobile Slide Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(17,17,25,0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s;
}
.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}
.mobile-menu-inner {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: var(--ink-2);
    border-left: 1px solid rgba(255,255,255,0.06);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-menu.open .mobile-menu-inner {
    transform: translateX(0);
}
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: none;
    color: var(--cream);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.mobile-menu-close:hover { background: rgba(196,114,78,0.2); }
.mobile-menu-links {
    list-style: none;
    padding: 12px 0;
    flex: 1;
}
.mobile-menu-links li {
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.mobile-menu-links a {
    display: block;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.3s;
}
.mobile-menu-links a:hover {
    color: var(--cream);
    background: rgba(255,255,255,0.03);
    padding-left: 32px;
}
.mobile-menu-cta {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mobile-enquire-btn {
    width: 100%;
    padding: 14px;
    background: var(--terra);
    color: var(--cream);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.3s;
}
.mobile-enquire-btn:hover { background: var(--terra-light); }
.mobile-call-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.12);
    color: var(--cream);
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: border-color 0.3s;
}
.mobile-call-btn:hover { border-color: var(--terra); }

/* Mobile nav */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-bottom-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    font-size: 13px;
    font-weight: 600;
}
.mob-call { background: #2d7a4f; color: #fff; }
.mob-enquire { background: var(--terra); color: #fff; }

/* =====================================================
   HERO — Cinematic diagonal split, not a box
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg-wrap {
    position: absolute;
    inset: 0;
}
.hero-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(17,17,25,0.97) 0%, rgba(17,17,25,0.6) 50%, rgba(17,17,25,0.85) 100%),
        linear-gradient(to right, var(--ink) 0%, transparent 60%);
}
/* Diagonal cut at bottom */
.hero::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--ink);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 60px;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(196,114,78,0.12);
    border: 1px solid rgba(196,114,78,0.25);
    border-radius: 40px;
    font-size: 11px;
    font-weight: 600;
    color: var(--terra-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 32px;
}
.hero-tag::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--terra);
    border-radius: 50%;
    animation: blink 2s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(42px, 7vw, 80px);
    font-weight: 900;
    color: var(--cream);
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero h1 em {
    font-style: italic;
    color: var(--terra);
    display: inline-block;
}
.hero-sub {
    font-size: 18px;
    color: var(--text);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.6;
}

/* Stat row — floating pills not boxes */
.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 40px;
    font-size: 13px;
    backdrop-filter: blur(8px);
}
.hero-stat strong {
    color: var(--cream);
    font-weight: 700;
}
.hero-stat span { color: var(--text-dim); }
.hero-stat-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
}
.dot-terra { background: var(--terra); }
.dot-sage { background: var(--sage); }
.dot-lav { background: var(--lavender); }

/* CTA row */
.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--terra);
    color: var(--cream);
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-main:hover {
    background: var(--terra-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(196,114,78,0.3);
    color: var(--cream);
}
.btn-main .arrow {
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: transform 0.3s;
}
.btn-main:hover .arrow { transform: translateX(3px); }
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: var(--cream);
    border-radius: 14px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}
.btn-ghost:hover {
    border-color: var(--terra);
    color: var(--terra-light);
    background: rgba(196,114,78,0.05);
}

/* Right side — floating price tag (not a card) */
.hero-price-float {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
}
.price-tag {
    background: rgba(17,17,25,0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(196,114,78,0.2);
    border-radius: 24px;
    padding: 32px 28px;
    width: 280px;
}
.price-tag-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.price-tag-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--sage);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.price-tag-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--cream);
}
.price-tag-amount small {
    font-size: 12px;
    color: var(--text-dim);
    font-weight: 400;
}
.price-list { list-style: none; }
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-list li:last-child { border: none; }
.pl-type {
    font-size: 14px;
    font-weight: 600;
    color: var(--cream);
}
.pl-size {
    font-size: 11px;
    color: var(--text-dim);
    display: block;
    margin-top: 2px;
}
.pl-eoi {
    font-size: 13px;
    font-weight: 700;
    color: var(--terra);
}
.price-tag-btn {
    display: block;
    width: 100%;
    padding: 14px;
    margin-top: 20px;
    background: var(--terra);
    color: var(--cream);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
}
.price-tag-btn:hover { background: var(--terra-light); }

/* =====================================================
   OVERVIEW — Asymmetric bento, not 2-col
   ===================================================== */
.overview {
    padding: 100px 0 120px;
    position: relative;
}
.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 16px;
}
.og-label {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}
.og-label-line {
    width: 40px;
    height: 2px;
    background: var(--terra);
}
.og-label-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--terra);
    letter-spacing: 3px;
    text-transform: uppercase;
}
.og-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.15;
    margin-bottom: 24px;
}
.og-title span { color: var(--terra); }
.og-text {
    grid-column: 1 / 2;
    grid-row: 2;
}
.og-text p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}
.og-img-1 {
    grid-column: 2 / 3;
    grid-row: 2 / 4;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.og-img-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 380px;
}
.og-stats {
    grid-column: 3;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.og-stat-card {
    background: var(--ink-2);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s;
}
.og-stat-card:hover {
    border-color: rgba(196,114,78,0.2);
    transform: translateX(-4px);
}
.og-stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--terra);
    line-height: 1;
    min-width: 60px;
}
.og-stat-label {
    font-size: 13px;
    color: var(--text);
    line-height: 1.4;
}
.og-img-2 {
    grid-column: 1 / 2;
    grid-row: 3;
    border-radius: 16px;
    overflow: hidden;
    height: 180px;
}
.og-img-2 img { width: 100%; height: 100%; object-fit: cover; }
.og-desc {
    grid-column: 3;
    grid-row: 3;
    background: linear-gradient(135deg, rgba(125,155,118,0.1), rgba(125,155,118,0.02));
    border: 1px solid rgba(125,155,118,0.15);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.og-desc h4 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--sage-light);
    margin-bottom: 8px;
}
.og-desc p {
    font-size: 13px;
    color: var(--text);
    line-height: 1.6;
}

/* =====================================================
   HIGHLIGHTS — Horizontal scroll strip
   ===================================================== */
.highlights {
    padding: 80px 0;
    background: var(--ink-2);
    overflow: hidden;
    position: relative;
}
.hl-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    padding: 0 24px;
}
.hl-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--cream);
}
.hl-header h2 span { color: var(--sage); }
.hl-scroll-hint {
    font-size: 13px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hl-scroll-hint::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--text-dim);
}
.hl-strip {
    display: flex;
    gap: 20px;
    padding: 0 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}
.hl-strip::-webkit-scrollbar { display: none; }
.hl-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--ink-3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}
.hl-card:hover {
    border-color: rgba(196,114,78,0.2);
    transform: translateY(-4px);
}
.hl-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    position: absolute;
    top: -10px;
    right: 16px;
    line-height: 1;
}
.hl-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}
.hl-card h4 {
    font-size: 17px;
    color: var(--cream);
    margin-bottom: 8px;
    font-weight: 600;
}
.hl-card p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}
.ic-terra { background: rgba(196,114,78,0.12); color: var(--terra); }
.ic-sage { background: rgba(125,155,118,0.12); color: var(--sage); }
.ic-lav { background: rgba(155,142,196,0.12); color: var(--lavender); }
.ic-rose { background: rgba(196,114,122,0.12); color: var(--rose); }

/* =====================================================
   AMENITIES — Staggered grid, uneven sizes
   ===================================================== */
.amenities {
    padding: 100px 0;
    position: relative;
}
.amenities-header {
    text-align: center;
    margin-bottom: 56px;
}
.amenities-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--cream);
    margin-bottom: 8px;
}
.amenities-header h2 span { color: var(--lavender); }
.amenities-header p {
    color: var(--text-dim);
    font-size: 15px;
}
.am-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.am-item {
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    padding: 28px 12px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}
.am-item::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    border-radius: 16px;
}
.am-item:hover::before { opacity: 1; }
.am-item:hover { transform: translateY(-6px); border-color: transparent; box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.am-item i {
    font-size: 30px;
    transition: transform 0.4s;
    position: relative;
    z-index: 1;
}
.am-item:hover i { transform: scale(1.2) rotate(-5deg); }
.am-item span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.3s;
    position: relative;
    z-index: 1;
}
.am-item:hover span { color: var(--cream); }

/* Individual amenity colors */
.am-1 { background: rgba(196,114,78,0.06); }
.am-1::before { background: rgba(196,114,78,0.15); }
.am-1 i { color: var(--terra); }
.am-2 { background: rgba(125,155,118,0.06); }
.am-2::before { background: rgba(125,155,118,0.15); }
.am-2 i { color: var(--sage); }
.am-3 { background: rgba(155,142,196,0.06); }
.am-3::before { background: rgba(155,142,196,0.15); }
.am-3 i { color: var(--lavender); }
.am-4 { background: rgba(196,114,122,0.06); }
.am-4::before { background: rgba(196,114,122,0.15); }
.am-4 i { color: var(--rose); }

.amenities-cta {
    text-align: center;
    margin-top: 48px;
}

/* =====================================================
   PRICING — Side stack with animated connectors
   ===================================================== */
.pricing {
    padding: 100px 0;
    background: var(--ink-2);
    position: relative;
}
.pricing-header {
    text-align: center;
    margin-bottom: 56px;
}
.pricing-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--cream);
}
.pricing-header h2 span { color: var(--terra); }
.pricing-stack {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
/* Vertical line connector */
.pricing-stack::before {
    content: '';
    position: absolute;
    left: 32px;
    top: 40px;
    bottom: 40px;
    width: 2px;
    background: linear-gradient(to bottom, var(--terra), var(--sage), var(--lavender));
    opacity: 0.3;
}
.price-row {
    display: flex;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 16px;
    position: relative;
}
.price-dot {
    width: 64px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 28px;
    position: relative;
    z-index: 1;
}
.price-dot-circle {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--ink-2);
}
.pd-terra { background: var(--terra); box-shadow: 0 0 12px rgba(196,114,78,0.4); }
.pd-sage { background: var(--sage); box-shadow: 0 0 12px rgba(125,155,118,0.4); }
.pd-lav { background: var(--lavender); box-shadow: 0 0 12px rgba(155,142,196,0.4); }
.pd-rose { background: var(--rose); box-shadow: 0 0 12px rgba(196,114,122,0.4); }

.price-card {
    flex: 1;
    background: var(--ink-3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.35s;
}
.price-card:hover {
    border-color: rgba(196,114,78,0.2);
    transform: translateX(6px);
}
.price-card.featured {
    border-color: var(--terra);
    background: rgba(196,114,78,0.04);
}
.pc-left h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    color: var(--cream);
    font-weight: 600;
    margin-bottom: 4px;
}
.pc-left .pc-size {
    font-size: 13px;
    color: var(--text-dim);
}
.pc-left .pc-features {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.pc-feat {
    padding: 3px 10px;
    background: rgba(255,255,255,0.04);
    border-radius: 20px;
    font-size: 11px;
    color: var(--text);
}
.pc-right {
    text-align: right;
    flex-shrink: 0;
}
.pc-eoi-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.pc-eoi-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--terra);
    line-height: 1.2;
}
.pc-book {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 20px;
    background: var(--terra);
    color: var(--cream);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.pc-book:hover { background: var(--terra-light); }

.pricing-note {
    text-align: center;
    margin-top: 32px;
    font-size: 12px;
    color: var(--text-dim);
    line-height: 1.8;
}

/* =====================================================
   BENEFITS — Numbered vertical timeline
   ===================================================== */
.benefits {
    padding: 100px 0;
    position: relative;
}
.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.benefits h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--cream);
    margin-bottom: 40px;
}
.benefits h2 span { color: var(--sage); }
.bf-timeline {
    position: relative;
    padding-left: 60px;
}
.bf-timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--sage), var(--sage-light));
    opacity: 0.3;
}
.bf-item {
    position: relative;
    margin-bottom: 40px;
}
.bf-item:last-child { margin-bottom: 0; }
.bf-num {
    position: absolute;
    left: -60px;
    top: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 16px;
    z-index: 1;
}
.bf-num-1 { background: rgba(196,114,78,0.15); color: var(--terra); border: 2px solid rgba(196,114,78,0.3); }
.bf-num-2 { background: rgba(125,155,118,0.15); color: var(--sage); border: 2px solid rgba(125,155,118,0.3); }
.bf-num-3 { background: rgba(155,142,196,0.15); color: var(--lavender); border: 2px solid rgba(155,142,196,0.3); }
.bf-num-4 { background: rgba(196,114,122,0.15); color: var(--rose); border: 2px solid rgba(196,114,122,0.3); }
.bf-item h4 {
    font-size: 17px;
    color: var(--cream);
    margin-bottom: 6px;
}
.bf-item p {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}
.bf-cta-card {
    background: linear-gradient(160deg, rgba(125,155,118,0.08), rgba(125,155,118,0.02));
    border: 1px solid rgba(125,155,118,0.15);
    border-radius: 24px;
    padding: 48px 40px;
    position: sticky;
    top: 120px;
}
.bf-cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    color: var(--cream);
    margin-bottom: 12px;
}
.bf-cta-card p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 28px;
    line-height: 1.7;
}
.bf-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-sage {
    background: var(--sage);
    color: var(--cream);
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-sage:hover { background: var(--sage-light); transform: translateY(-2px); }

/* =====================================================
   LOCATION — Split with animated dots
   ===================================================== */
.location {
    padding: 100px 0;
    background: var(--ink-2);
}
.loc-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}
.loc-map {
    background: var(--ink-3);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Animated dots background */
.loc-map::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(196,114,78,0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(125,155,118,0.1) 1px, transparent 1px);
    background-size: 40px 40px, 60px 60px;
    background-position: 0 0, 20px 20px;
    animation: dotMove 20s linear infinite;
}
@keyframes dotMove {
    0% { background-position: 0 0, 20px 20px; }
    100% { background-position: 40px 40px, 80px 80px; }
}
.loc-map-content {
    position: relative;
    z-index: 1;
}
.loc-pin {
    width: 64px;
    height: 64px;
    background: rgba(196,114,78,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--terra);
    animation: pinBounce 2s infinite;
}
@keyframes pinBounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.loc-map h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 6px;
}
.loc-map p {
    color: var(--text-dim);
    font-size: 14px;
    margin-bottom: 16px;
}
.loc-address {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 20px;
}

.loc-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.loc-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s;
}
.loc-item:hover { background: rgba(255,255,255,0.02); padding-left: 28px; }
.loc-item:last-child { border: none; }
.loc-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.loc-ico-1 { background: rgba(196,114,78,0.1); color: var(--terra); }
.loc-ico-2 { background: rgba(125,155,118,0.1); color: var(--sage); }
.loc-ico-3 { background: rgba(155,142,196,0.1); color: var(--lavender); }
.loc-place {
    flex: 1;
    font-size: 14px;
    color: var(--cream);
    font-weight: 500;
}
.loc-time {
    padding: 4px 14px;
    background: rgba(196,114,78,0.1);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--terra);
}

/* =====================================================
   GALLERY — Masonry with varied heights
   ===================================================== */
.gallery {
    padding: 100px 0;
}
.gallery-header {
    text-align: center;
    margin-bottom: 48px;
}
.gallery-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--cream);
}
.gallery-header h2 span { color: var(--rose); }
.gal-masonry {
    columns: 4;
    column-gap: 12px;
}
.gal-item {
    break-inside: avoid;
    margin-bottom: 12px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gal-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17,17,25,0.8) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.4s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay span {
    font-size: 12px;
    color: var(--cream);
    font-weight: 500;
}

/* =====================================================
   DEVELOPER — Full-width parallax
   ===================================================== */
.developer {
    padding: 100px 0;
    background: var(--ink-2);
    position: relative;
    overflow: hidden;
}
.dev-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.dev-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    color: var(--cream);
    margin-bottom: 24px;
}
.dev-content h2 span { color: var(--terra); }
.dev-content p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.8;
}
.dev-image {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.dev-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.dev-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(196,114,78,0.15);
    border-radius: 24px;
    pointer-events: none;
}

/* =====================================================
   FINAL CTA — Gradient mesh background
   ===================================================== */
.final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(196,114,78,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(125,155,118,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(155,142,196,0.08) 0%, transparent 50%);
}
.final-cta-content {
    position: relative;
    z-index: 1;
}
.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.15;
}
.final-cta p {
    font-size: 18px;
    color: var(--text);
    margin-bottom: 36px;
}
.final-cta .btn-main {
    font-size: 17px;
    padding: 18px 44px;
}

/* =====================================================
   FOOTER — Unique asymmetric layout
   ===================================================== */
.footer {
    padding: 60px 0 0;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 48px;
}
.footer-brand-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 14px;
}
.footer-brand-text span { color: var(--terra); }
.footer-desc {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 20px;
    line-height: 1.7;
}
.footer-socials {
    display: flex;
    gap: 10px;
}
.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--text);
    transition: all 0.3s;
}
.footer-socials a:hover {
    background: var(--terra);
    border-color: var(--terra);
    color: var(--cream);
}
.footer-col h6 {
    font-size: 12px;
    font-weight: 600;
    color: var(--terra);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
    font-size: 14px;
    color: var(--text);
    transition: all 0.3s;
}
.footer-col ul a:hover { color: var(--cream); padding-left: 4px; }
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text);
}
.footer-contact-item i {
    color: var(--terra);
    margin-top: 3px;
    font-size: 14px;
}
.footer-form input {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    color: var(--cream);
    font-size: 13px;
    font-family: inherit;
    margin-bottom: 8px;
    transition: border-color 0.3s;
}
.footer-form input:focus {
    outline: none;
    border-color: var(--terra);
}
.footer-form input::placeholder { color: var(--text-dim); }
.footer-form button {
    width: 100%;
    padding: 10px;
    background: var(--terra);
    color: var(--cream);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.3s;
}
.footer-form button:hover { background: var(--terra-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--cream); }

/* =====================================================
   LEAD MODAL — Unique frosted glass
   ===================================================== */
.modal-backdrop-custom {
    position: fixed;
    inset: 0;
    background: rgba(17,17,25,0.8);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.modal-backdrop-custom.show { display: flex; }
.modal-box {
    background: var(--ink-3);
    border: 1px solid rgba(196,114,78,0.15);
    border-radius: 24px;
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlide 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalSlide {
    from { opacity: 0; transform: translateY(20px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: none;
    color: var(--text);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2;
}
.modal-close:hover { background: rgba(196,114,78,0.2); color: var(--terra); }
.modal-top {
    padding: 32px 32px 0;
}
.modal-top h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--cream);
    margin-bottom: 4px;
}
.modal-top p {
    font-size: 13px;
    color: var(--text-dim);
}
.modal-body {
    padding: 24px 32px 32px;
}
.modal-body label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}
.modal-body label span { color: var(--terra); }
.modal-body input, .modal-body textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    color: var(--cream);
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s;
    margin-bottom: 16px;
}
.modal-body input:focus, .modal-body textarea:focus {
    outline: none;
    border-color: var(--terra);
}
.modal-body input::placeholder, .modal-body textarea::placeholder { color: var(--text-dim); }
.modal-submit {
    width: 100%;
    padding: 14px;
    background: var(--terra);
    color: var(--cream);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.modal-submit:hover { background: var(--terra-light); }
.modal-submit:disabled { opacity: 0.6; cursor: not-allowed; }
.modal-note {
    text-align: center;
    font-size: 11px;
    color: var(--text-dim);
    margin-top: 14px;
}
.modal-note i { color: var(--sage); }
.modal-success {
    text-align: center;
    padding: 40px 32px;
    display: none;
}
.modal-success.show { display: block; }
.modal-success .ms-icon {
    font-size: 56px;
    color: var(--sage);
    margin-bottom: 16px;
}
.modal-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--cream);
    margin-bottom: 8px;
}
.modal-success p {
    font-size: 14px;
    color: var(--text);
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
    .hero-price-float { display: none; }
    .overview-grid { grid-template-columns: 1fr 1fr; }
    .og-img-1 { grid-column: 1 / -1; grid-row: auto; }
    .og-stats { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; }
    .og-img-2, .og-desc { display: none; }
    .benefits-layout { grid-template-columns: 1fr; }
    .bf-cta-card { position: static; }
    .loc-layout { grid-template-columns: 1fr; }
    .dev-layout { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .gal-masonry { columns: 3; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-phone { display: none; }
    .nav-phone-mob { display: flex; }
    .nav-hamburger { display: flex; align-items: center; justify-content: center; }
    .nav-cta { display: none; }
    .nav-float { top: 12px; padding: 5px 0 5px 14px; border-radius: 50px; }
    .nav-logo { font-size: 16px; }
    .nav-logo span { font-size: 15px; }
    .nav-phone-mob { padding: 10px 16px; font-size: 13px; border-radius: 50px; margin-right: 6px; }
    .nav-hamburger { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,0.07); border: none; margin-right: 2px; }
    .nav-hamburger span { width: 18px; left: 12px; }
    .mobile-bottom-bar { display: flex; }
    body { padding-bottom: 56px; }
    .hero { min-height: auto; padding: 100px 0 0; display: block; }
    .hero-content { padding: 0 16px 40px; }
    .hero::after { height: 30px; bottom: 0; }
    .hero-tag { margin-bottom: 14px; }
    .hero h1 { font-size: 30px; margin-bottom: 10px; line-height: 1.1; }
    .hero-sub { font-size: 14px; max-width: 100%; margin-bottom: 16px; }
    .hero-stats { gap: 6px; margin-bottom: 20px; flex-wrap: wrap; }
    .hero-stat { padding: 6px 10px; font-size: 11px; }
    .hero-ctas { flex-direction: column; gap: 10px; }
    .btn-main, .btn-ghost { width: 100%; justify-content: center; }
    .container { padding: 0 20px; }
    .overview { padding: 50px 0; }
    .overview-grid { grid-template-columns: 1fr; gap: 20px; }
    .og-label { margin-bottom: 10px; }
    .og-title { font-size: 26px; margin-bottom: 14px; line-height: 1.2; }
    .og-text { grid-column: 1; }
    .og-text p { font-size: 14px; margin-bottom: 12px; }
    .og-img-1 { grid-column: 1; grid-row: auto; }
    .og-img-1 img { height: 220px; border-radius: 14px; }
    .og-stats { grid-column: 1; grid-row: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .og-stat-card { padding: 16px; }
    .og-stat-num { font-size: 26px; }
    .og-img-2, .og-desc { display: none; }
    .hl-card { flex: 0 0 280px; }
    .am-grid { grid-template-columns: repeat(3, 1fr); }
    .price-card { flex-direction: column; text-align: center; }
    .pc-right { text-align: center; }
    .bf-timeline { padding-left: 56px; }
    .bf-num { left: -56px; width: 42px; height: 42px; font-size: 14px; }
    .bf-timeline::before { left: 20px; }
    .bf-cta-card { position: static; padding: 28px 20px; text-align: center; }
    .bf-cta-card h3 { font-size: 22px; }
    .bf-cta-card p { text-align: center; }
    .bf-cta-btns { flex-direction: column; gap: 10px; }
    .bf-cta-btns .btn-sage, .bf-cta-btns .btn-ghost { width: 100%; justify-content: center; }
    .bf-cta-btns .btn-ghost { width: 100%; justify-content: center; }
    .gal-masonry { columns: 2; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
    .final-cta h2 { font-size: 32px; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-tag { font-size: 9px; padding: 6px 14px; letter-spacing: 1px; }
    .hero-stat { padding: 6px 10px; font-size: 11px; }
    .am-grid { grid-template-columns: repeat(2, 1fr); }
    .price-dot { display: none; }
    .pricing-stack::before { display: none; }
    .final-cta h2 { font-size: 26px; }
}
