/* ============================================
   AVS PRE LAUNCH - UNIQUE DESIGN SYSTEM
   Editorial + Brutalist Hybrid
   ============================================ */

:root {
    --ink: #1a1a1a;
    --paper: #f8f6f3;
    --warm: #e8e4df;
    --accent: #c45d3e;
    --accent-soft: rgba(196,93,62,0.1);
    --muted: #8a8580;
    --line: #d4d0cb;
    --font-display: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea { font-family: inherit; }

/* ============================================
   PRELOADER
   ============================================ */
#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--ink);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-text {
    font-family: var(--font-display);
    font-size: 3rem; font-weight: 700; color: var(--paper);
    letter-spacing: -2px;
}
.loader-text span { color: var(--accent); }
.loader-bar { width: 120px; height: 2px; background: rgba(248,246,243,0.15); margin-top: 20px; border-radius: 2px; overflow: hidden; }
.loader-bar::after {
    content: ''; display: block; width: 0; height: 100%;
    background: var(--accent); border-radius: 2px;
    animation: load 1.5s ease forwards;
}
@keyframes load { to { width: 100%; } }

/* ============================================
   NAVIGATION - Horizontal Top Bar
   ============================================ */
.topbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
    height: 52px; background: var(--ink);
    display: flex; align-items: center;
    padding: 0 16px; gap: 10px;
    border-bottom: 1px solid rgba(248,246,243,0.08);
}
.topbar-brand {
    font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
    color: var(--paper); letter-spacing: -0.5px; margin-right: 4px;
}
.topbar-brand span { color: var(--accent); }
.topbar-links { display: flex; gap: 20px; margin-right: auto; }
.topbar-links a {
    font-size: 0.8rem; color: rgba(248,246,243,0.5);
    text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500;
    transition: color 0.3s;
}
.topbar-links a:hover { color: var(--paper); }
.topbar-right { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.topbar-cta {
    padding: 8px 14px; background: var(--accent); color: var(--paper);
    font-size: 0.7rem; font-weight: 600; border-radius: 4px;
    text-transform: uppercase; letter-spacing: 0.5px;
    transition: background 0.3s; white-space: nowrap;
}
.topbar-cta:hover { background: #d4694a; }
.topbar-phone {
    display: flex; align-items: center; gap: 6px;
    color: var(--paper); font-size: 0.8rem; font-weight: 500;
    white-space: nowrap;
}
.mobile-menu-btn {
    display: none; flex-direction: column; gap: 5px; padding: 8px;
    order: 10;
}
.mobile-menu-btn span { width: 20px; height: 1.5px; background: var(--paper); transition: 0.3s; }

/* Mobile menu */
@media (max-width: 768px) {
    .topbar-links, .topbar-cta { display: none; }
    .topbar-phone { font-size: 0.7rem; }
    .mobile-menu-btn { display: flex; }
}
.mobile-nav {
    position: fixed; top: 52px; left: 0; width: 100%; background: var(--ink);
    border-bottom: 1px solid rgba(248,246,243,0.08);
    padding: 20px 32px; display: none; z-index: 99;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
    display: block; padding: 12px 0; color: var(--paper); font-size: 0.95rem;
    border-bottom: 1px solid rgba(248,246,243,0.06);
}
.mobile-nav a:last-child { border: none; }

/* ============================================
   HERO - Full bleed editorial
   ============================================ */
.hero {
    margin-top: 52px; min-height: calc(100vh - 52px);
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--ink); overflow: hidden; position: relative;
}
.hero-left {
    padding: 80px 60px 80px 80px;
    display: flex; flex-direction: column; justify-content: center;
    position: relative;
}
.hero-tag {
    font-family: var(--font-mono); font-size: 0.7rem;
    color: var(--accent); text-transform: uppercase; letter-spacing: 3px;
    margin-bottom: 32px; display: flex; align-items: center; gap: 12px;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
.hero h1 {
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(3rem, 5.5vw, 5.5rem); line-height: 0.95;
    color: var(--paper); letter-spacing: -3px; margin-bottom: 32px;
}
.hero h1 em { font-style: normal; color: var(--accent); display: block; }
.hero-desc {
    font-size: 1.1rem; color: rgba(248,246,243,0.6);
    max-width: 440px; line-height: 1.7; margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-hero {
    padding: 16px 32px; font-size: 0.85rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: 0.3s;
}
.btn-hero-fill { background: var(--accent); color: var(--paper); }
.btn-hero-fill:hover { background: #d4694a; }
.btn-hero-ghost { border: 1px solid rgba(248,246,243,0.2); color: var(--paper); }
.btn-hero-ghost:hover { border-color: var(--paper); }

.hero-stats-row {
    display: flex; gap: 40px;
}
.hero-stat-item { text-align: left; }
.hero-stat-item .num {
    font-family: var(--font-display); font-size: 2rem; font-weight: 700;
    color: var(--paper); line-height: 1;
}
.hero-stat-item .num span { color: var(--accent); font-size: 1.2rem; }
.hero-stat-item .lbl { font-size: 0.75rem; color: rgba(248,246,243,0.4); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

.hero-right { position: relative; overflow: hidden; }
.hero-right img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-right-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, var(--ink) 100%);
}
.hero-right-tag {
    position: absolute; bottom: 40px; left: 40px; right: 40px;
    background: rgba(248,246,243,0.95); backdrop-filter: blur(20px);
    padding: 24px 28px; display: flex; justify-content: space-between; align-items: center;
}
.hero-right-tag .price-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 2px; color: var(--muted); }
.hero-right-tag .price-val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--ink); }
.hero-right-tag .price-val small { font-size: 0.9rem; font-weight: 400; color: var(--muted); }

.hero-banner { display: none; position: relative; overflow: hidden; margin: 0; padding: 0 24px; }
.hero-banner-img { border-radius: 8px; overflow: hidden; position: relative; }
.hero-banner-img img { width: 100%; height: 280px; object-fit: cover; }
.hero-banner-overlay {
    position: absolute; inset: 0; border-radius: 8px;
    background: linear-gradient(180deg, transparent 40%, rgba(26,26,26,0.8) 100%);
}
.hero-banner-card {
    position: absolute; bottom: 16px; left: 16px; right: 16px;
    background: rgba(248,246,243,0.95); backdrop-filter: blur(12px);
    padding: 14px 18px; display: flex; justify-content: space-between; align-items: center;
    border-radius: 6px;
}
.hero-banner-card .hb-price { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); }
.hero-banner-card .hb-price small { font-size: 0.75rem; font-weight: 400; color: var(--muted); }
.hero-banner-card .hb-btn {
    padding: 10px 20px; background: var(--accent); color: var(--paper);
    font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
    border-radius: 4px;
}
.hero-banner-stats {
    display: flex; gap: 0; margin: 16px 24px 0; background: var(--ink);
    padding: 16px; justify-content: space-around; border-radius: 8px;
}
.hero-banner-stat {
    text-align: center; flex: 1;
    border-right: 1px solid rgba(248,246,243,0.08);
}
.hero-banner-stat:last-child { border: none; }
.hero-banner-stat .hbs-num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--paper); }
.hero-banner-stat .hbs-lbl { font-size: 0.65rem; color: rgba(248,246,243,0.4); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
    background: var(--accent); padding: 14px 0; overflow: hidden; position: relative;
}
.marquee-inner {
    display: flex; gap: 60px; animation: marquee 20s linear infinite;
    white-space: nowrap; width: max-content;
}
.marquee-inner span {
    font-family: var(--font-display); font-size: 0.85rem; font-weight: 600;
    color: var(--paper); text-transform: uppercase; letter-spacing: 2px;
    display: flex; align-items: center; gap: 20px;
}
.marquee-inner span::after { content: ''; width: 6px; height: 6px; background: var(--paper); border-radius: 50%; opacity: 0.4; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================
   ABOUT - Split asymmetric
   ============================================ */
.about { padding: 120px 20px; }
.about-grid {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
.about-num {
    font-family: var(--font-display); font-size: 8rem; font-weight: 700;
    color: var(--warm); line-height: 1; margin-bottom: 20px;
}
.about-label {
    font-family: var(--font-mono); font-size: 0.7rem; color: var(--accent);
    text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px;
}
.about h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3.2rem);
    font-weight: 700; line-height: 1.1; letter-spacing: -1.5px;
    margin-bottom: 24px;
}
.about h2 em { font-style: normal; color: var(--accent); }
.about-text { color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.about-grid-stats {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.about-stat {
    padding: 20px; border: 1px solid var(--line); transition: 0.3s;
}
.about-stat:hover { border-color: var(--accent); }
.about-stat .val { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--ink); }
.about-stat .val span { color: var(--accent); }
.about-stat .desc { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

.about-visual { position: relative; }
.about-visual-main { border-radius: 2px; overflow: hidden; }
.about-visual-main img { width: 100%; height: 500px; object-fit: cover; }
.about-visual-float {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--accent); color: var(--paper);
    padding: 28px 32px; max-width: 200px;
}
.about-visual-float .big { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-visual-float .small { font-size: 0.8rem; margin-top: 4px; opacity: 0.8; }

/* ============================================
   FEATURES - Horizontal scroll cards
   ============================================ */
.features { padding: 100px 0; background: var(--ink); overflow: hidden; position: relative; }
.features-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding: 0 100px; margin-bottom: 48px;
}
.features-header h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--paper); font-weight: 700; letter-spacing: -1px;
}
.features-header h2 em { font-style: normal; color: var(--accent); }
.features-scroll-hint { font-size: 0.75rem; color: rgba(248,246,243,0.3); text-transform: uppercase; letter-spacing: 2px; }

.features-track {
    display: flex; gap: 24px; padding: 0 100px 40px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none;
}
.features-track::-webkit-scrollbar { display: none; }

.feature-card {
    flex: 0 0 340px; scroll-snap-align: start;
    background: rgba(248,246,243,0.03); border: 1px solid rgba(248,246,243,0.06);
    padding: 36px; transition: 0.4s; position: relative;
}
.feature-card:hover { border-color: var(--accent); background: rgba(196,93,62,0.05); }
.feature-card-num {
    font-family: var(--font-display); font-size: 4rem; font-weight: 700;
    color: rgba(248,246,243,0.04); position: absolute; top: 16px; right: 20px;
    line-height: 1;
}
.feature-card-icon {
    width: 48px; height: 48px; border: 1px solid var(--accent);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--accent); margin-bottom: 24px;
}
.feature-card h3 {
    font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
    color: var(--paper); margin-bottom: 12px;
}
.feature-card p { font-size: 0.9rem; color: rgba(248,246,243,0.5); line-height: 1.7; }

/* ============================================
   AMENITIES - Asymmetric grid
   ============================================ */
.amenities { padding: 120px 20px; }
.am-header { text-align: center; margin-bottom: 60px; }
.am-header h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700; letter-spacing: -1px;
}
.am-header h2 em { font-style: normal; color: var(--accent); }

.am-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3px;
}
.am-cell {
    padding: 32px 24px; background: var(--warm);
    display: flex; flex-direction: column; align-items: center;
    text-align: center; transition: 0.3s; cursor: default;
}
.am-cell:hover { background: var(--ink); color: var(--paper); }
.am-cell:hover i { color: var(--accent); }
.am-cell i { font-size: 1.5rem; color: var(--ink); margin-bottom: 12px; transition: 0.3s; }
.am-cell span { font-size: 0.8rem; font-weight: 500; }

/* Grid pattern */
.am-cell:nth-child(1) { grid-column: span 3; }
.am-cell:nth-child(2) { grid-column: span 3; }
.am-cell:nth-child(3) { grid-column: span 3; }
.am-cell:nth-child(4) { grid-column: span 3; }
.am-cell:nth-child(5) { grid-column: span 4; }
.am-cell:nth-child(6) { grid-column: span 4; }
.am-cell:nth-child(7) { grid-column: span 4; }
.am-cell:nth-child(8) { grid-column: span 3; }
.am-cell:nth-child(9) { grid-column: span 3; }
.am-cell:nth-child(10) { grid-column: span 3; }
.am-cell:nth-child(11) { grid-column: span 3; }
.am-cell:nth-child(12) { grid-column: span 12; }

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

/* ============================================
   PRICING - Table style
   ============================================ */
.pricing { padding: 120px 0; background: var(--ink); }
.pricing-header {
    text-align: center; margin-bottom: 60px; padding: 0 100px;
}
.pricing-header h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--paper); font-weight: 700; letter-spacing: -1px;
}
.pricing-header h2 em { font-style: normal; color: var(--accent); }
.pricing-header p { color: rgba(248,246,243,0.4); margin-top: 8px; }

.pricing-table {
    max-width: 900px; margin: 0 auto; padding: 0 100px;
}
.price-row {
    display: grid; grid-template-columns: 1fr auto auto auto;
    align-items: center; gap: 40px;
    padding: 28px 0; border-bottom: 1px solid rgba(248,246,243,0.06);
    transition: 0.3s;
}
.price-row:first-child { border-top: 1px solid rgba(248,246,243,0.06); }
.price-row:hover { background: rgba(248,246,243,0.02); }

.price-row .type {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
    color: var(--paper);
}
.price-row .size { font-size: 0.9rem; color: rgba(248,246,243,0.4); }
.price-row .eoi {
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
    color: var(--accent);
}
.price-row .book-btn {
    padding: 10px 24px; border: 1px solid var(--accent);
    color: var(--accent); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s;
}
.price-row .book-btn:hover { background: var(--accent); color: var(--paper); }

.pricing-note { text-align: center; color: rgba(248,246,243,0.3); font-size: 0.8rem; margin-top: 40px; padding: 0 100px; }

/* ============================================
   LOCATION - Split
   ============================================ */
.location { padding: 120px 20px; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; }
.loc-content h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700; letter-spacing: -1px; margin-bottom: 24px;
}
.loc-content h2 em { font-style: normal; color: var(--accent); }
.loc-content > p { color: var(--muted); line-height: 1.8; margin-bottom: 40px; }

.loc-list { display: flex; flex-direction: column; gap: 0; }
.loc-row {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 0; border-bottom: 1px solid var(--line);
}
.loc-row:first-child { border-top: 1px solid var(--line); }
.loc-icon {
    width: 36px; height: 36px; min-width: 36px;
    border: 1px solid var(--line); display: flex;
    align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--muted); transition: 0.3s;
}
.loc-row:hover .loc-icon { border-color: var(--accent); color: var(--accent); }
.loc-place { flex: 1; font-size: 0.95rem; }
.loc-time {
    font-family: var(--font-display); font-size: 0.9rem;
    font-weight: 600; color: var(--ink);
}

.loc-map {
    background: var(--warm); padding: 60px; text-align: center;
    position: relative; min-height: 400px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.loc-map::before {
    content: ''; position: absolute; inset: 20px;
    border: 1px dashed var(--line); pointer-events: none;
}
.loc-map-pin {
    width: 56px; height: 56px; border: 2px solid var(--accent);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--accent); margin-bottom: 16px;
}
.loc-map h3 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 8px; }
.loc-map p { color: var(--muted); font-size: 0.9rem; margin-bottom: 20px; }
.loc-map .btn-loc {
    padding: 12px 28px; background: var(--ink); color: var(--paper);
    font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s;
}
.loc-map .btn-loc:hover { background: var(--accent); }

/* ============================================
   GALLERY - Compact grid
   ============================================ */
.gallery { padding: 80px 20px; background: var(--warm); }
.gallery-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    padding: 0 100px; margin-bottom: 32px;
}
.gallery-header h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700; letter-spacing: -1px;
}
.gallery-header h2 em { font-style: normal; color: var(--accent); }

.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; padding: 0 100px;
}
.gallery-item {
    position: relative; overflow: hidden; aspect-ratio: 16/10;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
    position: absolute; inset: 0;
    background: rgba(26,26,26,0.7);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transition: 0.4s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay i { font-size: 1.2rem; color: var(--paper); margin-bottom: 6px; }
.gallery-item-overlay span { font-size: 0.75rem; color: rgba(248,246,243,0.7); text-transform: uppercase; letter-spacing: 2px; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    padding: 100px 0; background: var(--accent);
    text-align: center;
}
.cta-banner h2 {
    font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--paper); font-weight: 700; letter-spacing: -1.5px;
    margin-bottom: 16px;
}
.cta-banner p { color: rgba(248,246,243,0.7); margin-bottom: 32px; font-size: 1.1rem; }
.cta-banner .btn-cta {
    padding: 18px 40px; background: var(--paper); color: var(--ink);
    font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    transition: 0.3s;
}
.cta-banner .btn-cta:hover { background: var(--ink); color: var(--paper); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--ink); padding: 80px 0 40px; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px; padding: 0 100px; margin-bottom: 60px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--paper); margin-bottom: 12px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-size: 0.9rem; color: rgba(248,246,243,0.4); line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
    width: 36px; height: 36px; border: 1px solid rgba(248,246,243,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(248,246,243,0.4); font-size: 0.85rem; transition: 0.3s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }

.footer-col h6 {
    font-family: var(--font-display); font-size: 0.8rem; font-weight: 600;
    color: var(--paper); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(248,246,243,0.4); transition: 0.3s; }
.footer-col ul a:hover { color: var(--accent); }

.footer-contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; color: rgba(248,246,243,0.4); margin-bottom: 14px;
}
.footer-contact-item i { color: var(--accent); width: 16px; }

.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-form input {
    padding: 12px 14px; background: rgba(248,246,243,0.05);
    border: 1px solid rgba(248,246,243,0.08); color: var(--paper);
    font-size: 0.9rem; transition: 0.3s;
}
.footer-form input:focus { outline: none; border-color: var(--accent); }
.footer-form input::placeholder { color: rgba(248,246,243,0.25); }
.footer-form button {
    padding: 12px; background: var(--accent); color: var(--paper);
    font-weight: 700; font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; transition: 0.3s;
}
.footer-form button:hover { background: #d4694a; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 80px 0; border-top: 1px solid rgba(248,246,243,0.06);
    font-size: 0.8rem; color: rgba(248,246,243,0.25);
}
.footer-bottom a { color: rgba(248,246,243,0.25); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================
   MODAL
   ============================================ */
.modal-bg {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(26,26,26,0.85); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.3s; padding: 20px;
}
.modal-bg.open { opacity: 1; visibility: visible; }
.modal-box {
    background: var(--paper); width: 100%; max-width: 440px;
    transform: translateY(30px); transition: 0.4s;
}
.modal-bg.open .modal-box { transform: translateY(0); }
.modal-head {
    display: flex; justify-content: space-between; align-items: flex-start;
    padding: 32px 32px 0;
}
.modal-head h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; letter-spacing: -0.5px; }
.modal-head p { font-size: 0.85rem; color: var(--muted); margin-top: 4px; }
.modal-x {
    width: 32px; height: 32px; background: var(--warm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--ink); transition: 0.3s;
}
.modal-x:hover { background: var(--ink); color: var(--paper); }
.modal-form { padding: 24px 32px 32px; }
.modal-form label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px; }
.modal-form label span { color: var(--accent); }
.modal-form input, .modal-form textarea {
    width: 100%; padding: 12px 14px; background: var(--warm);
    border: 1px solid var(--line); font-size: 0.9rem;
    margin-bottom: 16px; transition: 0.3s;
}
.modal-form input:focus, .modal-form textarea:focus { outline: none; border-color: var(--accent); }
.modal-form textarea { resize: vertical; min-height: 80px; }
.modal-submit {
    width: 100%; padding: 14px; background: var(--ink); color: var(--paper);
    font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: 0.3s;
}
.modal-submit:hover { background: var(--accent); }
.modal-note { text-align: center; font-size: 0.75rem; color: var(--muted); margin-top: 12px; }
.modal-success { text-align: center; display: none; padding: 40px 32px; }
.modal-success.show { display: block; }
.modal-success i { font-size: 3rem; color: var(--accent); margin-bottom: 16px; }
.modal-success h4 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 8px; }
.modal-success p { color: var(--muted); font-size: 0.9rem; }

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.fab-whatsapp {
    position: fixed; left: 24px; bottom: 24px; width: 52px; height: 52px;
    background: #25d366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white; z-index: 50;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: 0.3s;
}
.fab-whatsapp:hover { transform: scale(1.1); }
.fab-call {
    position: fixed; left: 24px; bottom: 88px; width: 52px; height: 52px;
    background: var(--ink); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--paper); z-index: 50;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: 0.3s;
}
.fab-call:hover { background: var(--accent); }
.back-top {
    position: fixed; right: 24px; bottom: 24px; width: 44px; height: 44px;
    background: var(--paper); border: 1px solid var(--line);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; color: var(--ink); z-index: 50;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: 0.3s;
}
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { border-color: var(--accent); color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 60px 40px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .loc-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .features-header, .gallery-header { padding: 0 48px; }
    .features-track { padding: 0 48px; }
    .gallery-grid { padding: 0 48px; }
    .pricing-table { padding: 0 48px; }
    .pricing-note { padding: 0 48px; }
    .footer-grid, .footer-bottom { padding: 0 48px; }
}
@media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; min-height: auto; }
    .hero-right { display: none; }
    .hero-banner { display: block; }
    .hero-left { padding: 40px 20px; }
    .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .hero-stats-row { gap: 20px; flex-wrap: wrap; }
    .about { padding: 60px 20px; }
    .about-num { font-size: 5rem; }
    .features { padding: 60px 20px; }
    .features-header { padding: 0; }
    .features-track { padding: 0; gap: 16px; }
    .feature-card { flex: 0 0 280px; padding: 28px; }
    .amenities { padding: 60px 20px; }
    .am-grid { grid-template-columns: repeat(2, 1fr); }
    .am-cell:nth-child(n) { grid-column: span 1; }
    .am-cell:nth-child(11), .am-cell:nth-child(12) { grid-column: span 2; }
    .pricing { padding: 60px 20px; }
    .pricing-header { padding: 0; }
    .pricing-table { padding: 0; }
    .pricing-note { padding: 0; }
    .price-row { grid-template-columns: 1fr auto; gap: 16px; }
    .price-row .size { display: none; }
    .location { padding: 60px 20px; }
    .gallery { padding: 60px 20px; }
    .gallery-header { padding: 0; }
    .gallery-grid { grid-template-columns: 1fr 1fr; padding: 0; }
    .cta-banner { padding: 60px 20px; }
    .footer { padding: 60px 20px 30px; }
    .footer-grid { grid-template-columns: 1fr; padding: 0; gap: 32px; }
    .footer-bottom { padding: 24px 0 0; flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 480px) {
    .topbar { padding: 0 16px; gap: 12px; }
    .hero-left { padding: 32px 20px; }
    .hero h1 { font-size: 2rem; }
    .hero-actions { flex-direction: column; }
    .btn-hero { width: 100%; justify-content: center; }
    .hero-banner { padding: 0 20px; }
    .hero-banner-stats { margin: 16px 20px 0; }
    .am-grid { grid-template-columns: 1fr; }
    .am-cell:nth-child(n) { grid-column: span 1; }
    .gallery-grid { grid-template-columns: 1fr; }
    .price-row { grid-template-columns: 1fr; }
    .price-row .book-btn { width: 100%; text-align: center; }
}