:root {
    --orange: #e8540a;
    --orange-dark: #c44407;
    --dark: #111214;
    --dark2: #1a1c20;
    --dark3: #222428;
    --grey: #8a8f9a;
    --light: #f0f2f5;
    --white: #ffffff;
    --border: rgba(255,255,255,0.07);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 { font-family: 'Oswald', sans-serif; }

/* ── TOP BAR ── */
.topbar {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 8px 0;
    font-size: 13px;
    color: var(--grey);
}
.topbar .inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.topbar a { color: var(--grey); text-decoration: none; transition: color .2s; }
.topbar a:hover { color: var(--orange); }
.topbar-item { display: flex; align-items: center; gap: 6px; }
.topbar-item svg { color: var(--orange); flex-shrink: 0; }

/* ── NAVBAR ── */
nav {
    background: var(--dark);
    border-bottom: 3px solid var(--orange);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 4px 24px rgba(0,0,0,.5);
}
.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
    height: 72px;
}
.logo {
    display: flex; align-items: center; gap: 14px; text-decoration: none;
}
.logo-icon {
    width: 48px; height: 48px; background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(8% 0%, 92% 0%, 100% 50%, 92% 100%, 8% 100%, 0% 50%);
}
.logo-icon svg { color: white; }
.logo-text .brand { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 2px; color: var(--white); line-height: 1; }
.logo-text .sub { font-size: 11px; letter-spacing: 3px; color: var(--orange); text-transform: uppercase; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
    font-family: 'Oswald', sans-serif; font-size: 15px; letter-spacing: 1px;
    color: var(--grey); text-decoration: none; text-transform: uppercase;
    transition: color .2s; padding: 4px 0; border-bottom: 2px solid transparent; transition: all .2s;
}
.nav-links a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.nav-cta {
    background: var(--orange); color: white; font-family: 'Oswald', sans-serif;
    font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600;
    padding: 10px 24px; text-decoration: none; border: none; cursor: pointer;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    transition: background .2s;
}
.nav-cta:hover { background: var(--orange-dark); }

/* ── HERO ── */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background:
            linear-gradient(105deg, rgba(0,0,0,.92) 0%, rgba(0,0,0,.7) 55%, rgba(232,84,10,.15) 100%),
            url('https://images.unsplash.com/photo-1625047509248-ec889cbff17f?w=1800&q=80') center/cover no-repeat;
    animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.04); } }
.hero-content {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 0 24px;
    padding-top: 80px;
}
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--orange); color: white;
    font-family: 'Oswald', sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
    padding: 8px 20px; margin-bottom: 28px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
    animation: fadeUp .8s ease both;
}
.hero h1 {
    font-size: clamp(42px, 7vw, 88px); font-weight: 700; line-height: 1.0;
    letter-spacing: -1px; margin-bottom: 24px; max-width: 800px;
    animation: fadeUp .8s .15s ease both;
}
.hero h1 span { color: var(--orange); display: block; }
.hero p {
    font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.7;
    max-width: 560px; margin-bottom: 40px;
    animation: fadeUp .8s .3s ease both;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeUp .8s .45s ease both; }
.btn-primary {
    background: var(--orange); color: white; font-family: 'Oswald', sans-serif;
    font-size: 15px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
    padding: 16px 40px; text-decoration: none; display: inline-block;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    transition: background .2s, transform .2s;
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline {
    border: 2px solid rgba(255,255,255,.3); color: white; font-family: 'Oswald', sans-serif;
    font-size: 15px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600;
    padding: 14px 36px; text-decoration: none; display: inline-block;
    transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats {
    display: flex; gap: 0; margin-top: 80px;
    animation: fadeUp .8s .6s ease both;
}
.hero-stat {
    padding: 24px 48px 24px 0;
    border-right: 1px solid var(--border);
    margin-right: 48px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; }
.hero-stat .num { font-family: 'Oswald', sans-serif; font-size: 44px; font-weight: 700; color: var(--orange); line-height: 1; }
.hero-stat .lbl { font-size: 13px; color: var(--grey); letter-spacing: 2px; text-transform: uppercase; margin-top: 6px; }

/* ── SCROLL STRIP ── */
.strip {
    background: var(--orange); padding: 14px 0; overflow: hidden;
}
.strip-inner {
    display: flex; gap: 60px; white-space: nowrap;
    animation: ticker 18s linear infinite;
}
.strip-item {
    font-family: 'Oswald', sans-serif; font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
    color: white; display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.strip-dot { width: 6px; height: 6px; background: rgba(255,255,255,.5); border-radius: 50%; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEADER ── */
.section { padding: 100px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.sec-label {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 3px;
    color: var(--orange); text-transform: uppercase; margin-bottom: 16px;
}
.sec-label::before { content: ''; width: 32px; height: 2px; background: var(--orange); }
.sec-title { font-size: clamp(32px, 5vw, 52px); font-weight: 700; line-height: 1.05; letter-spacing: -0.5px; }
.sec-title span { color: var(--orange); }

/* ── WHY US STRIP ── */
.why-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2px;
    margin-top: 60px;
}
.why-card {
    background: var(--dark2); padding: 40px 32px;
    border-top: 3px solid transparent; transition: border-color .3s, transform .3s;
    position: relative; overflow: hidden;
}
.why-card::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(232,84,10,.07));
    pointer-events: none;
}
.why-card:hover { border-top-color: var(--orange); transform: translateY(-4px); }
.why-icon {
    width: 56px; height: 56px; background: rgba(232,84,10,.12); border: 1px solid rgba(232,84,10,.3);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.why-icon svg { color: var(--orange); }
.why-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ── SERVICES ── */
.services-bg { background: var(--dark2); }
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2px; margin-top: 60px;
}
.svc-card {
    background: var(--dark3); padding: 40px 32px;
    border-left: 3px solid transparent; transition: all .3s;
    cursor: default; position: relative;
}
.svc-card:hover { border-left-color: var(--orange); background: #262830; }
.svc-num {
    font-family: 'Oswald', sans-serif; font-size: 48px; font-weight: 700;
    color: rgba(232,84,10,.15); line-height: 1; margin-bottom: 16px;
    transition: color .3s;
}
.svc-card:hover .svc-num { color: rgba(232,84,10,.35); }
.svc-icon { margin-bottom: 16px; }
.svc-icon svg { color: var(--orange); }
.svc-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; letter-spacing: .5px; }
.svc-card p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ── CONTACT + MAP ── */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-top: 60px; align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info h3 { font-size: 28px; margin-bottom: 8px; }
.contact-info .sub { color: var(--grey); margin-bottom: 40px; font-size: 15px; }
.contact-item {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-item:last-of-type { border-bottom: none; }
.ci-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    background: rgba(232,84,10,.1); border: 1px solid rgba(232,84,10,.25);
    display: flex; align-items: center; justify-content: center;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}
.ci-icon svg { color: var(--orange); }
.ci-label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--grey); margin-bottom: 4px; }
.ci-val { font-size: 16px; font-weight: 600; color: var(--white); }
.ci-val a { color: var(--white); text-decoration: none; transition: color .2s; }
.ci-val a:hover { color: var(--orange); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; margin-top: 6px; }
.hours-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--grey); }
.hours-row span:last-child { color: var(--white); font-weight: 600; }
.map-wrap {
    border-radius: 0; overflow: hidden;
    border: 2px solid var(--border); position: relative;
}
.map-wrap::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--orange); z-index: 1;
}
.map-wrap iframe {
    width: 100%; height: 440px; border: none; display: block;
    filter: grayscale(60%) contrast(1.1) brightness(0.85);
}
.map-overlay-tag {
    position: absolute; bottom: 20px; left: 20px; z-index: 2;
    background: var(--dark); padding: 12px 20px;
    font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--orange);
    border-left: 3px solid var(--orange);
}

/* ── FOOTER ── */
footer {
    background: #0c0d0f;
    border-top: 3px solid var(--orange);
}
.footer-top {
    max-width: 1200px; margin: 0 auto; padding: 60px 24px 40px;
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
}
@media (max-width: 800px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }
.footer-about p { color: var(--grey); font-size: 14px; line-height: 1.8; margin-top: 20px; max-width: 300px; }
.footer-col h4 {
    font-family: 'Oswald', sans-serif; font-size: 16px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 1px solid var(--border); color: var(--white);
}
.footer-col ul { list-style: none; }
.footer-col ul li { padding: 6px 0; }
.footer-col ul li a {
    color: var(--grey); text-decoration: none; font-size: 14px;
    display: flex; align-items: center; gap: 8px; transition: color .2s;
}
.footer-col ul li a::before { content: '›'; color: var(--orange); font-size: 18px; }
.footer-col ul li a:hover { color: var(--orange); }
.footer-hours li { color: var(--grey); font-size: 14px; padding: 6px 0; display: flex; justify-content: space-between; }
.footer-hours li span:last-child { color: var(--white); }
.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 24px; text-align: center;
    font-size: 13px; color: var(--grey);
    max-width: 1200px; margin: 0 auto;
}
.footer-bottom span { color: var(--orange); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .nav-links, .nav-cta { display: none; }
    .hero-stats { flex-direction: column; gap: 16px; }
    .hero-stat { padding: 0; border-right: none; margin: 0; }
    .topbar .inner { justify-content: center; }
}