/* Core Settings */
html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: #333; line-height: 1.6; background-color: #fff; }

/* Top Contact Bar */
.top-bar { background: #1a1a1a; color: #fff; padding: 10px 10%; display: flex; justify-content: space-between; font-size: 12px; letter-spacing: 1px; font-weight: 400; }

/* Header & Nav */
header { background: #fff; padding: 20px 10%; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 15px rgba(0,0,0,0.05); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: bold; letter-spacing: 1px; }
.logo span { color: #E31E24; font-weight: 300; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 30px; }
nav ul li a { text-decoration: none; color: #333; font-weight: 600; font-size: 13px; text-transform: uppercase; transition: 0.3s; }
nav ul li a:hover { color: #E31E24; }

/* Hero Section */
.hero { height: 85vh; background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 60px; line-height: 1.2; margin-bottom: 20px; letter-spacing: 2px; }
.hero p { font-size: 18px; margin-bottom: 30px; font-weight: 300; }
.btn-main { border: 1px solid #fff; color: #fff; padding: 15px 35px; text-decoration: none; font-weight: bold; font-size: 14px; transition: 0.4s; }
.btn-main:hover { background: #fff; color: #000; }

/* Section Containers */
.section { padding: 80px 10%; }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-family: 'Playfair Display', serif; font-size: 40px; margin-bottom: 10px; }
.section-title p { color: #888; font-style: italic; font-family: 'Playfair Display', serif; }

/* Interior Grid (Images 15 & 16) */
.interior-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.interior-item img { width: 100%; height: 450px; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.interior-text { grid-column: span 2; text-align: center; max-width: 800px; margin: 20px auto 0; font-size: 18px; color: #555; }

/* Showcase Row */
.showcase { display: flex; height: 500px; }
.showcase-box { flex: 1; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; transition: 0.5s; cursor: pointer; }
.showcase-box:hover { flex: 1.2; }
.showcase-overlay { background: rgba(0,0,0,0.3); padding: 20px 40px; border: 1px solid #fff; color: #fff; font-family: 'Playfair Display', serif; font-size: 24px; }

/* Made to Measure (8,9,10) */
.mtm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.mtm-card { text-align: center; }
.mtm-card img { width: 100%; height: 500px; object-fit: cover; margin-bottom: 15px; border-bottom: 4px solid transparent; transition: 0.3s; }
.mtm-card:hover img { border-color: #E31E24; }
.mtm-card h4 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 400; }

/* Lifestyle Bottom Grid */
.lifestyle-grid { display: grid; grid-template-columns: repeat(3, 1fr); height: 400px; overflow: hidden; }
.lifestyle-grid img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
footer { background: #111; color: #fff; padding: 80px 10% 20px; }
.footer-container { display: flex; justify-content: space-between; border-bottom: 1px solid #333; padding-bottom: 50px; flex-wrap: wrap; }
.footer-block { flex: 1; min-width: 250px; margin-bottom: 30px; }
.footer-block h3 { font-size: 16px; margin-bottom: 20px; letter-spacing: 1px; color: #E31E24; }
.footer-block p { color: #aaa; margin-bottom: 5px; font-size: 14px; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 32px; letter-spacing: 2px; }
.copyright { text-align: center; padding-top: 30px; font-size: 12px; color: #555; }

/* Mobile Responsive */
@media (max-width: 768px) {
    nav ul { display: none; }
    .hero h1 { font-size: 36px; }
    .interior-grid, .mtm-grid, .lifestyle-grid { grid-template-columns: 1fr; }
    .showcase { flex-direction: column; height: auto; }
    .showcase-box { height: 300px; }
}