/* ===========================
   AMENITIES / SPACES PAGE
   =========================== */

.amenities-page-hero .page-hero-bg {
    background-image: url('https://images.unsplash.com/photo-1545324418-cc1a3fa10c00?auto=format&fit=crop&w=2000&q=80');
}

/* ============ INTRO ============ */
.amenities-intro {
    padding: 8rem 3rem 5rem;
    background: var(--paper);
}
.amenities-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: end;
}
@media (max-width: 900px) {
    .amenities-intro { padding: 4rem 1.5rem; }
    .amenities-intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============ WORLD SECTIONS ============ */
.world-section {
    padding: 8rem 3rem;
    position: relative;
    overflow: hidden;
}
.world-section.alt { background: var(--ivory); }
.world-section.dark {
    background: var(--charcoal);
    color: var(--paper);
}
.world-section.dark .eyebrow { color: var(--brand-red-soft); }
.world-section.dark .feat-list .dot { background: var(--brand-red-soft); }

.world-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}
.world-grid.flip { direction: rtl; }
.world-grid.flip > * { direction: ltr; }

.world-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--charcoal);
}
.world-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
    filter: saturate(0.9) contrast(1.05);
}
.world-visual:hover img { transform: scale(1.05); }
.world-visual .v-num {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-family: var(--mono);
    color: var(--paper);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    background: rgba(200,16,46,0.9);
    padding: 0.4rem 0.9rem;
    z-index: 2;
}
.world-visual .v-tag {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-family: var(--display);
    color: var(--paper);
    font-size: 0.95rem;
    z-index: 2;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
}

.world-text .eyebrow { margin-bottom: 1.5rem; }
.world-text h2 {
    margin-bottom: 1.5rem;
}
.world-text h2 em { color: var(--brand-red); font-style: italic; }
.world-section.dark .world-text h2 em { color: var(--brand-red-soft); }

.world-text .lead {
    font-family: var(--display);
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.85;
}

.feat-list {
    list-style: none;
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.9rem 1.5rem;
}
.feat-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 300;
    padding: 0.4rem 0;
}
.feat-list .dot {
    flex-shrink: 0;
    width: 6px; height: 6px;
    background: var(--brand-red);
    border-radius: 50%;
    margin-top: 0.55rem;
}

@media (max-width: 900px) {
    .world-section { padding: 4rem 1.5rem; }
    .world-grid { grid-template-columns: 1fr; gap: 3rem; }
    .world-grid.flip { direction: ltr; }
    .feat-list { grid-template-columns: 1fr; }
}

/* ============ FLOOR PLANS ============ */
.floor-plans-section {
    padding: 8rem 3rem;
    background: var(--paper);
    position: relative;
    overflow: hidden;
}
.fp-bg-text {
    position: absolute;
    bottom: 2rem;
    right: -2rem;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(8rem, 18vw, 18rem);
    color: rgba(200,16,46,0.04);
    line-height: 0.8;
    letter-spacing: -0.05em;
    pointer-events: none;
    z-index: 1;
}
.fp-head {
    max-width: 1400px;
    margin: 0 auto 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
    z-index: 2;
}
.fp-head h2 { max-width: 700px; }
.fp-head .meta {
    text-align: right;
    font-family: var(--mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0.7;
    line-height: 1.8;
}

.fp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.fp-card {
    background: var(--ivory);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform 0.5s var(--ease-out);
    cursor: pointer;
}
.fp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.fp-card-img {
    aspect-ratio: 4/3;
    background: var(--paper);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
}
.fp-card-img svg { width: 80%; height: 80%; }
.fp-card-meta {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.fp-card-meta .l {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--brand-red);
    margin-bottom: 0.4rem;
}
.fp-card-meta .t {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 400;
}
.fp-card-meta .arr {
    width: 36px; height: 36px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s;
}
.fp-card:hover .arr {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: var(--paper);
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .floor-plans-section { padding: 4rem 1.5rem; }
    .fp-grid { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1200px) {
    .fp-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============ AMENITIES STATS BAR ============ */
.am-stats {
    background: var(--brand-red);
    color: var(--paper);
    padding: 4rem 3rem;
}
.am-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}
.am-stat {
    text-align: center;
    padding: 1rem;
    border-right: 1px solid rgba(255,255,255,0.18);
}
.am-stat:last-child { border-right: none; }
.am-stat .n {
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.03em;
}
.am-stat .l {
    font-family: var(--mono);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.8rem;
    opacity: 0.85;
}
@media (max-width: 900px) {
    .am-stats { padding: 3rem 1.5rem; }
    .am-stats-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .am-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 1.5rem; }
    .am-stat:nth-last-child(-n+2) { border-bottom: none; }
}
