:root {
    --primary: #FAF7F2; /* Soft Ivory */
    --accent: #B28F6E; /* Muted Rosewood / Gold */
    --text-dark: #2D241E;
    --text-gray: #756D66;
    --font-main: 'Plus Jakarta Sans', sans-serif;
    --font-heading: 'Cormorant Garamond', serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
body { background: var(--primary); color: var(--text-dark); font-family: var(--font-main); overflow-x: hidden; line-height: 1.8; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 4rem; }
.section-pad { padding: 10rem 0; }

/* NAV */
#prestige-nav { position: fixed; width:100%; top:0; z-index:1000; padding: 2.5rem 0; transition: all 0.4s; }
.nav-box { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 2.2rem; color: var(--text-dark); text-decoration: none; font-weight: 700; letter-spacing: 1px; }
.logo span { color: var(--accent); }
.nav-links a { color: var(--text-dark); text-decoration: none; font-weight: 700; font-size: 0.85rem; text-transform: uppercase; margin-left: 3.5rem; letter-spacing: 1.5px; }
.nav-cta { background: var(--text-dark); color: white !important; padding: 0.8rem 1.8rem; border-radius: 100px; }

/* HERO (Zero-Shade) */
.hero-sec { height: 100vh; display: flex; align-items: center; background: white; border-bottom: 1px solid #ECE7E1; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: center; }
.hero-content h1 { font-family: var(--font-heading); font-size: 6rem; line-height: 1; margin-bottom: 2.5rem; color: var(--text-dark); }
.hero-img { height: 75vh; background: #fdfdfd; overflow: hidden; border-radius: 40px; }
.hero-img img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.05); }

/* SERVICE CARDS */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.pf-card { background: white; border-radius: 20px; overflow: hidden; border: 1px solid #F0ECE7; transition: all 0.4s; }
.pf-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(178,143,110,0.1); }
.pf-img { height: 350px; background: #eee; }
.pf-img img { width: 100%; height: 100%; object-fit: cover; }
.pf-body { padding: 2.5rem; text-align: center; }
.pf-body h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 0.5rem; }

/* TRANSFORMATION (Bento) */
.transformation-box { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; background: white; padding: 4rem; border-radius: 40px; border: 1px solid #F0ECE7; }
.before-after { position: relative; height: 500px; overflow: hidden; border-radius: 20px; }
.ba-label { position: absolute; bottom: 20px; left: 20px; background: var(--text-dark); color: white; padding: 0.4rem 1.2rem; border-radius: 100px; font-weight: 800; font-size: 0.75rem; }

/* PROMINENT CTA */
.prominent-cta { background: var(--accent); color: white; padding: 8rem 0; text-align: center; }
.prominent-cta h2 { font-family: var(--font-heading); font-size: 4.5rem; margin-bottom: 1.5rem; line-height: 1.1; }
.enquiry-form { max-width: 800px; margin: 3rem auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.enquiry-form input, select { padding: 1.2rem; background: rgba(255,255,255,0.9); border: none; border-radius: 10px; font-weight: 700; }
.enquiry-form button { grid-column: span 2; padding: 1.4rem; background: var(--text-dark); color: white; border: none; border-radius: 10px; font-weight: 800; font-size: 1.1rem; text-transform: uppercase; cursor: pointer; }

/* AI CONCIERGE */
#concierge-trigger { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2000; box-shadow: 0 15px 35px rgba(178,143,110,0.3); cursor: pointer; }
.pulse-icon { font-size: 1.8rem; color: white; }
#concierge-window { position: fixed; bottom: 110px; right: 30px; width: 400px; background: white; border-radius: 30px; overflow: hidden; box-shadow: 0 30px 80px rgba(0,0,0,0.1); opacity: 0; pointer-events: none; transition: 0.4s; z-index: 2000; transform: translateY(20px); }
#concierge-window.active { opacity: 1; pointer-events: all; transform: translateY(0); }
.concierge-header { background: var(--accent); padding: 2rem; color: white; display: flex; align-items: center; gap: 1rem; }
.concierge-body { height: 400px; background: #FAF9F7; padding: 2rem; overflow-y: auto; }
.chat-item { margin-bottom: 1.5rem; padding: 1.2rem; border-radius: 15px; font-size: 0.95rem; }
.ig-msg { background: white; color: var(--text-dark); border-bottom-left-radius: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.user-msg { background: var(--text-dark); color: white; border-bottom-right-radius: 0; margin-left: 2rem; }

@media (max-width: 1024px) {
    .container { padding: 0 2rem; }
    .hero-grid, .card-grid, .transformation-box, .enquiry-form { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3.5rem; }
    .enquiry-form button { grid-column: span 1; }
}
