:root {
    --primary: #2d5a8e;       /* Deep contractor blue */
    --primary-hover: #1e3f63;
    --primary-light: #dbeafe;
    --accent: #e07b39;        /* Warm construction orange */
    --dark: #111827;
    --dark-2: #1f2937;
    --mid: #4b5563;
    --text-body: #6b7280;
    --bg-light: #f9fafb;
    --bg-warm: #faf8f5;
    --border: #e5e7eb;

    --font-serif: 'Playfair Display', serif;
    --font-sans: 'DM Sans', sans-serif;
    --radius: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 16px 32px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--text-body); background: #fff; line-height: 1.7; }
h1,h2,h3,h4 { font-family: var(--font-serif); color: var(--dark); line-height: 1.2; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { display: block; width: 100%; }
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 28px; border-radius: var(--radius);
    font-family: var(--font-sans); font-weight: 600;
    font-size: 1rem; border: 2px solid transparent;
    cursor: pointer; transition: var(--transition);
}
.btn-xl { padding: 18px 40px; font-size: 1.15rem; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(45,90,142,0.35); }
.btn-ghost { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); color: white; backdrop-filter: blur(4px); }
.btn-ghost:hover { background: white; color: var(--dark); border-color: white; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(45,90,142,0.6);} 70%{box-shadow:0 0 0 16px rgba(45,90,142,0);} 100%{box-shadow:0 0 0 0 rgba(45,90,142,0);} }
.btn-pulse { animation: pulse 2.2s infinite; }

/* Top Bar */
.top-bar { background: var(--dark-2); color: #9ca3af; padding: 8px 0; font-size: 0.85rem; font-weight: 500; }
.top-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.top-left { display: flex; gap: 24px; flex-wrap: wrap; }
.top-left i { color: var(--accent); margin-right: 5px; }
.top-phone { color: var(--accent); font-weight: 700; }
.top-phone:hover { color: white; }

/* Header */
header { background: white; padding: 18px 0; box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; border-bottom: 3px solid var(--primary); }
.header-row { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-icon { font-size: 2rem; color: var(--primary); }
.brand-text { display: flex; flex-direction: column; }
.brand-name { font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700; color: var(--dark); line-height: 1; }
.brand-sub { font-size: 0.75rem; font-weight: 600; color: var(--text-body); text-transform: uppercase; letter-spacing: 1.5px; margin-top: 3px; }
.main-nav { display: flex; gap: 32px; }
.main-nav a { font-weight: 500; color: var(--mid); font-size: 0.95rem; }
.main-nav a:hover { color: var(--primary); }
.mobile-btn { display: none; background: none; border: none; font-size: 1.8rem; color: var(--dark); cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; padding: 120px 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,24,39,0.93) 0%, rgba(17,24,39,0.72) 50%, rgba(17,24,39,0.2) 100%); }
.hero-content { position: relative; z-index: 1; }
.hero-text { max-width: 680px; color: white; }
.hero-eyebrow { font-size: 0.85rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.hero h1 { color: white; font-size: 4.5rem; margin-bottom: 24px; }
.hero h1 em { color: #93c5fd; font-style: italic; }
.hero p { font-size: 1.2rem; color: #d1d5db; margin-bottom: 40px; font-weight: 300; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.hero-trust span { font-size: 0.9rem; font-weight: 600; color: #9ca3af; }
.hero-trust i { color: var(--accent); margin-right: 6px; }

/* Services */
.services { padding: 100px 0; background: var(--bg-light); }
.section-eyebrow { font-size: 0.8rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--primary); margin-bottom: 12px; }
.section-title { font-size: 2.8rem; margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.svc-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 28px; transition: var(--transition); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.svc-featured { background: var(--primary); border-color: var(--primary); }
.svc-featured h3, .svc-featured p { color: white; }
.svc-featured .svc-icon { color: #93c5fd; }
.svc-icon { font-size: 2.2rem; color: var(--primary); margin-bottom: 20px; }
.svc-card h3 { font-size: 1.4rem; margin-bottom: 12px; }

/* Gallery */
.gallery-section { padding: 100px 0; background: var(--bg-warm); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: 280px 280px; gap: 16px; margin-top: 48px; }
.gal-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gal-item:hover img { transform: scale(1.06); }
.gal-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(0deg, rgba(17,24,39,0.85) 0%, transparent 100%); color: white; padding: 20px 16px 14px; font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px; }
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }

/* Experience Split */
.exp-section { padding: 100px 0; background: white; }
.split-layout { display: flex; align-items: center; gap: 60px; }
.split-img { flex: 1; border-radius: var(--radius); overflow: hidden; height: 520px; box-shadow: var(--shadow-lg); }
.split-img img { height: 100%; object-fit: cover; }
.split-text { flex: 1; }
.split-text h2 { font-size: 2.8rem; margin-bottom: 20px; }
.split-text > p { font-size: 1.1rem; margin-bottom: 36px; }
.exp-features { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.exp-feat { display: flex; gap: 16px; align-items: flex-start; }
.exp-feat > i { font-size: 1.5rem; color: var(--primary); margin-top: 3px; flex-shrink: 0; }
.exp-feat h4 { font-family: var(--font-sans); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }

/* Final CTA */
.final-cta { padding: 100px 0; background: var(--dark-2); color: white; }
.final-cta h2 { color: white; font-size: 3.5rem; margin-bottom: 16px; }
.final-cta > .container > p { color: #9ca3af; font-size: 1.15rem; margin-bottom: 40px; }
.cta-group { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.section-eyebrow.light { color: var(--accent); }

/* Footer */
footer { background: var(--dark); color: #6b7280; padding: 60px 0 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; padding-bottom: 40px; }
.f-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: white; margin-bottom: 16px; }
.f-logo i { color: var(--accent); margin-right: 8px; }
.footer-brand p { max-width: 340px; }
.footer-contact h4 { font-family: var(--font-serif); color: white; font-size: 1.2rem; margin-bottom: 20px; }
.footer-contact ul { list-style: none; }
.footer-contact li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.footer-contact i { color: var(--accent); width: 18px; flex-shrink: 0; }
.footer-contact a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; font-size: 0.85rem; text-align: center; }

/* Responsive */
@media (max-width: 992px) {
    .split-layout { flex-direction: column; }
    .split-img { width: 100%; height: 380px; }
    .hero h1 { font-size: 3.5rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gal-tall { grid-row: span 1; }
    .gal-wide { grid-column: span 2; }
    .gal-item { height: 260px; }
}
@media (max-width: 768px) {
    .top-left { gap: 12px; }
    .main-nav, .nav-btn { display: none; }
    .mobile-btn { display: block; }
    .hero { padding: 80px 0; }
    .hero h1 { font-size: 2.8rem; }
    .hero-text { text-align: center; margin: 0 auto; }
    .hero-overlay { background: rgba(17,24,39,0.88); }
    .hero-actions, .hero-trust { justify-content: center; }
    .section-title { font-size: 2.2rem; }
    .final-cta h2 { font-size: 2.8rem; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gal-wide { grid-column: span 1; }
    .gal-item { height: 240px; }
}
