/* ═══ TERRACE THEME ═══════════════════════════════════════
   Light & airy, serif headings, sidebar lead form, warm tones.
   ══════════════════════════════════════════════════════════ */

:root {
    --tc-primary: #1a56db;
    --tc-warm: #faf7f2;
    --tc-text: #2c2c2c;
    --tc-muted: #7c7c7c;
    --tc-border: #e8e4de;
}

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

body {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    color: var(--tc-text);
    line-height: 1.7;
    background: #fff;
}

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

/* ── Header (transparent-light) ───────────────────────── */
.tc-header {
    position: absolute; top: 0; left: 0; right: 0; z-index: 100;
    padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between;
}
.tc-header .logo img { max-height: 44px; }
.tc-header .logo-text { font-size: 22px; font-weight: 700; color: #fff; font-family: Georgia, serif; }
.tc-header nav a { color: rgba(255,255,255,0.85); margin-left: 20px; font-size: 14px; }

/* ── Splash Hero ──────────────────────────────────────── */
.tc-splash {
    position: relative; height: 85vh; min-height: 550px;
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center; text-align: center;
}
.tc-splash-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.45);
}
.tc-splash-inner { position: relative; z-index: 2; color: #fff; max-width: 650px; padding: 20px; }
.tc-splash-inner h1 { font-family: Georgia, "Times New Roman", serif; font-size: 48px; font-weight: 400; margin-bottom: 16px; letter-spacing: -0.5px; }
.tc-splash-inner p { font-size: 18px; opacity: 0.9; margin-bottom: 24px; }
.tc-splash-inner .tc-btn {
    display: inline-block; background: var(--tc-primary); color: #fff;
    padding: 14px 36px; border-radius: 4px; font-weight: 600; font-size: 15px;
}

/* ── Section base ─────────────────────────────────────── */
.tc-section { padding: 64px 40px; max-width: 1100px; margin: 0 auto; }
.tc-section h2 { font-family: Georgia, serif; font-size: 32px; font-weight: 400; margin-bottom: 6px; }
.tc-section .tc-sub { color: var(--tc-muted); margin-bottom: 28px; font-size: 14px; }
.tc-section-warm { background: var(--tc-warm); }

/* ── Introduction ─────────────────────────────────────── */
.tc-intro-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.tc-intro-split img { border-radius: 4px; }
.tc-intro-split p { font-size: 16px; color: #555; margin-bottom: 12px; }

/* ── Features Grid ────────────────────────────────────── */
.tc-feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tc-feature-tile {
    background: #fff; border: 1px solid var(--tc-border);
    padding: 20px; text-align: center; border-radius: 4px;
}
.tc-feature-tile img { width: 60px; height: 60px; object-fit: cover; border-radius: 4px; margin: 0 auto 10px; }
.tc-feature-tile h3 { font-size: 14px; font-weight: 600; }
.tc-feature-tile p { font-size: 12px; color: var(--tc-muted); }

/* ── Pricing ──────────────────────────────────────────── */
.tc-pricing-table { width: 100%; border-collapse: collapse; }
.tc-pricing-table th, .tc-pricing-table td { padding: 12px 16px; border-bottom: 1px solid var(--tc-border); text-align: left; font-size: 14px; }
.tc-pricing-table th { font-size: 12px; text-transform: uppercase; color: var(--tc-muted); }

/* ── Blurred overlays ─────────────────────────────────── */
.tc-blur-container { position: relative; cursor: pointer; margin-top: 12px; }
.tc-blur-container img { -webkit-filter: blur(14px) !important; filter: blur(14px) !important; transform: scale(1.06) translateZ(0); width: 100%; border-radius: 4px; }
.tc-blur-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(44,44,44,0.25); border-radius: 4px;
}
.tc-blur-overlay span {
    background: var(--tc-primary); color: #fff;
    padding: 14px 32px; border-radius: 4px; font-weight: 600; font-size: 14px;
    font-family: Georgia, serif;
}

/* ── Photos (masonry-ish) ─────────────────────────────── */
.tc-photo-grid { column-count: 3; column-gap: 12px; }
.tc-photo-grid img { width: 100%; margin-bottom: 12px; border-radius: 4px; }

/* ── Enquire / Lead Form (sidebar style) ──────────────── */
.tc-enquire-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.tc-enquire-text h3 { font-family: Georgia, serif; font-size: 24px; margin-bottom: 12px; }
.tc-enquire-text p { font-size: 15px; color: #555; margin-bottom: 10px; }
.tc-enquire-form {
    background: var(--tc-warm); border: 1px solid var(--tc-border);
    border-radius: 8px; padding: 28px;
}
.tc-enquire-form h4 { margin-bottom: 14px; font-size: 16px; }
.tc-enquire-form input, .tc-enquire-form textarea {
    width: 100%; padding: 10px 12px; border: 1px solid var(--tc-border);
    border-radius: 4px; margin-bottom: 10px; font-size: 14px; background: #fff;
}
.tc-enquire-form button {
    width: 100%; background: var(--tc-primary); color: #fff;
    padding: 12px; border: none; border-radius: 4px;
    font-weight: 600; font-size: 15px; cursor: pointer;
}

/* ── CTA banner (between sections) ────────────────────── */
.tc-cta-banner {
    text-align: center; padding: 28px 20px;
    background: var(--tc-primary); color: #fff;
}
.tc-cta-banner h3 { font-family: Georgia, serif; font-size: 20px; margin-bottom: 8px; }
.tc-cta-banner a { color: #fff; text-decoration: underline; font-weight: 600; }

/* ── RERA / Pre-launch ────────────────────────────────── */
.tc-rera { font-size: 12px; color: var(--tc-muted); margin-top: 6px; }
.tc-prelaunch {
    background: #fff8e1; color: #8d6e07; text-align: center;
    padding: 10px; font-size: 13px; font-weight: 500;
}

/* ── Footer (minimal) ─────────────────────────────────── */
.tc-footer {
    text-align: center; padding: 32px 20px;
    background: var(--tc-warm); border-top: 1px solid var(--tc-border);
    font-size: 13px; color: var(--tc-muted);
}
.tc-footer strong { color: var(--tc-text); }

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

/* Hamburger in header */
.tc-header { display: flex; align-items: center; justify-content: space-between; }
.tc-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; }

@media (max-width: 768px) {
    .tc-splash-inner h1 { font-size: 30px; }
    .tc-section { padding: 40px 20px; }
    .tc-intro-split, .tc-enquire-layout { grid-template-columns: 1fr; }
    .tc-feature-grid { grid-template-columns: 1fr 1fr; }
    .tc-photo-grid { column-count: 2; }
    .tc-header { padding: 12px 16px; }
}

/* terrace bespoke sections */
.tc-prose p{font-size:15px;line-height:1.85;margin-bottom:16px;text-align:justify}
.tc-panelgrid{display:grid;grid-template-columns:1fr 1fr;gap:20px;max-width:900px;margin:0 auto}
.tc-panel{background:#fff;border:1px solid var(--tc-border);border-left:3px solid var(--tc-primary);padding:22px 26px}
.tc-panel h3{font-family:Georgia,serif;font-size:19px;font-weight:400;margin-bottom:8px;color:var(--tc-text)}
.tc-panel p{font-size:14px;color:#6b6b6b;line-height:1.6}
@media(max-width:768px){.tc-panelgrid{grid-template-columns:1fr}}
