/*
Theme Name:   Hello Elementor Child — Real Estate
Theme URI:    https://demo.aistormlabs.com
Description:  Child theme for the Dubai real estate site. All custom templates, styles and overrides live here.
Author:       AI Storm Labs
Template:     hello-elementor
Version:      1.0.0
Text Domain:  realestate
*/

/* ==========================================
   GLOBAL CSS VARIABLES — Brand Colors
   ========================================== */
:root {
    --re-navy:        #07234B;
    --re-orange:      #EE7133;
    --re-orange-dark: #d4611f;
    --re-white:       #ffffff;
    --re-off-white:   #f7f7f4;
    --re-light-gray:  #f0f0ea;
    --re-border:      #e6e6e0;
    --re-text:        #333333;
    --re-text-muted:  #888888;
    --re-success:     #25D366;
    --re-radius-sm:   6px;
    --re-radius-md:   10px;
    --re-radius-lg:   14px;
    --re-shadow-sm:   0 2px 8px rgba(0,0,0,0.06);
    --re-shadow-md:   0 4px 20px rgba(0,0,0,0.09);
    --re-shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
    --re-max-width:   1280px;
    --re-font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ==========================================
   GLOBAL BASE
   ========================================== */
body {
    font-family: var(--re-font);
    color: var(--re-text);
    background: var(--re-white);
    -webkit-font-smoothing: antialiased;
}

a { color: var(--re-navy); text-decoration: none; }
a:hover { color: var(--re-orange); }

img { max-width: 100%; height: auto; }

.re-container {
    max-width: var(--re-max-width);
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .re-container { padding: 0 20px; }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.re-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--re-radius-sm);
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.re-btn-primary {
    background: var(--re-navy);
    color: var(--re-white);
}
.re-btn-primary:hover {
    background: #0a3266;
    color: var(--re-white);
}

.re-btn-orange {
    background: var(--re-orange);
    color: var(--re-white);
}
.re-btn-orange:hover {
    background: var(--re-orange-dark);
    color: var(--re-white);
}

.re-btn-whatsapp {
    background: var(--re-success);
    color: var(--re-white);
}
.re-btn-whatsapp:hover {
    background: #1ebe5d;
    color: var(--re-white);
}

.re-btn-outline {
    background: transparent;
    color: var(--re-navy);
    border: 2px solid var(--re-navy);
}
.re-btn-outline:hover {
    background: var(--re-navy);
    color: var(--re-white);
}

.re-btn-full { width: 100%; justify-content: center; }

.re-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.re-badge-navy { background: var(--re-navy); color: #fff; }
.re-badge-orange { background: var(--re-orange); color: #fff; }
.re-badge-green { background: #1a7a3c; color: #fff; }

.re-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--re-navy);
    margin: 0 0 8px;
}

.re-section-subtitle {
    font-size: 15px;
    color: var(--re-text-muted);
    margin: 0 0 36px;
}

/* ==========================================
   PROPERTY CARD
   ========================================== */
.re-property-card {
    background: var(--re-white);
    border-radius: var(--re-radius-lg);
    overflow: hidden;
    box-shadow: var(--re-shadow-sm);
    border: 1px solid var(--re-border);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
}

.re-property-card:hover {
    box-shadow: var(--re-shadow-lg);
    transform: translateY(-2px);
}

.re-property-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

.re-property-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.re-property-card:hover .re-property-card__image img {
    transform: scale(1.04);
}

.re-property-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.re-property-card__photo-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(4px);
}

.re-property-card__body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.re-property-card__price {
    font-size: 22px;
    font-weight: 700;
    color: var(--re-navy);
    line-height: 1;
}

.re-property-card__price span {
    font-size: 13px;
    font-weight: 400;
    color: var(--re-text-muted);
    margin-left: 4px;
}

.re-property-card__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--re-navy);
    line-height: 1.4;
    margin: 0;
}

.re-property-card__location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--re-text-muted);
}

.re-property-card__location svg {
    flex-shrink: 0;
    color: var(--re-orange);
}

.re-property-card__stats {
    display: flex;
    gap: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--re-border);
    margin-top: auto;
}

.re-property-card__stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--re-text-muted);
}

.re-property-card__stat strong {
    color: var(--re-navy);
    font-weight: 600;
}

/* ==========================================
   PROJECT CARD
   ========================================== */
.re-project-card {
    background: var(--re-white);
    border-radius: var(--re-radius-lg);
    overflow: hidden;
    box-shadow: var(--re-shadow-sm);
    border: 1px solid var(--re-border);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.re-project-card:hover {
    box-shadow: var(--re-shadow-lg);
    transform: translateY(-2px);
}

.re-project-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.re-project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.re-project-card:hover .re-project-card__image img {
    transform: scale(1.04);
}

.re-project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,35,75,0.75) 0%, transparent 60%);
}

.re-project-card__badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
}

.re-project-card__body {
    padding: 18px;
}

.re-project-card__developer {
    font-size: 11px;
    color: var(--re-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.re-project-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--re-navy);
    margin: 0 0 8px;
}

.re-project-card__location {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--re-text-muted);
    margin-bottom: 14px;
}

.re-project-card__meta {
    display: flex;
    gap: 0;
    border-top: 1px solid var(--re-border);
    padding-top: 14px;
}

.re-project-card__meta-item {
    flex: 1;
    text-align: center;
    padding: 0 8px;
    border-right: 1px solid var(--re-border);
}

.re-project-card__meta-item:last-child {
    border-right: none;
}

.re-project-card__meta-item .label {
    font-size: 10px;
    color: var(--re-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: block;
    margin-bottom: 3px;
}

.re-project-card__meta-item .value {
    font-size: 14px;
    font-weight: 700;
    color: var(--re-navy);
}

/* ==========================================
   AGENT CARD
   ========================================== */
.re-agent-card {
    background: var(--re-white);
    border-radius: var(--re-radius-lg);
    padding: 24px;
    text-align: center;
    box-shadow: var(--re-shadow-sm);
    border: 1px solid var(--re-border);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.re-agent-card:hover {
    box-shadow: var(--re-shadow-md);
    transform: translateY(-2px);
}

.re-agent-card__photo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 3px solid var(--re-border);
    display: block;
}

.re-agent-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--re-navy);
    margin: 0 0 4px;
}

.re-agent-card__title {
    font-size: 12px;
    color: var(--re-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.re-agent-card__languages {
    font-size: 12px;
    color: var(--re-text-muted);
    margin-bottom: 14px;
}

.re-agent-card__actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.re-agent-card__actions a {
    flex: 1;
    padding: 8px;
    border-radius: var(--re-radius-sm);
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}

/* ==========================================
   AREA GUIDE CARD
   ========================================== */
.re-area-card {
    border-radius: var(--re-radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    box-shadow: var(--re-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

.re-area-card:hover {
    box-shadow: var(--re-shadow-lg);
    transform: translateY(-2px);
}

.re-area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.re-area-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,35,75,0.85) 0%, rgba(7,35,75,0.1) 60%);
}

.re-area-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
}

.re-area-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.re-area-card__count {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* ==========================================
   TESTIMONIAL CARD
   ========================================== */
.re-testimonial-card {
    background: var(--re-white);
    border-radius: var(--re-radius-lg);
    padding: 28px;
    box-shadow: var(--re-shadow-sm);
    border: 1px solid var(--re-border);
}

.re-testimonial-card__stars {
    color: #f5a623;
    font-size: 14px;
    margin-bottom: 14px;
    display: flex;
    gap: 2px;
}

.re-testimonial-card__text {
    font-size: 14px;
    color: var(--re-text);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.re-testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.re-testimonial-card__author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.re-testimonial-card__author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--re-navy);
}

.re-testimonial-card__author-time {
    font-size: 12px;
    color: var(--re-text-muted);
}

/* ==========================================
   SEARCH BAR
   ========================================== */
.re-search-bar {
    background: var(--re-white);
    border-radius: var(--re-radius-md);
    padding: 16px;
    box-shadow: var(--re-shadow-lg);
}

.re-search-bar__tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid var(--re-border);
    margin-bottom: 14px;
}

.re-search-bar__tab {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--re-text-muted);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.2s;
}

.re-search-bar__tab.active {
    color: var(--re-navy);
    border-bottom-color: var(--re-orange);
}

.re-search-bar__fields {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: flex-end;
}

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

.re-search-bar__field label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--re-text-muted);
    margin-bottom: 6px;
}

.re-search-bar__field select,
.re-search-bar__field input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--re-border);
    border-radius: var(--re-radius-sm);
    font-size: 14px;
    color: var(--re-text);
    background: var(--re-white);
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font-family: var(--re-font);
}

.re-search-bar__field select:focus,
.re-search-bar__field input:focus {
    outline: none;
    border-color: var(--re-navy);
}

/* ==========================================
   SINGLE PROPERTY PAGE
   ========================================== */
.re-single-property__gallery {
    background: #111;
}

.re-single-property__gallery img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.re-single-property__body {
    max-width: var(--re-max-width);
    margin: 0 auto;
    padding: 48px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 44px;
    align-items: start;
}

@media (max-width: 1024px) {
    .re-single-property__body {
        grid-template-columns: 1fr;
        padding: 32px 20px 60px;
    }
}

.re-single-property__main {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.re-single-property__sidebar {
    position: sticky;
    top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Price box */
.re-price-box {
    background: var(--re-navy);
    border-radius: var(--re-radius-md);
    padding: 22px 28px;
    display: flex;
    gap: 0;
}

.re-price-box__price {
    flex: 55%;
}

.re-price-box__ref {
    flex: 45%;
    padding-left: 24px;
    border-left: 1px solid rgba(255,255,255,0.15);
}

.re-price-box__label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 6px;
}

.re-price-box__value {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.re-price-box__ref .re-price-box__value {
    font-size: 18px;
}

/* Stats bar */
.re-stats-bar {
    background: var(--re-off-white);
    border-radius: var(--re-radius-md);
    border: 1px solid var(--re-border);
    display: flex;
    justify-content: space-around;
    padding: 20px 0;
}

.re-stats-bar__item {
    text-align: center;
    flex: 1;
    padding: 0 16px;
    border-right: 1px solid var(--re-border);
}

.re-stats-bar__item:last-child {
    border-right: none;
}

.re-stats-bar__value {
    font-size: 26px;
    font-weight: 700;
    color: var(--re-navy);
    line-height: 1;
}

.re-stats-bar__label {
    font-size: 10px;
    font-weight: 600;
    color: var(--re-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Key info table */
.re-key-info__table {
    border-radius: var(--re-radius-sm);
    border: 1px solid var(--re-border);
    overflow: hidden;
}

.re-key-info__row {
    display: flex;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid var(--re-light-gray);
    font-size: 13px;
}

.re-key-info__row:last-child {
    border-bottom: none;
}

.re-key-info__row:nth-child(even) {
    background: var(--re-off-white);
}

.re-key-info__row:nth-child(odd) {
    background: var(--re-white);
}

.re-key-info__key {
    width: 42%;
    color: var(--re-text-muted);
    flex-shrink: 0;
}

.re-key-info__val {
    font-weight: 600;
    color: var(--re-navy);
}

/* Amenities */
.re-amenities__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 600px) {
    .re-amenities__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.re-amenities__item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--re-text);
}

.re-amenities__check {
    width: 20px;
    height: 20px;
    background: var(--re-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.re-amenities__check svg {
    color: #fff;
}

/* Sidebar card */
.re-sidebar-card {
    background: var(--re-white);
    border-radius: var(--re-radius-lg);
    padding: 26px;
    box-shadow: var(--re-shadow-md);
}

.re-sidebar-card--gray {
    background: var(--re-off-white);
    box-shadow: none;
    border: 1px solid var(--re-border);
}

.re-sidebar-card--navy {
    background: var(--re-navy);
}

.re-sidebar-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--re-navy);
    margin: 0 0 18px;
}

.re-sidebar-card--navy .re-sidebar-card__title {
    color: #fff;
}

/* Agent mini card */
.re-agent-mini {
    display: flex;
    align-items: center;
    gap: 13px;
    background: var(--re-off-white);
    border-radius: var(--re-radius-sm);
    padding: 13px;
    margin-bottom: 16px;
}

.re-agent-mini img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.re-agent-mini__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--re-navy);
}

.re-agent-mini__role {
    font-size: 12px;
    color: var(--re-text-muted);
    margin-top: 2px;
}

/* Mortgage calculator */
.re-mortgage__input-group {
    margin-bottom: 12px;
}

.re-mortgage__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--re-text-muted);
    margin-bottom: 5px;
}

.re-mortgage__input {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid var(--re-border);
    border-radius: var(--re-radius-sm);
    font-size: 13px;
    font-family: var(--re-font);
    background: var(--re-white);
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.re-mortgage__input:focus {
    outline: none;
    border-color: var(--re-navy);
}

.re-mortgage__result {
    background: var(--re-navy);
    color: #fff;
    padding: 18px;
    border-radius: var(--re-radius-sm);
    text-align: center;
    margin-top: 14px;
    display: none;
}

.re-mortgage__result.visible {
    display: block;
}

.re-mortgage__result-amount {
    font-size: 26px;
    font-weight: 700;
}

.re-mortgage__result-label {
    font-size: 11px;
    opacity: 0.55;
    margin-top: 3px;
}

.re-mortgage__result-sub {
    font-size: 11px;
    opacity: 0.4;
    margin-top: 6px;
}

/* Enquiry form override */
.re-enquiry-form .elementor-field-group {
    margin-bottom: 12px;
}

.re-enquiry-form .elementor-field {
    border-radius: var(--re-radius-sm) !important;
    border-color: var(--re-border) !important;
    font-size: 13px !important;
    padding: 9px 12px !important;
}

/* ==========================================
   ARCHIVE / LISTING PAGE
   ========================================== */
.re-archive-hero {
    background: var(--re-navy);
    padding: 50px 40px;
    text-align: center;
}

.re-archive-hero__title {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.re-archive-hero__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.re-archive-body {
    max-width: var(--re-max-width);
    margin: 0 auto;
    padding: 40px 40px 80px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 36px;
    align-items: start;
}

@media (max-width: 1024px) {
    .re-archive-body {
        grid-template-columns: 1fr;
        padding: 24px 20px 60px;
    }
}

.re-filters-panel {
    background: var(--re-white);
    border-radius: var(--re-radius-lg);
    padding: 22px;
    box-shadow: var(--re-shadow-sm);
    border: 1px solid var(--re-border);
    position: sticky;
    top: 24px;
}

.re-filters-panel__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--re-navy);
    margin: 0 0 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--re-border);
}

.re-filters-panel__section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--re-light-gray);
}

.re-filters-panel__section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.re-filters-panel__section-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--re-text-muted);
    margin: 0 0 10px;
}

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

@media (max-width: 1200px) {
    .re-listings-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .re-listings-grid { grid-template-columns: 1fr; }
}

.re-listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.re-listings-count {
    font-size: 14px;
    color: var(--re-text-muted);
}

.re-listings-count strong {
    color: var(--re-navy);
}

/* ==========================================
   HOMEPAGE SECTIONS
   ========================================== */
.re-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--re-navy);
    overflow: hidden;
}

.re-hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
}

.re-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7,35,75,0.5) 0%, rgba(7,35,75,0.75) 100%);
}

.re-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

.re-hero__title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    margin: 0 0 16px;
}

.re-hero__title span { color: var(--re-orange); }

.re-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin: 0 0 40px;
}

.re-hero__stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.re-hero__stat {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 6px;
}

.re-hero__stat::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--re-orange);
    border-radius: 50%;
    display: inline-block;
}

.re-hero__stat:first-child::before { display: none; }

@media (max-width: 768px) {
    .re-hero__title { font-size: 36px; }
    .re-hero__subtitle { font-size: 16px; }
}

/* Partners bar */
.re-partners-bar {
    padding: 24px 40px;
    background: var(--re-white);
    border-bottom: 1px solid var(--re-light-gray);
}

.re-partners-bar__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--re-text-muted);
    text-align: center;
    margin-bottom: 14px;
}

.re-partners-bar__logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0.5;
    filter: grayscale(1);
}

.re-partners-bar__logos span {
    font-size: 15px;
    font-weight: 800;
    color: var(--re-navy);
    letter-spacing: -0.5px;
}

/* USP section */
.re-usps {
    padding: 70px 40px;
    background: var(--re-off-white);
}

.re-usps__grid {
    max-width: var(--re-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .re-usps__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .re-usps__grid { grid-template-columns: 1fr; }
}

.re-usp-card {
    background: var(--re-white);
    border-radius: var(--re-radius-lg);
    padding: 28px 24px;
    border: 1px solid var(--re-border);
    transition: box-shadow 0.2s, transform 0.2s;
    text-decoration: none;
    display: block;
}

.re-usp-card:hover {
    box-shadow: var(--re-shadow-lg);
    transform: translateY(-2px);
}

.re-usp-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}

.re-usp-card__icon--navy { background: var(--re-navy); color: #fff; }
.re-usp-card__icon--orange { background: var(--re-orange); color: #fff; }

.re-usp-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--re-navy);
    margin: 0 0 8px;
}

.re-usp-card__desc {
    font-size: 13px;
    color: var(--re-text-muted);
    line-height: 1.65;
    margin: 0;
}

/* Section wrapper */
.re-section {
    padding: 70px 40px;
}

.re-section--navy {
    background: var(--re-navy);
}

.re-section--navy .re-section-title {
    color: #fff;
}

.re-section--navy .re-section-subtitle {
    color: rgba(255,255,255,0.6);
}

.re-section__header {
    max-width: var(--re-max-width);
    margin: 0 auto 32px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.re-section__grid {
    max-width: var(--re-max-width);
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.re-section__grid--3 { grid-template-columns: repeat(3, 1fr); }
.re-section__grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1200px) {
    .re-section__grid--4 { grid-template-columns: repeat(2, 1fr); }
    .re-section__grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .re-section__grid--4,
    .re-section__grid--3 { grid-template-columns: 1fr; }
    .re-section { padding: 50px 20px; }
    .re-usps { padding: 50px 20px; }
}

/* ==========================================
   HEADER
   ========================================== */
.re-header {
    background: var(--re-navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.re-header__inner {
    max-width: var(--re-max-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    height: 70px;
}

.re-header__logo img {
    height: 36px;
    width: auto;
}

.re-header__logo-text {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.re-header__nav {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
}

.re-header__nav-item {
    position: relative;
}

.re-header__nav-link {
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    border-radius: var(--re-radius-sm);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}

.re-header__nav-link:hover,
.re-header__nav-link.active {
    color: var(--re-orange);
    background: rgba(255,255,255,0.06);
}

.re-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.re-header__phone {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

/* Dropdown */
.re-header__dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: var(--re-white);
    border-radius: var(--re-radius-md);
    box-shadow: var(--re-shadow-lg);
    border: 1px solid var(--re-border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
}

.re-header__nav-item:hover .re-header__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.re-header__dropdown a {
    display: block;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--re-text);
    border-bottom: 1px solid var(--re-light-gray);
    transition: all 0.15s;
}

.re-header__dropdown a:last-child { border-bottom: none; }

.re-header__dropdown a:hover {
    background: var(--re-off-white);
    color: var(--re-navy);
    padding-left: 20px;
}

@media (max-width: 768px) {
    .re-header__nav { display: none; }
    .re-header__phone { display: none; }
}

/* ==========================================
   FOOTER
   ========================================== */
.re-footer {
    background: var(--re-navy);
    padding: 60px 40px 0;
}

.re-footer__grid {
    max-width: var(--re-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 1024px) {
    .re-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .re-footer__grid { grid-template-columns: 1fr; }
    .re-footer { padding: 40px 20px 0; }
}

.re-footer__brand-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin: 12px 0 20px;
}

.re-footer__social {
    display: flex;
    gap: 10px;
}

.re-footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: all 0.2s;
}

.re-footer__social a:hover {
    background: var(--re-orange);
    color: #fff;
}

.re-footer__col-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
}

.re-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.re-footer__links a {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}

.re-footer__links a:hover {
    color: var(--re-orange);
}

.re-footer__bottom {
    max-width: var(--re-max-width);
    margin: 0 auto;
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.re-footer__bottom-text {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}

.re-footer__bottom-links {
    display: flex;
    gap: 16px;
}

.re-footer__bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}

.re-footer__bottom-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* ==========================================
   SINGLE AGENT PAGE
   ========================================== */
.re-agent-hero {
    background: var(--re-navy);
    padding: 60px 40px;
}

.re-agent-hero__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 36px;
    align-items: center;
}

.re-agent-hero__photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--re-orange);
    flex-shrink: 0;
}

.re-agent-hero__name {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.re-agent-hero__title {
    font-size: 15px;
    color: var(--re-orange);
    font-weight: 600;
    margin-bottom: 10px;
}

.re-agent-hero__brn {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 20px;
}

.re-agent-hero__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ==========================================
   SINGLE PROJECT PAGE
   ========================================== */
.re-project-hero {
    position: relative;
    min-height: 55vh;
    display: flex;
    align-items: flex-end;
    background: var(--re-navy);
    overflow: hidden;
}

.re-project-hero__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.re-project-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,35,75,0.92) 0%, rgba(7,35,75,0.3) 60%, transparent 100%);
}

.re-project-hero__content {
    position: relative;
    z-index: 2;
    padding: 60px 60px 40px;
    width: 100%;
}

.re-project-hero__chips {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.re-project-hero__title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.re-project-hero__location {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.re-project-hero__stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.re-project-hero__stat {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 12px 20px;
    border-radius: var(--re-radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
}

.re-project-hero__stat .label {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 3px;
}

.re-project-hero__stat .value {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

/* ==========================================
   AREA GUIDE PAGE
   ========================================== */
.re-area-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.re-area-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.re-area-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,35,75,0.8) 0%, rgba(7,35,75,0.2) 60%);
}

.re-area-hero__content {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
}

.re-area-hero__title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.re-area-hero__tagline {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
}

/* ==========================================
   RESPONSIVE HELPERS
   ========================================== */
@media (max-width: 768px) {
    .re-single-property__gallery img { height: 280px; }
    .re-price-box { flex-direction: column; gap: 16px; }
    .re-price-box__ref { padding-left: 0; border-left: none; border-top: 1px solid rgba(255,255,255,0.15); padding-top: 16px; }
    .re-stats-bar { flex-wrap: wrap; }
    .re-stats-bar__item { flex: 0 0 50%; border-right: none; border-bottom: 1px solid var(--re-border); padding: 14px 0; }
    .re-amenities__grid { grid-template-columns: repeat(2,1fr); }
    .re-archive-hero { padding: 36px 20px; }
    .re-archive-hero__title { font-size: 26px; }
    .re-agent-hero__inner { flex-direction: column; text-align: center; }
    .re-agent-hero__actions { justify-content: center; }
    .re-project-hero__content { padding: 40px 24px 30px; }
    .re-project-hero__title { font-size: 26px; }
}

/* ==========================================
   GALLERY SLIDER
   ========================================== */
.re-gallery-slider {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    max-height: 560px;
}

.re-gallery-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.re-gallery-slide {
    flex: 0 0 100%;
    min-width: 100%;
}

.re-gallery-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.re-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}
.re-gallery-nav:hover { background: rgba(0,0,0,0.8); }
.re-gallery-nav--prev { left: 14px; }
.re-gallery-nav--next { right: 14px; }

.re-gallery-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.re-gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.re-gallery-dot.active {
    background: #fff;
    transform: scale(1.25);
}

.re-gallery-thumb-strip {
    display: flex;
    gap: 6px;
    padding: 10px 16px;
    background: #111;
    overflow-x: auto;
    scrollbar-width: none;
}
.re-gallery-thumb-strip::-webkit-scrollbar { display: none; }

.re-gallery-thumb {
    flex: 0 0 72px;
    height: 52px;
    cursor: pointer;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.2s;
}
.re-gallery-thumb.active { border-color: var(--re-orange); }
.re-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
    .re-gallery-slide img { height: 260px; }
    .re-gallery-slider { max-height: 320px; }
}

/* ==========================================
   ACCORDION
   ========================================== */
.re-accordion { display: flex; flex-direction: column; gap: 0; }

.re-accordion__item {
    border: 1px solid var(--re-border);
    border-radius: var(--re-radius-sm);
    margin-bottom: 6px;
    overflow: hidden;
    background: var(--re-white);
}

.re-accordion__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--re-navy);
    cursor: pointer;
    text-align: left;
    font-family: var(--re-font);
    transition: background 0.15s;
}
.re-accordion__trigger:hover { background: var(--re-off-white); }

.re-accordion__arrow {
    font-size: 11px;
    color: var(--re-text-muted);
    flex-shrink: 0;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.re-accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    padding: 0 18px;
}
.re-accordion__item.open .re-accordion__body {
    padding: 0 18px 16px;
}

/* ==========================================
   FLOOR PLAN TABS
   ========================================== */
.re-floor-tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.re-floor-tab {
    padding: 8px 18px;
    border: 1px solid var(--re-border);
    border-radius: var(--re-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: var(--re-white);
    color: var(--re-text-muted);
    font-family: var(--re-font);
    transition: all 0.2s;
}
.re-floor-tab.active {
    background: var(--re-navy);
    color: #fff;
    border-color: var(--re-navy);
}
.re-floor-tab:hover:not(.active) { border-color: var(--re-navy); color: var(--re-navy); }

.re-floor-panel { display: none; }
.re-floor-panel.active { display: block; }

/* ==========================================
   MOBILE MENU OVERLAY
   ========================================== */
.re-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1998;
    backdrop-filter: blur(2px);
}
.re-mobile-overlay.open { display: block; }

.re-mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(340px, 90vw);
    background: var(--re-navy);
    z-index: 1999;
    padding: 24px 28px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}
.re-mobile-nav.open { transform: translateX(0); }

.re-mobile-nav__close {
    display: block;
    margin-left: auto;
    margin-bottom: 28px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    padding: 0;
}
.re-mobile-nav__close:hover { color: #fff; }

.re-mobile-nav__links {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.re-mobile-nav__links a {
    display: block;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
}
.re-mobile-nav__links a:hover { color: var(--re-orange); }

/* ==========================================
   LOADING SPINNER
   ========================================== */
.re-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid var(--re-border);
    border-top-color: var(--re-navy);
    border-radius: 50%;
    animation: re-spin 0.7s linear infinite;
    margin: 40px auto;
}
@keyframes re-spin { to { transform: rotate(360deg); } }

.re-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.re-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.re-lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
}
.re-lightbox__close,
.re-lightbox__prev,
.re-lightbox__next {
    position: absolute;
    background: rgba(255,255,255,0.1);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.re-lightbox__close:hover,
.re-lightbox__prev:hover,
.re-lightbox__next:hover { background: rgba(255,255,255,0.25); }
.re-lightbox__close { top: 20px; right: 20px; }
.re-lightbox__prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.re-lightbox__next  { right: 20px; top: 50%; transform: translateY(-50%); }

/* ==========================================
   EMPTY STATE
   ========================================== */
.re-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--re-text-muted);
    font-size: 15px;
    background: var(--re-off-white);
    border-radius: var(--re-radius-lg);
    border: 1px dashed var(--re-border);
}

/* ==========================================
   LOAD MORE BUTTON
   ========================================== */
.re-load-more {
    min-width: 200px;
}

/* ==========================================
   SHARE BUTTONS
   ========================================== */
.re-share-btns {
    background: var(--re-off-white);
    border: 1px solid var(--re-border);
    border-radius: var(--re-radius-md);
    padding: 16px 20px;
}

/* ==========================================
   STICKY PROJECT NAV
   ========================================== */
.re-project-nav {
    background: var(--re-white);
    border-bottom: 1px solid var(--re-border);
    position: sticky;
    top: 70px;
    z-index: 100;
    box-shadow: var(--re-shadow-sm);
}

.re-project-nav__item {
    display: inline-block;
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--re-text-muted);
    border-bottom: 2px solid transparent;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}
.re-project-nav__item:hover { color: var(--re-navy); }
.re-project-nav__item.active {
    color: var(--re-navy);
    border-bottom-color: var(--re-orange);
}

/* ==========================================
   FILTER ACTIVE STATE
   ========================================== */
.re-filter-active,
.re-beds-btn.re-filter-active {
    background: var(--re-navy) !important;
    color: #fff !important;
    border-color: var(--re-navy) !important;
}

.re-beds-btn {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--re-border);
    border-radius: var(--re-radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--re-navy);
    background: var(--re-white);
    transition: all 0.15s;
    user-select: none;
}
.re-beds-btn:hover { border-color: var(--re-navy); }

/* ==========================================
   PILL FILTER (projects archive)
   ========================================== */
.re-pill-filter {
    display: inline-block;
    padding: 7px 18px;
    border: 1px solid var(--re-border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--re-text-muted);
    background: var(--re-white);
    text-decoration: none;
    transition: all 0.2s;
}
.re-pill-filter:hover { border-color: var(--re-navy); color: var(--re-navy); }
.re-pill-filter.active { background: var(--re-navy); color: #fff; border-color: var(--re-navy); }

/* ==========================================
   BLOG CARD
   ========================================== */
.re-blog-card {
    background: var(--re-white);
    border-radius: var(--re-radius-lg);
    overflow: hidden;
    border: 1px solid var(--re-border);
    box-shadow: var(--re-shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}
.re-blog-card:hover { box-shadow: var(--re-shadow-md); transform: translateY(-2px); }
.re-blog-card__image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.re-blog-card__body { padding: 20px; }
.re-blog-card__cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--re-orange);
    margin-bottom: 8px;
}
.re-blog-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--re-navy);
    margin: 0 0 10px;
    line-height: 1.4;
}
.re-blog-card__title a { color: inherit; }
.re-blog-card__title a:hover { color: var(--re-orange); }
.re-blog-card__excerpt { font-size: 13px; color: var(--re-text-muted); margin: 0 0 14px; line-height: 1.65; }
.re-blog-card__link { font-size: 13px; font-weight: 600; color: var(--re-navy); }
.re-blog-card__link:hover { color: var(--re-orange); }

/* ==========================================
   HEADER SCROLLED STATE
   ========================================== */
.re-header--scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.22);
}

/* ==========================================
   ADDITIONAL RESPONSIVE
   ========================================== */
@media (max-width: 768px) {
    .re-project-nav { overflow-x: auto; }
    .re-project-nav > div { min-width: max-content; }
    .re-project-hero__stats { flex-direction: column; gap: 10px; }
    .re-area-hero__content { left: 24px; right: 24px; bottom: 24px; }
    .re-area-hero__title { font-size: 28px; }
}

@media (max-width: 480px) {
    .re-gallery-slide img { height: 220px; }
    .re-gallery-slider { max-height: 260px; }
    .re-floor-tabs { gap: 4px; }
    .re-floor-tab { padding: 6px 12px; font-size: 12px; }
    .re-re-section__grid--3, .re-section__grid--4 { grid-template-columns: 1fr; }
}
