/* ═══ PRISM THEME ═════════════════════════════════════════
   Full-bleed hero, card grids, mosaic gallery, dark/light.
   ════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --pr-primary: #1a56db;
    --pr-dark: #0a0a0a;
    --pr-dark-section: #111111;
    --pr-light: #fafafa;
    --pr-gray: #888;
    --pr-border: #222;
    --pr-radius: 6px;
}

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

body {
    font-family: "Outfit", sans-serif;
    color: #1a1a1a;
    line-height: 1.65;
    background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--pr-primary); text-decoration: none; }

/* ── Header (overlay-minimal) ────────────────────────────── */
.pr-header {
    position: absolute; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 72px;
}
.pr-header .logo img { max-height: 36px; }
.pr-header .logo-text { color: #fff; font-size: 20px; font-weight: 700; }
.pr-header nav a { color: rgba(255,255,255,0.8); margin-left: 28px; font-size: 13px; font-weight: 500; }
.pr-header nav a:hover { color: #fff; }

/* ── Pre-launch ──────────────────────────────────────────── */
.pr-prelaunch {
    background: var(--pr-primary); color: #fff;
    text-align: center; padding: 10px 20px; font-size: 13px; font-weight: 600;
    position: relative; z-index: 101;
}

/* ── Full Bleed Hero ─────────────────────────────────────── */
.pr-showcase {
    position: relative; height: 100vh; min-height: 600px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
}
.pr-showcase-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.pr-showcase-content {
    position: relative; z-index: 2; color: #fff; max-width: 680px; padding: 20px;
}
.pr-showcase-content h1 {
    font-size: 56px; font-weight: 800; line-height: 1.05;
    margin-bottom: 16px; letter-spacing: -1px;
}
.pr-showcase-content p { font-size: 18px; opacity: 0.85; margin-bottom: 28px; }
.pr-showcase-content .pr-rera { font-size: 12px; opacity: 0.6; margin-top: 12px; }
.pr-hero-btn {
    display: inline-block; padding: 16px 40px;
    background: var(--pr-primary); color: #fff;
    border-radius: var(--pr-radius); font-weight: 700; font-size: 15px;
}

/* ── Section base ────────────────────────────────────────── */
.pr-section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.pr-section h2 { font-size: 34px; font-weight: 700; margin-bottom: 8px; }
.pr-section .pr-sub { color: var(--pr-gray); font-size: 15px; margin-bottom: 40px; }

/* ── Dark sections ───────────────────────────────────────── */
.pr-dark-bg { background: var(--pr-dark-section); color: #eee; }
.pr-dark-bg h2 { color: #fff; }
.pr-dark-bg .pr-sub { color: #777; }

/* ── Narrative (project story) ───────────────────────────── */
.pr-narrative-flex {
    display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}
.pr-narrative-text p { font-size: 16px; color: #555; margin-bottom: 14px; }
.pr-dark-bg .pr-narrative-text p { color: #aaa; }
.pr-narrative-img { border-radius: var(--pr-radius); overflow: hidden; }
.pr-narrative-img img { width: 100%; }

/* ── Feature Tiles (card grid) ───────────────────────────── */
.pr-tiles-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pr-tile {
    background: #fff; border: 1px solid #eee;
    border-radius: var(--pr-radius); overflow: hidden;
    transition: transform 0.2s;
}
.pr-tile:hover { transform: translateY(-4px); }
.pr-tile img { width: 100%; height: 140px; object-fit: cover; }
.pr-tile-body { padding: 16px; }
.pr-tile-body h3 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.pr-tile-body p { font-size: 12px; color: var(--pr-gray); }
.pr-dark-bg .pr-tile { background: #1a1a1a; border-color: #333; }
.pr-dark-bg .pr-tile-body h3 { color: #fff; }
.pr-dark-bg .pr-tile-body p { color: #888; }

/* ── Blurred overlays (dimensions/siteview/proximity) ────── */
.pr-blur-wrap { position: relative; cursor: pointer; border-radius: var(--pr-radius); overflow: hidden; }
.pr-blur-wrap img { -webkit-filter: blur(14px) !important; filter: blur(14px) !important; transform: scale(1.06) translateZ(0); width: 100%; }
.pr-blur-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex; align-items: center; justify-content: center;
}
.pr-blur-overlay span {
    background: var(--pr-primary); color: #fff;
    padding: 14px 32px; border-radius: var(--pr-radius);
    font-weight: 700; font-size: 15px;
}

/* ── Mosaic Gallery ──────────────────────────────────────── */
.pr-mosaic {
    display: grid; gap: 8px;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
}
.pr-mosaic img {
    width: 100%; height: 100%; object-fit: cover;
    border-radius: var(--pr-radius);
}
.pr-mosaic img:first-child {
    grid-column: 1 / 3; grid-row: 1 / 3;
    min-height: 360px;
}
.pr-mosaic img:nth-child(2) { grid-column: 3 / 4; min-height: 174px; }
.pr-mosaic img:nth-child(3) { grid-column: 4 / 5; min-height: 174px; }
.pr-mosaic img:nth-child(4) { grid-column: 3 / 4; min-height: 174px; }
.pr-mosaic img:nth-child(5) { grid-column: 4 / 5; min-height: 174px; }
.pr-mosaic img:nth-child(6) { grid-column: 1 / 5; min-height: 200px; }

/* ── Investment details ──────────────────────────────────── */
.pr-invest-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.pr-invest-card {
    background: #fff; border: 1px solid #eee;
    border-radius: var(--pr-radius); padding: 28px; text-align: center;
}
.pr-invest-card h3 { font-size: 28px; font-weight: 800; color: var(--pr-primary); margin-bottom: 6px; }
.pr-invest-card p { font-size: 14px; color: var(--pr-gray); }
.pr-dark-bg .pr-invest-card { background: #1a1a1a; border-color: #333; }
.pr-dark-bg .pr-invest-card p { color: #888; }

/* ── Inquiry / Lead Form ─────────────────────────────────── */
.pr-inquiry-wrap { max-width: 560px; margin: 0 auto; text-align: center; }
.pr-inquiry-wrap h3 { font-size: 22px; margin-bottom: 20px; color: #fff; }
.pr-inquiry-wrap input, .pr-inquiry-wrap textarea {
    width: 100%; padding: 14px 16px; margin-bottom: 12px;
    border: 1px solid #333; border-radius: var(--pr-radius);
    background: #1a1a1a; color: #fff; font-size: 14px;
    font-family: "Outfit", sans-serif;
}
.pr-inquiry-wrap input::placeholder, .pr-inquiry-wrap textarea::placeholder { color: #666; }
.pr-inquiry-wrap button {
    width: 100%; padding: 16px; background: var(--pr-primary);
    color: #fff; border: none; border-radius: var(--pr-radius);
    font-weight: 700; font-size: 16px; cursor: pointer;
    font-family: "Outfit", sans-serif;
}

/* ── Modal trigger CTA ───────────────────────────────────── */
.pr-modal-btn {
    display: inline-block; padding: 14px 32px;
    background: var(--pr-primary); color: #fff;
    border-radius: var(--pr-radius); font-weight: 700;
    font-size: 14px; cursor: pointer; margin-top: 16px;
}
.pr-modal-backdrop {
    display: none; position: fixed; inset: 0; z-index: 300;
    background: rgba(0,0,0,0.7);
    align-items: center; justify-content: center;
}
.pr-modal-backdrop.active { display: flex; }
.pr-modal-box {
    background: var(--pr-dark-section); padding: 40px;
    border-radius: 12px; max-width: 480px; width: 90%;
    position: relative;
}
.pr-modal-close {
    position: absolute; top: 12px; right: 16px;
    background: none; border: none; color: #888;
    font-size: 24px; cursor: pointer;
}

/* ── RERA ─────────────────────────────────────────────────── */
.pr-rera { font-size: 12px; color: var(--pr-gray); }

/* ── Footer (gradient-dark) ──────────────────────────────── */
.pr-footer {
    background: linear-gradient(180deg, var(--pr-dark-section) 0%, #000 100%);
    color: #888; padding: 48px 48px 28px;
}
.pr-footer-inner {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px; max-width: 1200px; margin: 0 auto;
}
.pr-footer h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 1px; }
.pr-footer p, .pr-footer a { font-size: 13px; color: #888; }
.pr-footer a:hover { color: #fff; }
.pr-footer-bottom {
    text-align: center; margin-top: 28px; padding-top: 20px;
    border-top: 1px solid #222; font-size: 12px; color: #555;
    max-width: 1200px; margin-left: auto; margin-right: auto;
}

/* ── Floating buttons ────────────────────────────────────── */
.pr-floating { position: fixed; bottom: 20px; right: 20px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.pr-float-btn {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 22px; text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
.pr-float-phone { background: var(--pr-primary); }
.pr-float-whatsapp { background: #25d366; }

/* Hamburger in header */
.pr-header { display: flex; align-items: center; justify-content: space-between; }
.pr-header .hamburger-btn { position: static; background: none; border: none; color:#fff;text-shadow:0 1px 3px rgba(0,0,0,.55); font-size: 24px; cursor: pointer; padding: 8px; line-height: 1; width: auto; height: auto; border-radius: 0; backdrop-filter: none; -webkit-backdrop-filter: none; box-shadow: none; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .pr-showcase-content h1 { font-size: 32px; }
    .pr-section { padding: 48px 20px; }
    .pr-narrative-flex { grid-template-columns: 1fr; }
    .pr-tiles-grid { grid-template-columns: 1fr 1fr; }
    .pr-mosaic { grid-template-columns: 1fr 1fr; }
    .pr-mosaic img:first-child { grid-column: 1 / 3; grid-row: auto; min-height: 200px; }
    .pr-mosaic img:nth-child(n) { grid-column: auto; min-height: 160px; }
    .pr-invest-grid { grid-template-columns: 1fr; }
    .pr-footer-inner { grid-template-columns: 1fr; }
    .pr-header { padding: 0 20px; }
}

/* prism bespoke sections */
.pr-prose p{font-size:15px;line-height:1.8;color:var(--pr-gray);margin-bottom:16px}
.pr-mintiles{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:1px;background:var(--pr-border);border:1px solid var(--pr-border)}
.pr-mintile{background:var(--pr-dark-section);padding:28px 20px;text-align:center}
.pr-mintile-v{display:block;font-size:24px;font-weight:800;color:#fff;line-height:1}
.pr-mintile-l{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:var(--pr-gray);margin-top:8px}
