:root {
    --navy-950: #03111f;
    --navy-900: #06192d;
    --navy-800: #0b2946;
    --navy-700: #143a5f;
    --charcoal-900: #2f3237;
    --charcoal-700: #50555c;
    --charcoal-500: #727981;
    --orange-600: #c94712;
    --orange-500: #df5417;
    --orange-300: #f28b55;
    --paper: #ffffff;
    --mist: #f5f7f8;
    --line: #dbe1e6;
    --ink: #17212b;
    --muted: #5e6973;
    --shadow: 0 18px 48px rgba(3, 17, 31, .12);
    --shadow-soft: 0 10px 30px rgba(3, 17, 31, .08);
    --shell: min(1180px, calc(100% - 40px));
    --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
    padding: 10px 14px;
    background: #fff;
    border: 2px solid var(--orange-600);
    transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.shell { width: var(--shell); margin-inline: auto; }
.eyebrow {
    margin: 0 0 12px;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange-600);
}
.display-title,
h1, h2, h3 {
    font-family: var(--font-display);
    line-height: 1.05;
    letter-spacing: -.02em;
    color: var(--navy-900);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.8rem); margin: 0 0 20px; }
h2 { font-size: clamp(2rem, 4vw, 3.7rem); margin: 0 0 18px; }
h3 { font-size: clamp(1.25rem, 2vw, 1.85rem); margin: 0 0 12px; }
p { margin: 0 0 1.15em; }
.lead { font-size: clamp(1.08rem, 1.7vw, 1.35rem); color: #3d4a55; max-width: 760px; }
.small { font-size: .88rem; color: var(--muted); }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border: 1px solid transparent;
    font-weight: 800;
    letter-spacing: .01em;
    transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid rgba(223, 84, 23, .35); outline-offset: 3px; }
.btn-primary { background: var(--orange-600); color: #fff; }
.btn-primary:hover { background: #ad3a0d; }
.btn-secondary { border-color: #fff; color: #fff; background: rgba(255,255,255,.05); }
.btn-secondary:hover { background: #fff; color: var(--navy-900); }
.btn-outline { border-color: var(--navy-800); color: var(--navy-900); background: transparent; }
.btn-outline:hover { background: var(--navy-900); color: #fff; }
.btn-small { min-height: 42px; padding: 10px 15px; font-size: .88rem; }
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--navy-800);
}
.text-link::after { content: "→"; color: var(--orange-600); transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

/* Header */
.site-header { position: relative; z-index: 1000; background: #fff; box-shadow: 0 1px 0 rgba(3,17,31,.08); }
.brand-row { background: #fff; }
.brand-row-inner {
    min-height: 98px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.brand-logo { width: min(430px, 47vw); }
.brand-logo img { width: 100%; height: auto; }
.header-contact { display: flex; align-items: center; gap: 24px; }
.header-contact-copy { text-align: right; }
.header-contact-copy span { display: block; color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.header-contact-copy a { font-weight: 800; color: var(--navy-900); }
.primary-nav {
    background: var(--navy-900);
    position: sticky;
    top: 0;
    z-index: 1001;
}
.nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 54px;
}
.nav-inner a {
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: .79rem;
    font-weight: 800;
    color: rgba(255,255,255,.86);
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}
.nav-inner a:hover, .nav-inner a.active { color: #fff; border-bottom-color: var(--orange-500); background: rgba(255,255,255,.035); }
.menu-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--navy-900); align-items: center; gap: 10px; font-weight: 800; }
.menu-icon { display: grid; gap: 4px; }
.menu-icon span { width: 24px; height: 2px; background: currentColor; }

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: var(--navy-950);
    color: #fff;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background-image:
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 56px 56px;
}
.hero::after {
    content: "";
    position: absolute;
    z-index: -2;
    width: 68vw;
    height: 68vw;
    max-width: 980px;
    max-height: 980px;
    right: -23vw;
    top: -27vw;
    border: 2px solid rgba(255,255,255,.08);
    transform: rotate(45deg);
    box-shadow: 0 0 0 68px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012);
}
.hero.has-photo { background-size: cover; background-position: center; }
.hero.has-photo .hero-shade {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(90deg, rgba(3,17,31,.96) 0%, rgba(3,17,31,.88) 46%, rgba(3,17,31,.52) 100%);
}
.hero-inner {
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    align-items: center;
    gap: 64px;
    padding: 86px 0;
}
.hero h1, .hero h2 { color: #fff; }
.hero .eyebrow { color: #ff9869; }
.hero-copy { max-width: 760px; }
.hero-copy p { color: rgba(255,255,255,.84); font-size: 1.1rem; max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.market-line { display: flex; flex-wrap: wrap; gap: 12px 20px; margin: 22px 0 0; color: #fff; font-size: .87rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.market-line span { display: inline-flex; align-items: center; gap: 12px; }
.market-line span + span::before { content: ""; width: 5px; height: 5px; background: var(--orange-500); transform: rotate(45deg); }
.hero-brand-card {
    justify-self: end;
    width: min(100%, 360px);
    padding: 26px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--orange-600);
}
.hero-brand-card img { width: 100%; }
.hero-microcopy { margin-top: 18px; color: rgba(255,255,255,.62); font-size: .82rem; }
.page-hero .hero-inner { min-height: 470px; grid-template-columns: 1fr .45fr; padding: 72px 0; }
.page-hero .hero-brand-card { max-width: 280px; }

/* Sections */
.section { padding: 92px 0; }
.section-tight { padding: 68px 0; }
.section-mist { background: var(--mist); }
.section-navy { background: var(--navy-900); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy .lead, .section-navy p { color: rgba(255,255,255,.78); }
.section-header { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: end; margin-bottom: 46px; }
.section-header > :last-child { justify-self: end; max-width: 720px; }
.rule { width: 64px; height: 4px; background: var(--orange-600); margin: 20px 0 24px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.four-col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stack { display: grid; gap: 24px; }

.card {
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}
.card-body { padding: 28px; }
.card-kicker { color: var(--orange-600); font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; margin-bottom: 10px; }
.card p { color: var(--muted); }
.visual-card {
    min-height: 480px;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}
.visual-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(150deg, rgba(255,255,255,.09), transparent 46%), linear-gradient(20deg, rgba(223,84,23,.28), transparent 30%);
}
.visual-card::after {
    content: "";
    position: absolute;
    inset: 40px;
    border: 1px solid rgba(255,255,255,.2);
    transform: skewY(-7deg);
}
.visual-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; opacity: .84; }
.visual-card .visual-label { position: absolute; left: 28px; bottom: 28px; right: 28px; z-index: 2; color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; }

.market-card { min-height: 470px; display: flex; flex-direction: column; position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.market-card-media { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.01); transition: transform .5s ease; }
.market-card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(3,17,31,.16), rgba(3,17,31,.92) 75%); }
.market-card:hover .market-card-media { transform: scale(1.045); }
.market-card-content { margin-top: auto; position: relative; z-index: 2; padding: 30px; }
.market-card h3 { color: #fff; font-size: 2.1rem; }
.market-card p { color: rgba(255,255,255,.78); }
.market-card .text-link { color: #fff; }

.icon-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.icon-item { padding: 24px; border-top: 3px solid var(--orange-600); background: #fff; box-shadow: var(--shadow-soft); }
.icon-item .icon-number { font-family: var(--font-display); font-size: 2rem; font-weight: 900; color: var(--navy-800); }
.icon-item p { color: var(--muted); margin-bottom: 0; }

.process-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.12); }
.process-step { padding: 26px 20px; background: var(--navy-900); }
.process-step .step-num { font-family: var(--font-display); color: var(--orange-300); font-size: 1.25rem; font-weight: 900; }
.process-step h3 { font-size: 1.5rem; margin-top: 12px; }
.process-step p { font-size: .9rem; margin: 0; }

.quote-panel { border-left: 5px solid var(--orange-600); padding: 10px 0 10px 26px; }
.quote-panel p { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.6rem); line-height: 1.15; color: var(--navy-900); margin: 0; }
.section-navy .quote-panel p { color: #fff; }

.bullet-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.bullet-list li { position: relative; padding-left: 24px; }
.bullet-list li::before { content: ""; position: absolute; left: 0; top: .75em; width: 8px; height: 8px; background: var(--orange-600); transform: rotate(45deg); }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; list-style: none; padding: 0; margin: 24px 0; }
.check-grid li { padding-left: 26px; position: relative; }
.check-grid li::before { content: "✓"; position: absolute; left: 0; color: var(--orange-600); font-weight: 900; }

.feature-band { display: grid; grid-template-columns: .95fr 1.05fr; min-height: 430px; }
.feature-band-media { background: var(--navy-900); background-size: cover; background-position: center; min-height: 430px; position: relative; }
.feature-band-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,17,31,.05), rgba(3,17,31,.35)); }
.feature-band-copy { padding: 58px clamp(30px, 6vw, 80px); display: grid; align-content: center; background: var(--mist); }
.feature-band-copy p { color: var(--muted); }

.cta-band { background: var(--navy-900); color: #fff; padding: 60px 0; }
.cta-band-inner { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.cta-band h2 { color: #fff; margin-bottom: 8px; font-size: clamp(2rem, 4vw, 3.25rem); }
.cta-band p { color: rgba(255,255,255,.76); margin: 0; max-width: 760px; }

/* Forms */
.form-wrap { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: 44px; align-items: start; }
.form-card { background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-soft); padding: clamp(24px, 4vw, 42px); }
.form-section { padding: 28px 0; border-top: 1px solid var(--line); }
.form-section:first-of-type { border-top: 0; padding-top: 0; }
.form-section h2 { font-size: 1.75rem; margin-bottom: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label, .form-field legend { font-size: .88rem; font-weight: 800; color: var(--navy-900); }
.form-field input, .form-field select, .form-field textarea {
    width: 100%;
    border: 1px solid #cbd3d9;
    background: #fff;
    padding: 12px 13px;
    min-height: 48px;
    color: var(--ink);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: 3px solid rgba(223,84,23,.17); border-color: var(--orange-600); }
.form-help { font-size: .78rem; color: var(--muted); }
.checkbox-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
}
.checkbox-item {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 10px;
    align-items: start;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
}
.form-field .checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-height: 18px;
    padding: 0;
    margin: 2px 0 0;
    justify-self: start;
    accent-color: var(--orange-600);
}
.form-sidebar { position: sticky; top: 80px; }
.info-panel { background: var(--navy-900); color: #fff; padding: 30px; }
.info-panel h2, .info-panel h3 { color: #fff; }
.info-panel p { color: rgba(255,255,255,.76); }
.info-panel a { color: #fff; font-weight: 800; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; height: 1px !important; width: 1px !important; overflow: hidden !important; }
.notice { padding: 16px 18px; margin-bottom: 22px; border-left: 4px solid var(--orange-600); background: #fff6f1; color: #5a2c18; }

/* Footer */
.site-footer { background: #020d18; color: rgba(255,255,255,.74); padding-top: 62px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .85fr .85fr 1.05fr; gap: 46px; padding-bottom: 48px; }
.footer-brand { display: grid; grid-template-columns: 108px 1fr; gap: 22px; align-items: start; }
.footer-brand img { width: 108px; background: #fff; }
.footer-tagline { color: #fff; font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; margin-bottom: 8px; }
.footer-column { display: grid; align-content: start; gap: 9px; }
.footer-column h2 { color: #fff; font-size: 1rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 7px; }
.footer-column a:hover { color: #fff; }
.footer-contact span { margin-top: 8px; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.48); }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 0 28px; display: flex; justify-content: space-between; gap: 30px; font-size: .76rem; }
.footer-bottom p { margin: 0; }

/* External representative media */
.media-industrial { background-image: url("https://images.unsplash.com/photo-1766793110924-98e05b48eadc?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=60&w=3000"); }
.media-residential { background-image: url("https://images.unsplash.com/photo-1756435292384-1bf32eff7baf?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=78&w=2200"); }
.media-commercial { background-image: url("/assets/images/commercial-strip-center.jpg"); }
.media-blueprints { background-image: url("https://images.unsplash.com/photo-1762146828422-50a8bd416d3c?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=78&w=2200"); }
.media-steel { background-image: url("https://images.unsplash.com/photo-1766793110924-98e05b48eadc?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=60&w=3000"); }
.hero.has-photo.media-industrial,
.hero.has-photo.media-residential,
.hero.has-photo.media-commercial,
.hero.has-photo.media-blueprints,
.hero.has-photo.media-steel { background-size: cover; background-position: center; }

/* Utility */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .55s ease, transform .55s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.center { text-align: center; }
.max-760 { max-width: 760px; }
.max-900 { max-width: 900px; }
.mx-auto { margin-inline: auto; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

@media (max-width: 1120px) {
    .nav-inner a { padding-inline: 8px; font-size: .72rem; }
    .process-grid { grid-template-columns: repeat(3, 1fr); }
    .icon-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-contact { grid-column: 2 / -1; }
}

@media (max-width: 860px) {
    :root { --shell: min(100% - 28px, 760px); }
    .brand-row-inner { min-height: 78px; }
    .brand-logo { width: min(340px, 68vw); }
    .header-contact { display: none; }
    .menu-toggle { display: flex; }
    .primary-nav { position: static; display: none; }
    .primary-nav.open { display: block; }
    .nav-inner { display: grid; min-height: 0; padding: 8px 0 14px; }
    .nav-inner a { padding: 12px 4px; border-bottom: 1px solid rgba(255,255,255,.11); font-size: .86rem; }
    .nav-inner a.active { border-bottom-color: rgba(255,255,255,.11); border-left: 3px solid var(--orange-500); padding-left: 12px; }
    .hero-inner, .page-hero .hero-inner { grid-template-columns: 1fr; min-height: 0; padding: 68px 0; }
    .hero-brand-card { display: none; }
    .section { padding: 72px 0; }
    .section-header, .two-col, .feature-band, .form-wrap { grid-template-columns: 1fr; }
    .section-header > :last-child { justify-self: start; }
    .three-col { grid-template-columns: 1fr; }
    .four-col { grid-template-columns: repeat(2, 1fr); }
    .market-card { min-height: 420px; }
    .feature-band-copy { order: 1; }
    .feature-band-media { order: 2; min-height: 360px; }
    .cta-band-inner { align-items: flex-start; flex-direction: column; }
    .form-sidebar { position: static; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-contact { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 620px) {
    h1 { font-size: clamp(2.7rem, 14vw, 4.3rem); }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .market-line { gap: 7px 14px; }
    .market-line span + span::before { display: none; }
    .section { padding: 58px 0; }
    .process-grid, .icon-grid, .four-col, .check-grid, .form-grid, .checkbox-list { grid-template-columns: 1fr; }
    .form-field.full { grid-column: auto; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; grid-template-columns: 82px 1fr; }
    .footer-brand img { width: 82px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
    .reveal { opacity: 1; transform: none; }
}
.visual-card { background-size: cover; background-position: center; }
.form-field-label { font-size: .88rem; font-weight: 800; color: var(--navy-900); }
@media (min-width: 861px) {
    .site-header { position: sticky; top: 0; }
    .brand-row { max-height: 110px; overflow: hidden; transition: max-height .25s ease, opacity .2s ease; }
    .site-header.is-compact .brand-row { max-height: 0; opacity: 0; }
}
