* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #58b89e;
    --blue-light: #69cca8;
    --blue-dark: #4c9d76;
    --blue-pale: #EBF3F9;
    --grey: #F4F5F7;
    --grey-mid: #E0E4E8;
    --grey-dark: #8A9099;
    --text: #1C2B3A;
    --text-muted: #6B7280;
    --white: #FFFFFF;
    --border: #DDE3EA;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; overscroll-behavior-y: contain; }
html, body {
    max-width: 100%;
    overflow-x: hidden;
    overflow-wrap: break-word;
}

#seasonal-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ── ROOM DETAIL MODAL ── */
.room-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 1300;
    overflow-y: auto;
}

.room-modal-overlay.open { display: block; }

.room-modal-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    color: var(--text);
    cursor: pointer;
    z-index: 1301;
}

.room-modal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 2rem 4rem;
}

.room-modal-content .unit-img-wrapper,
.room-modal-content .unit-img {
    height: auto;
    max-height: 75vh;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: var(--grey);
}

.room-modal-content .unit-img {
    display: block;
    object-fit: contain;
}

.room-modal-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin: 1.5rem 0 0.5rem;
}

.room-modal-type {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.room-modal-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.25rem;
}

.room-modal-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.room-modal-desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .room-modal-content { padding: 1.25rem 1.25rem 3rem; }
    .room-modal-content .unit-img-wrapper,
    .room-modal-content .unit-img { max-height: 60vh; }
    .room-modal-title { font-size: 1.4rem; }
}

[dir="rtl"] body {
    font-family: 'Segoe UI', Tahoma, Arial, system-ui, sans-serif;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--white);
    color: var(--text);
}

/* ── NAVBAR ── */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 0 2.5rem;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.3s, box-shadow 0.3s;
}

nav.scrolled {
    background: var(--white);
    box-shadow: 0 1px 12px rgba(0,0,0,0.08);
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.3px;
    transition: color 0.3s;
}

nav.scrolled .nav-brand { color: var(--text); }

.nav-brand span { color: var(--blue-light); }
nav.scrolled .nav-brand span { color: var(--blue); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

nav.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: var(--blue-light); }
nav.scrolled .nav-links a:hover { color: var(--blue); }

.btn-nav {
    background: var(--blue);
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.btn-nav:hover { background: var(--blue-dark) !important; }

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hamburger span {
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 50%, #7BB3D0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-content {
    position: relative;
    max-width: 700px;
}

.hero-eyebrow {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.9);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* ── SEARCH BOX ── */
.search-box {
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: flex-end;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
}

.search-field {
    flex: 1;
    min-width: 140px;
}

.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.search-field input,
.search-field select {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
    font-family: inherit;
    background: var(--white);
}

.search-field input:focus,
.search-field select:focus {
    border-color: var(--blue);
}

/* ── BUTTONS ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
    font-family: inherit;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--blue);
    border: 1.5px solid var(--blue);
}

.btn-outline:hover {
    background: var(--blue-pale);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-1px);
}

/* ── CONTAINER ── */
.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section { padding: 5rem 0; }
.section-grey { background: var(--grey); }

.section-header {
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 560px;
}

/* ── STATS ROW ── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.stat-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.stat-box .num {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-box .lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── UNIT CARDS ── */
.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.75rem;
}

.unit-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1.5px solid var(--border);
    cursor: pointer;
}

.unit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.unit-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--blue-pale) 0%, #C8DCE8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--blue-light);
}

.unit-img-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--grey);
}

.unit-img-wrapper .unit-img {
    width: 100%;
    height: 100%;
    display: block;
    background: #000;
}

.img-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text);
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.img-arrow:hover { background: var(--white); }
.img-arrow-prev { left: 10px; }
.img-arrow-next { right: 10px; }

.img-dots {
    position: absolute;
    bottom: 10px;
    left: 0; right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 2;
}

.img-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.6);
    transition: background 0.2s, transform 0.2s;
}

.img-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

.unit-body { padding: 1.5rem; }

.unit-type {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0.5rem;
}

.unit-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.unit-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.unit-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 1.25rem;
}

.unit-tag {
    background: var(--blue-pale);
    color: var(--blue-dark);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 20px;
}

.unit-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1.5px solid var(--border);
}

.unit-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.unit-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* ── FILTERS ── */
.filters-row {
    display: flex;
    gap: 1rem;
    align-items: flex-end;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
    background: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    border: 1.5px solid var(--border);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    min-width: 130px;
}

.filter-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    outline: none;
    font-family: inherit;
    background: var(--white);
    transition: border-color 0.2s;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: var(--blue);
}

/* ── AMENITIES ── */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.25rem;
}

.amenity-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.amenity-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow);
}

.amenity-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.amenity-text h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 3px;
}

.amenity-text p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ── WHO IT'S FOR ── */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.audience-card {
    background: var(--blue-pale);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.2s;
}

.audience-card:hover { transform: translateY(-4px); }

.audience-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.audience-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.audience-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── HERO RENOVATION HIGHLIGHT ── */
.hero-renovation {
    position: relative;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
}

.hero-renovation .renovation-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-renovation .renovation-badge .icon {
    font-size: 2.25rem;
    flex-shrink: 0;
}

.hero-renovation .renovation-badge h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.hero-renovation .renovation-badge p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
}

.hero-renovation .renovation-tags {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.hero-renovation .renovation-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ── SERVICES / PRICE LIST ── */
.service-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover {
    border-color: var(--blue-light);
    box-shadow: var(--shadow);
}

.service-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.service-title .icon { font-size: 1.4rem; }

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.875rem;
}

.price-row:last-child { border-bottom: none; }

.price-row .item-name { color: var(--text); }
.price-row .item-price { color: var(--blue-dark); font-weight: 600; white-space: nowrap; }

/* ── AUDIENCE CAROUSEL (mobile) ── */
.audience-carousel { position: relative; }

.carousel-arrow {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow);
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

.carousel-arrow:hover { background: var(--blue-pale); }
.carousel-arrow.prev { left: -6px; }
.carousel-arrow.next { right: -6px; }

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-card {
    background: var(--grey);
    border-radius: 12px;
    padding: 2rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--blue-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-size: 0.95rem;
    color: var(--text);
    text-decoration: none;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.contact-item a:hover { color: var(--blue); }

.contact-link-blue {
    color: var(--blue) !important;
    text-decoration: underline;
}

.contact-link-blue:hover { color: var(--blue-dark) !important; }

.contact-map {
    width: 100%;
    height: 360px;
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

/* ── SOCIAL ── */
.social-strip {
    background: var(--blue-dark);
    padding: 3rem 0;
    text-align: center;
}

.social-strip h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.social-strip p {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.2s, opacity 0.2s;
}

.social-link:hover { transform: translateY(-2px); opacity: 0.9; }
.sl-whatsapp { background: #25D366; color: white; }
.sl-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.sl-facebook  { background: #1877F2; color: white; }
.sl-tiktok    { background: #111; color: white; border: 1px solid #333; }

/* ── FOOTER ── */
footer {
    background: var(--text);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 1.75rem;
    font-size: 0.85rem;
}

footer span { color: var(--blue-light); }

.footer-lang-link {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-decoration: underline;
    cursor: pointer;
}

.footer-lang-link:hover { color: var(--blue-light); }

.nav-lang-link {
    color: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nav-lang-link:hover { color: var(--white); }
nav.scrolled .nav-lang-link { color: var(--text-muted); }
nav.scrolled .nav-lang-link:hover { color: var(--blue); }

.nav-lang-link-mobile {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ── LANGUAGE POPUP ── */
.lang-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1200;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.lang-popup-overlay.open { display: flex; }

.lang-popup-card {
    background: var(--white);
    border-radius: 14px;
    padding: 2rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lang-popup-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.lang-popup-text:last-of-type { margin-bottom: 1.5rem; }

.lang-popup-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.lang-popup-buttons .btn { flex: 1; justify-content: center; }

/* ── MOBILE MENU ── */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue) 60%, #7BB3D0 100%);
    padding: 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 1100;
}

.mobile-menu.open { display: flex; }

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    color: var(--white);
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    cursor: pointer;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: none;
    text-align: center;
}

.mobile-menu a:hover { color: rgba(255,255,255,0.8); }

/* ── EMPTY STATE ── */
.empty-state {
    grid-column: 1/-1;
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
}

.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    html { scroll-behavior: auto; }
    nav { padding: 0 1.25rem; }
    .hamburger { margin-right: 0.5rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .contact-map { height: 240px; }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .search-box { flex-direction: column; }
    .hero { min-height: auto; justify-content: flex-start; padding: 6.5rem 1.5rem 3rem; }
    .audience-grid { display: block; }
    .audience-grid .audience-card { display: none; }
    .audience-grid .audience-card.active { display: block; }
    .carousel-arrow { display: flex; }
    .hero-renovation {
        flex-direction: column;
        background: rgba(255,255,255,0.12);
        border: 1.5px solid rgba(255,255,255,0.25);
        backdrop-filter: blur(6px);
        border-radius: 20px;
        padding: 8px 18px;
        max-width: fit-content;
        margin: 0 auto;
        gap: 0;
    }
    .hero-renovation .renovation-badge {
        flex-direction: row;
        gap: 6px;
        justify-content: center;
    }
    .hero-renovation .renovation-badge .icon {
        display: inline;
        font-size: 0.9rem;
    }
    .hero-renovation .renovation-badge p { display: none; }
    .hero-renovation .renovation-tags { display: none; }
    .hero-renovation .renovation-badge h3 {
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.9);
    }
    .section { padding: 3.5rem 0; }
}