/* source stylesheet moved for 11ty passthrough */
:root {
    --bg: #1b1d18;
    --text: #FFF;
    --text-muted: #475569;
    --muted: #475569;
    --border: rgba(255, 255, 255, .3);
    --accent: #d55a1f;
    --accent-700: #b34b1a;
    --card: #0f221c;
}

* {
    box-sizing: border-box
}

html,
body {
    height: 100%
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background: var(--bg)
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 24px
}

.site-header-overlap {
    position: relative;
    z-index: 2;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text)
}

.brand-logo {
    font-size: 28px
}

.brand-logo-img {
    height: 100px;
    width: auto;
    display: block;
    transform: translateY(10px)
}

.brand-text {
    font-weight: 800;
    letter-spacing: -.02em
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px
}
.site-nav.open {
    color: var(--text-muted);
}
.site-nav.open .nav-link.active {
    color: var(--text-muted);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 32px;
    align-items: center;
    justify-content: center
}

.menu-bar {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--text);
    margin: 3px 0;
    border-radius: 2px
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 10px;
    border-radius: 8px
}

.nav-link:hover {
    color: var(--text);
    background: #f8fafc
}

.nav-link.active {
    color: var(--text)
}

.nav-cta {
    text-decoration: none;
    background: var(--accent);
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700
}

.nav-cta:hover {
    background: var(--accent-700)
}

.hero {
    padding: 100px 0;
    position: relative;
    overflow: visible
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 28px;
    align-items: center
}

.hero-copy h1 {
    font-size: 64px;
    line-height: 1.02;
    margin: 8px 0 8px;
    letter-spacing: -0.02em
}

.hero-sub {
    color: #e9f0e9;
    font-size: 18px
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -36px;
    height: 36px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
    pointer-events: none
}

.hero-green {
    background: #455a01;
    color: #fff
}

.hero-green .hero-copy h1 {
    color: #fff
}

.hero-green .quote-form {
    box-shadow: none
}

.quote-form-container {
    margin-top: 18px;
    margin-bottom: 28px
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    background: white;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08)
}

.quote-form input,
.quote-form select {
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff
}

.hero-art {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    position: relative
}

.drone-art {
    width: 100%;
    max-width: 640px;
    border-radius: 12px;
    transform: translateY(12px)
}

.services {
    padding: 28px 0 56px
}

.services h2 {
    font-size: 32px;
    margin-bottom: 18px
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.card {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 20px 0;
    padding: 18px
}

.card-icon {
    font-size: 28px
}

.card h3 {
    margin: 8px 0 6px
}

.card p {
    color: var(--text);
    margin: 0
}

.cta-band {
    background: var(--bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 10px 30px;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 32px 0
}

.site-footer {
    padding: 0 0 28px 0
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 20px
}

.footer-nav {
    display: flex;
    gap: 16px
}

.footer-nav a {
    color: var(--muted);
    text-decoration: none
}

.footer-nav a:hover {
    color: var(--text)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 44px;
    padding: 0 16px;
    text-decoration: none;
    font-weight: 700;
    border: none;
    cursor: pointer
}

.btn-lg {
    height: 50px;
    padding: 0 22px;
    font-size: 18px
}

.btn-accent {
    background: var(--accent);
    color: #fff
}

.btn-accent:hover {
    background: var(--accent-700)
}

.prose {
    padding: 12px 30px 60px
}

.prose h1 {
    font-size: 36px;
    margin-bottom: 4px
}

.muted {
    color: var(--muted)
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

@media (max-width:980px) {
    .container {
        padding: 0 18px
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
    }

    #siteNav {
        position: absolute;
        top: 68px;
        right: 18px;
        left: 18px;
        display: none;
        flex-direction: column;
        gap: 10px;
        background: #ffffff;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .15)
    }

    #siteNav.open {
        display: flex
    }

    #siteNav .nav-link {
        padding: 12px 10px
    }

    #siteNav .nav-cta {
        width: 100%;
        text-align: center;
        height: 48px
    }

    .hero-copy h1 {
        font-size: 44px
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .card-grid {
        grid-template-columns: 1fr 1fr
    }

    .quote-form {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 64px 0;
    }

    .hero-art {
        justify-content: center;
        margin-top: 8px
    }

    .drone-art {
        max-width: 440px;
        transform: translateY(0)
    }

    .site-header {
        flex-wrap: wrap
    }

    .site-nav {
        flex-wrap: wrap;
        row-gap: 8px
    }
}

/* Typeform iframe styling */
.typeform-embed .typeform-frame {
    width: 100%;
    height: 420px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff
}

@media (max-width:640px) {
    .container {
        padding: 0 16px
    }

    .brand-logo-img {
        height: 72px
    }

    .hero {
        padding: 56px 0
    }

    .drone-art {
        max-width: 360px
    }

    .site-nav {
        gap: 12px
    }

    .nav-cta {
        width: 100%;
        text-align: center
    }

    .card-grid {
        grid-template-columns: 1fr
    }

    .grid-2 {
        grid-template-columns: 1fr
    }

    .typeform-embed .typeform-frame {
        height: 520px
    }
}

@media (min-width:1400px) {
    .hero-copy h1 {
        font-size: 72px
    }

    .drone-art {
        max-width: 720px
    }
}

.btn-accent {
    background: #b04a0f;
    color: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 700;
}

.card-grid .card {
    text-align: center;
}

.services h2 {
    text-align: center;
}

.prose {}