:root{
    --accent:#ff6b35;
    --accent-2:#ffb86b;
    --bg:#0f1720;
    --muted:#6b7280;
    --card:#ffffff;
    --max-width:1180px;
}

*{box-sizing:border-box}
body{
    margin:0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color:#111827;
    background: linear-gradient(180deg,#f8fafc 0%, #ffffff 100%);
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
    line-height:1.5;
}

.container{
    max-width:var(--max-width);
    margin:0 auto;
    padding:0 20px;
}

/* Header */
.site-header{
    background:#0b1220;
    color:#fff;
}
.header-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:18px 0;
}
.brand{
    display:flex;
    gap:14px;
    align-items:center;
}
.logo{
    width:64px;
    height:64px;
    object-fit:contain;
    border-radius:8px;
    background:linear-gradient(135deg,var(--accent),var(--accent-2));
    padding:8px;
}
/* make header sticky on larger screens */
.site-header{ position:sticky; top:0; z-index:40 }
.brand-text h1{
    margin:0;
    font-size:18px;
    letter-spacing:1px;
}
.tagline{
    margin:2px 0 0 0;
    color:#9aa4b2;
    font-size:13px;
}

/* contact in header */
.contact-sm a{
    color:#fff;
    display:block;
    text-decoration:none;
    text-align:right;
    font-size:13px;
    margin-left:10px;
}

/* Navigation */
.main-nav{
    background:#08101a;
    border-top:1px solid rgba(255,255,255,0.03);
}
.main-nav ul{
    display:flex;
    gap:18px;
    list-style:none;
    margin:0;
    padding:12px 0;
    justify-content:center;
}
.main-nav a{
    color:#dbeafe;
    text-decoration:none;
    padding:8px 10px;
    border-radius:6px;
    transition:all .18s ease;
}
.main-nav a:hover{ background:rgba(255,255,255,0.03); transform:translateY(-2px) }

/* Hero */
.section-hero{
    padding:48px 0;
    background: linear-gradient(90deg, rgba(255,107,53,0.06), rgba(255,184,107,0.02));
}
.hero-grid{
    display:grid;
    grid-template-columns:1fr 360px;
    gap:28px;
    align-items:center;
}
/* nicer hero CTAs */
.feature-ctas{ display:flex; gap:12px; padding:0; margin:12px 0 18px 0; list-style:none }
.feature-ctas .btn{ font-size:14px }
.hero-content h2{
    margin:0;
    font-size:22px;
    color:var(--accent);
    letter-spacing:1px;
}
.hero-content h3{
    margin:10px 0 10px 0;
    font-size:28px;
    color:#0b1220;
}
.lead{ color:var(--muted); margin-bottom:18px; max-width:64ch; }

/* Buttons */
.btn{ display:inline-block; text-decoration:none; padding:10px 14px; border-radius:8px; font-weight:600; }
.btn.primary{ background:var(--accent); color:#fff; box-shadow:0 6px 18px rgba(255,107,53,0.12) }
.btn.outline{ border:1px solid rgba(11,18,32,0.06); color:#0b1220; background:#fff }

/* hero image */
.owner-photo{
    width:100%;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(2,6,23,0.12);
    display:block;
}
.owner-caption{ text-align:center; font-size:13px; color:var(--muted); margin-top:8px }

/* Sections */
.section{ padding:36px 0; }
.section h2{ margin:0 0 14px 0; font-size:22px; color:#0b1220 }
.about p{ color:var(--muted) }

/* Services grid */
.service-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:16px;
}
.card{
    background:var(--card);
    padding:18px;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(12,18,28,0.06);
}
.card h3{ margin:0 0 8px 0; color:#08101a }
.card p{ color:var(--muted); margin:0 }

/* Why list */
.why-list{ display:flex; gap:12px; flex-wrap:wrap; list-style:none; padding:0; margin:8px 0 0 0 }
.why-list li{ background:#fff; padding:12px 16px; border-radius:10px; box-shadow:0 6px 18px rgba(12,18,28,0.04); color:#0b1220 }

/* Contact grid */
.contact-grid{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:20px;
}
.contact-info p{ color:var(--muted) }
.contact-form{
    background:#fff;
    padding:18px;
    border-radius:10px;
    box-shadow:0 6px 18px rgba(12,18,28,0.06);
    display:flex;
    flex-direction:column;
    gap:10px;
}
.contact-form input, .contact-form textarea{
    padding:10px 12px; border-radius:8px; border:1px solid #e6eef5; font-size:14px; width:100%;
}
.form-status{ font-size:13px; color:var(--muted); margin-top:6px }

/* Footer */
.site-footer{ background:#08101a; color:#cbd5e1; padding:18px 0; margin-top:40px; text-align:center; }

/* small utilities */
.small{ font-size:13px; color:var(--muted) }
.sr-only{ position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden }

/* Responsive */
@media (max-width:900px){
    .hero-grid{ grid-template-columns:1fr; text-align:center }
    .contact-grid{ grid-template-columns:1fr }
    .service-grid{ grid-template-columns:1fr }
    .main-nav ul{ flex-wrap:wrap; justify-content:center; gap:10px }
    .header-inner{ flex-direction:column; gap:10px; text-align:center }
    .contact-sm{ order:2 }
}
@media (max-width:480px){
    .logo{ width:52px; height:52px }
    .hero-content h3{ font-size:20px }
    .btn{ padding:9px 12px }
}