/* ============================================
   ONCE Boutique Residences - Main Stylesheet
   ============================================ */

/* --- Font Faces --- */
@font-face { font-family: 'PPEditorialNew'; src: url('../fonts/PPEditorialNew-Regular.otf') format('opentype'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'PPEditorialNew'; src: url('../fonts/PPEditorialNew-Italic.otf') format('opentype'); font-weight: 400; font-style: italic; font-display: swap; }
@font-face { font-family: 'PPEditorialNew'; src: url('../fonts/PPEditorialNew-Ultralight.otf') format('opentype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'PPEditorialNew'; src: url('../fonts/PPEditorialNew-UltralightItalic.otf') format('opentype'); font-weight: 200; font-style: italic; font-display: swap; }
@font-face { font-family: 'PPEditorialNew'; src: url('../fonts/PPEditorialNew-Ultrabold.otf') format('opentype'); font-weight: 800; font-style: normal; font-display: swap; }
@font-face { font-family: 'PPEditorialNew'; src: url('../fonts/PPEditorialNew-UltraboldItalic.otf') format('opentype'); font-weight: 800; font-style: italic; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Thin.ttf') format('truetype'); font-weight: 100; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-ExtraLight.ttf') format('truetype'); font-weight: 200; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Light.ttf') format('truetype'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Regular.ttf') format('truetype'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Medium.ttf') format('truetype'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-SemiBold.ttf') format('truetype'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Bold.ttf') format('truetype'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-ExtraBold.ttf') format('truetype'); font-weight: 800; font-display: swap; }

/* --- CSS Variables --- */
:root {
    --negro-armonia: #302F2B;
    --beige-confort: #CDC6BC;
    --blanco-respiro: #EDECE8;
    --gris-refugio: #B0ADA6;
    --gris-silencio: #EDE9DD;
    --verde-espacio: #555B57;
    --verde-conexion: #949286;
    --font-heading: 'PPEditorialNew', Georgia, 'Times New Roman', serif;
    --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --section-padding: 120px 50px;
    --section-padding-mobile: 60px 20px;
    --content-max-width: 1440px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); font-weight: 400; color: var(--negro-armonia); background-color: var(--blanco-respiro); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 400; line-height: 1.2; }

/* --- Buttons --- */
.btn-outline {
    display: inline-block; padding: 14px 32px; border: 1px solid var(--negro-armonia);
    font-family: var(--font-body); font-size: 12px; font-weight: 500; letter-spacing: 2px;
    text-transform: uppercase; transition: var(--transition); background: transparent;
    color: var(--negro-armonia); cursor: pointer;
}
.btn-outline:hover { background: var(--negro-armonia); color: var(--blanco-respiro); }
.section-line { width: 50px; height: 2px; background: var(--negro-armonia); margin-bottom: 20px; }

/* ============================================
   HEADER
   ============================================ */
.once-header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 20px 50px; transition: var(--transition); background: transparent; }
.once-header.scrolled { background: rgba(48, 47, 43, 0.95); backdrop-filter: blur(10px); padding: 15px 50px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1440px; margin: 0 auto; }
.header-logo img { height: 50px; width: auto; }
.header-nav ul { display: flex; align-items: center; gap: 35px; flex-wrap: nowrap; }
.header-nav ul li a { font-family: var(--font-body); font-size: 12px; font-weight: 400; letter-spacing: 2px; color: var(--blanco-respiro); text-transform: uppercase; position: relative; white-space: nowrap; }
.header-nav ul li a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--blanco-respiro); transition: var(--transition); }
.header-nav ul li a:hover::after { width: 100%; }
.header-nav ul li.header-lang a::after { display: none; }
.header-cta { display: inline-block; padding: 12px 28px; border: 1px solid var(--blanco-respiro); font-size: 12px; font-weight: 500; letter-spacing: 2px; color: var(--blanco-respiro); text-transform: uppercase; transition: var(--transition); }
.header-cta:hover { background: var(--blanco-respiro); color: var(--negro-armonia); }
.header-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 5px; z-index: 1001; }
.header-hamburger span { width: 28px; height: 2px; background: var(--blanco-respiro); transition: var(--transition); }
.header-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header-hamburger.active span:nth-child(2) { opacity: 0; }
.header-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.once-hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.hero-image { position: absolute; inset: 0; z-index: 1; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    background: rgba(48, 47, 43, 0.50);
}
.hero-content { text-align: center; position: relative; z-index: 3; }
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 6px;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero-intro {
    font-family: var(--font-body);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.hero-bottom {
    position: absolute; bottom: 40px; left: 50px; right: 50px; z-index: 3;
    display: flex; justify-content: space-between; align-items: flex-end;
    max-width: var(--content-max-width); margin: 0 auto;
}
.hero-developer, .hero-location { display: flex; flex-direction: column; gap: 8px; }
.hero-developer img, .hero-location img { height: 30px; width: auto; }
.hero-developer span, .hero-location span { font-size: 13px; font-weight: 300; color: white; letter-spacing: 1px; }
.hero-location { align-items: flex-end; text-align: right; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.once-about { background: var(--blanco-respiro); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.about-content { padding: 80px 60px 80px max(50px, calc((100vw - 1440px) / 2 + 50px)); display: flex; flex-direction: column; justify-content: center; }
.about-logo { width: 150px; margin-bottom: 30px; }
.about-content p { font-size: 15px; line-height: 1.8; margin-bottom: 18px; color: var(--negro-armonia); }
.about-content .about-tagline { font-size: 18px; font-weight: 500; margin-top: 10px; margin-bottom: 30px; }
.about-content .about-tagline em { font-family: var(--font-heading); font-style: italic; font-weight: 800; }
.about-content .btn-outline { align-self: flex-start; }
.about-image { overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   EXCLUSIVE (Solo 11 Residentes)
   ============================================ */
.once-exclusive { background: var(--gris-silencio); }
.exclusive-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 550px; }
.exclusive-image { overflow: hidden; }
.exclusive-image img { width: 100%; height: 100%; object-fit: cover; }
.exclusive-content { padding: 80px 60px 80px 80px; display: flex; flex-direction: column; justify-content: center; }
.exclusive-content h2 { font-family: var(--font-heading); font-size: clamp(42px, 5vw, 72px); font-weight: 400; margin-bottom: 30px; line-height: 1.1; }
.exclusive-content h2 em { font-style: italic; }
.exclusive-content p { font-size: 15px; line-height: 1.8; max-width: 500px; }

/* ============================================
   RESIDENCIAS
   ============================================ */
.once-residences { padding: var(--section-padding); background: var(--beige-confort); }
.section-header { text-align: center; max-width: var(--content-max-width); margin: 0 auto 60px; }
.section-header .section-line { margin: 0 auto 20px; }
.section-header h2 { font-family: var(--font-heading); font-size: clamp(42px, 5vw, 64px); margin-bottom: 20px; }
.section-header p { font-size: 15px; line-height: 1.8; }
.residences-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--content-max-width); margin: 0 auto; }
.residence-card { position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.residence-image { position: absolute; inset: 0; }
.residence-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.residence-card:hover .residence-image img { transform: scale(1.05); }
.residence-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; background: linear-gradient(transparent, rgba(48, 47, 43, 0.7)); z-index: 2; }
.residence-info h3 { font-family: var(--font-body); font-size: 20px; font-weight: 600; color: white; margin-bottom: 6px; }
.residence-link { font-size: 13px; font-weight: 400; color: white; text-decoration: underline; text-underline-offset: 3px; }
.residence-link:hover { opacity: 0.8; }

/* ============================================
   AMENIDADES
   ============================================ */
.once-amenities { padding: var(--section-padding); background: var(--blanco-respiro); }
.amenities-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: var(--content-max-width);
    margin: 0 auto;
    align-items: center;
}
.amenities-header h2 { font-family: var(--font-heading); font-size: clamp(36px, 4vw, 52px); margin-bottom: 16px; }
.amenities-header .section-line { margin-bottom: 16px; }
.amenities-items { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(48, 47, 43, 0.15); }
.amenity-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 40px 20px; text-align: center;
    border: 1px solid rgba(48, 47, 43, 0.15); transition: var(--transition);
}
.amenity-item:hover { background: rgba(48, 47, 43, 0.03); }
.amenity-icon { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.amenity-icon img { max-width: 60px; max-height: 60px; object-fit: contain; }
.amenity-item span { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }

/* ============================================
   FULL WIDTH IMAGE
   ============================================ */
.once-fullimage { width: 100%; height: 500px; overflow: hidden; }
.once-fullimage img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   SERVICIOS
   ============================================ */
.once-services { padding: var(--section-padding); background: var(--gris-silencio); }
.services-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: var(--content-max-width);
    margin: 0 auto;
    align-items: center;
}
.services-header h2 { font-family: var(--font-heading); font-size: clamp(36px, 4vw, 52px); margin-bottom: 16px; }
.services-header .section-line { margin-bottom: 16px; }
.services-header p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.services-items { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(48, 47, 43, 0.15); }
.service-item {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 40px 20px; text-align: center;
    border: 1px solid rgba(48, 47, 43, 0.15); transition: var(--transition);
}
.service-item:hover { background: rgba(48, 47, 43, 0.03); }
.service-icon { width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon img { max-width: 60px; max-height: 60px; object-fit: contain; }
.service-item span { font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }

/* ============================================
   UBICACIÓN
   ============================================ */
.once-location { background: var(--gris-refugio); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.location-content { padding: 80px 60px 80px max(50px, calc((100vw - 1440px) / 2 + 50px)); display: flex; flex-direction: column; justify-content: center; }
.location-content h2 { font-family: var(--font-heading); font-size: clamp(36px, 4vw, 52px); margin-bottom: 24px; line-height: 1.15; }
.location-content p { font-size: 15px; line-height: 1.8; margin-bottom: 30px; max-width: 400px; }
.location-content .btn-outline { align-self: flex-start; }
.location-map { overflow: hidden; }
.location-map img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   CONTACTO
   ============================================ */
.once-contact { padding: var(--section-padding); background: var(--beige-confort); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: var(--content-max-width); margin: 0 auto; }
.contact-form-wrapper h2 { font-family: var(--font-heading); font-size: clamp(36px, 4vw, 52px); margin-bottom: 16px; }
.contact-form-wrapper > p { font-size: 15px; line-height: 1.8; margin-bottom: 40px; max-width: 450px; }
.once-form .form-group { margin-bottom: 28px; }
.once-form label { display: block; font-size: 11px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; color: var(--negro-armonia); }
.once-form input, .once-form textarea { width: 100%; padding: 12px 0; border: none; border-bottom: 1px solid var(--negro-armonia); background: transparent; font-family: var(--font-body); font-size: 15px; color: var(--negro-armonia); outline: none; transition: var(--transition); }
.once-form input:focus, .once-form textarea:focus { border-bottom-width: 2px; }
.once-form textarea { resize: vertical; min-height: 60px; }
.btn-submit { width: 100%; padding: 18px; background: var(--negro-armonia); color: var(--blanco-respiro); font-family: var(--font-body); font-size: 13px; font-weight: 500; letter-spacing: 3px; text-transform: uppercase; border: none; cursor: pointer; transition: var(--transition); margin-top: 10px; }
.btn-submit:hover { background: var(--verde-espacio); }
.form-message { margin-top: 16px; font-size: 14px; text-align: center; }
.form-message.success { color: var(--verde-espacio); }
.form-message.error { color: #b33; }
.contact-info-wrapper h3 { font-family: var(--font-heading); font-size: clamp(28px, 3vw, 36px); margin-bottom: 36px; }
.contact-detail { margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid rgba(48, 47, 43, 0.2); }
.contact-detail:last-child { border-bottom: none; }
.contact-detail h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.contact-detail p { font-size: 14px; line-height: 1.7; }
.contact-detail a:hover { opacity: 0.7; }
.contact-social { display: flex; gap: 12px; }
.contact-social a { display: inline-block; padding: 8px 16px; border: 1px solid var(--negro-armonia); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; transition: var(--transition); }
.contact-social a:hover { background: var(--negro-armonia); color: var(--blanco-respiro); }

/* ============================================
   FOOTER
   ============================================ */
.once-footer { background: var(--negro-armonia); color: var(--blanco-respiro); padding: 80px 50px 30px; }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; max-width: var(--content-max-width); margin: 0 auto 60px; }
.footer-logo { width: 200px; margin-bottom: 30px; }
.footer-logos-partners img { width: 250px; opacity: 0.9; }
.footer-links h4, .footer-contact h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 2px; margin-bottom: 20px; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul li a { font-size: 14px; color: rgba(237, 236, 232, 0.7); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--blanco-respiro); }
.footer-contact p { font-size: 14px; color: rgba(237, 236, 232, 0.7); margin-bottom: 8px; }
.footer-contact p a:hover { color: var(--blanco-respiro); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { display: inline-block; padding: 8px 16px; border: 1px solid rgba(237, 236, 232, 0.4); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; color: rgba(237, 236, 232, 0.7); transition: var(--transition); }
.footer-social a:hover { border-color: var(--blanco-respiro); color: var(--blanco-respiro); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 30px; border-top: 1px solid rgba(237, 236, 232, 0.15); max-width: var(--content-max-width); margin: 0 auto; }
.footer-bottom p { font-size: 13px; color: rgba(237, 236, 232, 0.5); }
.footer-legal { display: flex; gap: 30px; }
.footer-legal a { font-size: 13px; color: rgba(237, 236, 232, 0.5); text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--blanco-respiro); }

/* ============================================
   RESIDENCE MODAL
   ============================================ */
.residence-modal {
    position: fixed; inset: 0; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.residence-modal.active { opacity: 1; visibility: visible; }
.modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(48, 47, 43, 0.7);
    backdrop-filter: blur(4px);
}
.modal-container {
    position: relative; z-index: 2;
    background: var(--blanco-respiro);
    width: 90vw; max-width: 1100px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.residence-modal.active .modal-container { transform: translateY(0); }
.modal-close {
    position: absolute; top: 20px; right: 20px; z-index: 10;
    background: rgba(48, 47, 43, 0.8); border: none; cursor: pointer;
    width: 44px; height: 44px; display: flex; align-items: center; justify-content: center;
    color: white; transition: var(--transition);
}
.modal-close:hover { background: var(--negro-armonia); }
.modal-body { display: grid; grid-template-columns: 1fr 1fr; }
.modal-image { position: relative; overflow: hidden; min-height: 500px; }
.modal-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.modal-content { padding: 50px 40px; display: flex; flex-direction: column; justify-content: center; }
.modal-type {
    font-family: var(--font-body); font-size: 11px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--verde-conexion); margin-bottom: 8px;
}
.modal-title {
    font-family: var(--font-heading); font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 400; margin-bottom: 20px; line-height: 1.15;
}
.modal-desc {
    font-size: 15px; line-height: 1.8; margin-bottom: 32px;
    color: var(--negro-armonia);
}
.modal-specs { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(48, 47, 43, 0.15); }
.modal-spec { display: flex; align-items: center; gap: 14px; }
.modal-spec svg { flex-shrink: 0; color: var(--verde-espacio); }
.modal-spec div { display: flex; flex-direction: column; }
.spec-label { font-size: 10px; font-weight: 600; letter-spacing: 2px; color: var(--gris-refugio); }
.spec-value { font-size: 15px; font-weight: 500; color: var(--negro-armonia); }
.modal-features h4 {
    font-family: var(--font-body); font-size: 11px; font-weight: 600;
    letter-spacing: 2px; margin-bottom: 14px;
}
.modal-features ul { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.modal-features ul li {
    font-size: 13px; padding: 6px 14px;
    background: rgba(48, 47, 43, 0.06);
    border-radius: 2px; color: var(--negro-armonia);
}
.modal-cta { align-self: flex-start; }
.modal-price { margin-bottom: 24px; }
.modal-price .price-value {
    font-family: var(--font-heading); font-size: 24px; font-weight: 400;
    color: var(--verde-espacio);
}
body.modal-open { overflow: hidden; }

/* Modal scrollbar */
.modal-container::-webkit-scrollbar { width: 4px; }
.modal-container::-webkit-scrollbar-track { background: transparent; }
.modal-container::-webkit-scrollbar-thumb { background: var(--gris-refugio); border-radius: 2px; }

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */
@media (max-width: 1024px) {
    :root { --section-padding: 80px 40px; }
    .about-content, .exclusive-content, .location-content { padding: 60px 40px; }
    .residences-grid { grid-template-columns: repeat(2, 1fr); }
    .amenities-grid, .services-grid { grid-template-columns: 1fr; }
    .contact-grid { gap: 50px; }
    .footer-inner { gap: 40px; }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root { --section-padding: 60px 20px; }
    
    /* Header Mobile */
    .once-header { padding: 15px 20px; }
    .once-header.scrolled { padding: 12px 20px; }
    .header-nav { position: fixed; top: 0; right: -100%; width: 80%; max-width: 350px; height: 100vh; background: var(--negro-armonia); padding: 100px 40px 40px; transition: var(--transition); z-index: 999; }
    .header-nav.open { right: 0; }
    .header-nav ul { flex-direction: column; align-items: flex-start; gap: 24px; }
    .header-nav ul li a { font-size: 14px; }
    .header-lang { margin-left: 0; margin-top: 24px; }
    .header-cta { display: none; }
    .header-hamburger { display: flex; }
    
    /* Hero Mobile */
    section.once-hero,
    .once-hero {
        height: 70vh;
        min-height: 0;
        min-height: unset;
        max-height: 580px;
    }
    .hero-title { font-size: 36px; letter-spacing: 3px; margin-bottom: 16px; }
    .hero-intro { font-size: 13px; padding: 0 20px; }
    .hero-bottom { left: 20px; right: 20px; bottom: 20px; }
    .hero-developer img, .hero-location img { height: 18px; }
    .hero-developer span, .hero-location span { font-size: 10px; }
    
    /* About */
    .about-grid, .exclusive-grid, .location-grid { grid-template-columns: 1fr; }
    .about-content, .exclusive-content, .location-content { padding: 50px 20px; }
    .about-image, .exclusive-image { height: 350px; }
    .exclusive-grid .exclusive-image { order: -1; }
    
    /* Residences */
    .residences-grid { grid-template-columns: 1fr; gap: 16px; }
    .residence-card { aspect-ratio: 16/10; }
    
    /* Amenities / Services - stack on mobile */
    .amenities-grid, .services-grid { grid-template-columns: 1fr; gap: 30px; }
    .amenities-items, .services-items { grid-template-columns: repeat(3, 1fr); }
    .amenity-item, .service-item { padding: 30px 15px; }
    
    /* Full Image */
    .once-fullimage { height: 300px; }
    
    /* Contact */
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    
    /* Location */
    .location-map { height: 350px; }
    
    /* Footer */
    .once-footer { padding: 50px 20px 20px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .footer-legal { gap: 20px; }
    .footer-social { flex-wrap: wrap; }
    
    /* Modal Mobile */
    .modal-body { grid-template-columns: 1fr; }
    .modal-image { min-height: 280px; }
    .modal-content { padding: 30px 24px; }
    .modal-container { width: 95vw; max-height: 95vh; }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE
   ============================================ */
@media (max-width: 480px) {
    section.once-hero,
    .once-hero {
        height: 65vh;
        min-height: 0;
        min-height: unset;
        max-height: 500px;
    }
    .hero-title { font-size: 28px; letter-spacing: 2px; }
    .hero-intro { font-size: 12px; }
    .amenities-items, .services-items { grid-template-columns: repeat(2, 1fr); }
    .amenity-item, .service-item { padding: 24px 12px; }
    .contact-social { flex-wrap: wrap; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
.once-hero .hero-image img { animation: heroZoom 20s ease-in-out infinite alternate; }
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
section { position: relative; }
body.loaded .once-hero .hero-content { opacity: 1; transform: translateY(0); }
