* { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    

    body {
        font-family: var(--font-body);
        color: var(--ink);
        line-height: 1.6;
        background: var(--white);
        -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    img { max-width: 100%; display: block; }

    h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; }

    :focus-visible {
        outline: 3px solid var(--signal);
        outline-offset: 3px;
    }

    .container {
        width: 92%;
        max-width: var(--container);
        margin: 0 auto;
    }

    .eyebrow {
        font-family: var(--font-mono);
        font-size: 12.5px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--signal-dark);
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 14px;
    }

    .eyebrow::before {
        content: '';
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--signal);
        box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.18);
    }

    .section-head {
        max-width: 640px;
        margin-bottom: 44px;
    }
    .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
    .section-head h2 {
        font-size: clamp(28px, 3.4vw, 38px);
        font-weight: 700;
        letter-spacing: -0.01em;
    }
    .section-head p {
        margin-top: 12px;
        color: var(--steel);
        font-size: 16.5px;
    }

    /* ---------- Buttons ---------- */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-family: var(--font-body);
        font-weight: 600;
        font-size: 15.5px;
        padding: 14px 26px;
        border-radius: 6px;
        border: 2px solid transparent;
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
        white-space: nowrap;
    }
    .btn svg { width: 18px; height: 18px; flex-shrink: 0; }
    .btn-primary {
        background: var(--signal);
        color: var(--white);
        box-shadow: 0 4px 14px rgba(255, 90, 31, 0.32);
    }
    .btn-primary:hover { background: var(--signal-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255, 90, 31, 0.4); }
    .btn-ghost-dark {
        background: transparent;
        border-color: rgba(255,255,255,0.35);
        color: var(--white);
    }
    .btn-ghost-dark:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
    .btn-outline {
        background: transparent;
        border-color: var(--ink);
        color: var(--ink);
    }
    .btn-outline:hover { background: var(--ink); color: var(--white); }
    .btn-block { width: 100%; }

    /* ============================================================
       HEADER
       ============================================================ */
    header {
        position: sticky;
        top: 0;
        background: rgba(255,255,255,0.92);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #e7e7e2;
        z-index: 1000;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 0;
    }

    .logo {
        font-family: var(--font-display);
        font-size: 20px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .logo .mark {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: var(--ink);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }
    .logo .mark svg { width: 19px; height: 19px; color: var(--signal); }
    .logo span.dim { color: var(--steel); font-weight: 500; }

    .nav-links {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .nav-links a:not(.btn) {
        font-weight: 500;
        font-size: 15px;
        position: relative;
        padding: 6px 0;
    }
    .nav-links a:not(.btn)::after {
        content: '';
        position: absolute;
        left: 0; right: 0; bottom: 0;
        height: 2px;
        background: var(--signal);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.2s ease;
    }
    .nav-links a:not(.btn):hover::after { transform: scaleX(1); }

    .btn-call-header {
        background: var(--ink);
        color: var(--white);
        padding: 10px 18px;
        border-radius: 6px;
        font-weight: 600;
        font-family: var(--font-mono);
        font-size: 14.5px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        transition: background 0.2s ease;
    }
    .btn-call-header svg { width: 15px; height: 15px; }
    .btn-call-header:hover { background: var(--signal); }

    .nav-toggle {
        display: none;
        width: 40px;
        height: 40px;
        border: none;
        background: transparent;
        cursor: pointer;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }
    .nav-toggle span {
        width: 22px;
        height: 2px;
        background: var(--ink);
        transition: transform 0.25s ease, opacity 0.25s ease;
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
        position: relative;
        background: var(--ink);
        color: var(--white);
        overflow: hidden;
        padding: 86px 0 96px;
    }
    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.055) 1px, transparent 1px);
        background-size: 42px 42px;
        mask-image: radial-gradient(ellipse 80% 60% at 30% 30%, black 40%, transparent 85%);
    }
    .hero::after {
        content: '';
        position: absolute;
        width: 520px; height: 520px;
        background: radial-gradient(circle, rgba(255,90,31,0.28), transparent 70%);
        top: -180px; right: -120px;
        border-radius: 50%;
    }

    .hero-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 60px;
        align-items: center;
    }

    .hero h1 {
        font-size: clamp(34px, 4.6vw, 54px);
        font-weight: 700;
        letter-spacing: -0.015em;
        max-width: 15ch;
    }
    .hero h1 em {
        font-style: normal;
        color: var(--signal);
    }
    .hero p.lede {
        margin-top: 20px;
        font-size: 18px;
        color: #cdd3dc;
        max-width: 46ch;
    }
    .hero-ctas {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 32px;
    }
    .hero-trust {
        margin-top: 40px;
        display: flex;
        gap: 26px;
        flex-wrap: wrap;
        font-family: var(--font-mono);
        font-size: 13px;
        color: #9aa4b1;
    }
    .hero-trust strong {
        display: block;
        font-family: var(--font-display);
        font-size: 22px;
        color: var(--white);
        font-weight: 700;
    }

    /* --- Signature: dispatch ticket card --- */
    .ticket {
        position: relative;
        background: var(--white);
        color: var(--ink);
        border-radius: var(--radius);
        padding: 28px 26px 24px;
        box-shadow: 0 30px 60px rgba(0,0,0,0.35);
        font-family: var(--font-mono);
        transform: rotate(1.2deg);
    }
    .ticket::before, .ticket::after {
        content: '';
        position: absolute;
        width: 22px; height: 22px;
        background: var(--ink);
        border-radius: 50%;
        top: 50%;
        transform: translateY(-50%);
    }
    .ticket::before { left: -11px; }
    .ticket::after { right: -11px; }
    .ticket-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px dashed #d7d9d2;
        padding-bottom: 14px;
        margin-bottom: 14px;
    }
    .ticket-row .label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); }
    .ticket-row .value { font-weight: 600; font-size: 14.5px; }
    .ticket-status {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        color: var(--ready);
    }
    .ticket-status .dot {
        width: 9px; height: 9px;
        border-radius: 50%;
        background: var(--ready);
        box-shadow: 0 0 0 4px rgba(31,168,100,0.18);
        animation: pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse {
        0%, 100% { box-shadow: 0 0 0 4px rgba(31,168,100,0.18); }
        50% { box-shadow: 0 0 0 7px rgba(31,168,100,0.05); }
    }
    .ticket-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 6px;
    }
    .ticket-stats div strong {
        display: block;
        font-family: var(--font-display);
        font-size: 24px;
        color: var(--ink);
    }
    .ticket-stats div span {
        font-size: 11px;
        color: var(--steel);
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    

    /* ============================================================
       HIGHLIGHTS STRIP
       ============================================================ */
    .highlights {
        background: var(--paper);
        border-bottom: 1px solid var(--paper-dim);
    }
    .highlight-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        padding: 34px 0;
    }
    .highlight-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 0 22px;
        border-left: 1px solid var(--paper-dim);
    }
    .highlight-item:first-child { border-left: none; padding-left: 0; }
    .highlight-item .ico {
        width: 34px; height: 34px;
        flex-shrink: 0;
        border-radius: 7px;
        background: var(--ink);
        color: var(--signal);
        display: grid;
        place-items: center;
    }
    .highlight-item .ico svg { width: 18px; height: 18px; }
    .highlight-item h4 { font-size: 15.5px; font-weight: 600; }
    .highlight-item p { font-size: 13.5px; color: var(--steel); margin-top: 2px; }

    
    

    /* ============================================================
       SERVICES
       ============================================================ */
    .services-section { padding: 88px 0; }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .service-card {
        background: var(--white);
        border: 1px solid #e7e7e2;
        border-radius: var(--radius);
        padding: 28px 26px;
        transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }
    .service-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(18,24,31,0.08);
        border-color: transparent;
    }
    .service-card .ico {
        width: 44px; height: 44px;
        border-radius: 9px;
        background: var(--paper);
        color: var(--signal-dark);
        display: grid;
        place-items: center;
        margin-bottom: 18px;
    }
    .service-card .ico svg { width: 22px; height: 22px; }
    .service-card h3 { font-size: 19px; font-weight: 600; margin-bottom: 8px; }
    .service-card p { font-size: 14.5px; color: var(--steel); }

    
    

    /* ============================================================
       SPLIT SECTION
       ============================================================ */
    .split-section { background: var(--ink); color: var(--white); padding: 88px 0; }
    .split-section .section-head p { color: #a9b2bd; }
    .split-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .split-box h3 {
        font-size: 22px;
        margin-bottom: 20px;
        font-weight: 600;
    }
    .split-box ul li {
        display: flex;
        gap: 14px;
        margin-bottom: 20px;
        align-items: flex-start;
    }
    .split-box ul li .check {
        width: 22px; height: 22px;
        border-radius: 50%;
        background: rgba(255,90,31,0.16);
        color: var(--signal);
        display: grid;
        place-items: center;
        flex-shrink: 0;
        margin-top: 2px;
    }
    .split-box ul li .check svg { width: 12px; height: 12px; }
    .split-box ul li strong { display: block; font-size: 15.5px; }
    .split-box ul li span.desc { font-size: 14px; color: #a9b2bd; }

    .area-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 4px;
    }
    .area-list li {
        display: flex;
        align-items: center;
        gap: 10px;
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.09);
        border-radius: 8px;
        padding: 12px 14px;
        font-size: 14.5px;
        font-weight: 500;
        color: #dde1e7;
    }
    .area-list .pin {
        width: 26px; height: 26px;
        border-radius: 50%;
        background: rgba(255,90,31,0.16);
        color: var(--signal);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }
    .area-list .pin svg { width: 14px; height: 14px; }

    

    

    /* ============================================================
       CONTACT
       ============================================================ */
    .contact-section { padding: 88px 0; }

    .contact-grid {
        display: grid;
        grid-template-columns: 0.9fr 1.1fr;
        gap: 50px;
        align-items: start;
    }

    .info-box {
        background: var(--paper);
        border-radius: var(--radius);
        padding: 32px 30px;
    }
    .info-box h3 { font-size: 20px; margin-bottom: 20px; }
    .info-row {
        display: flex;
        gap: 14px;
        margin-bottom: 18px;
        align-items: flex-start;
    }
    .info-row .ico {
        width: 34px; height: 34px;
        border-radius: 7px;
        background: var(--ink);
        color: var(--signal);
        display: grid;
        place-items: center;
        flex-shrink: 0;
    }
    .info-row .ico svg { width: 17px; height: 17px; }
    .info-row .label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel); font-family: var(--font-mono); }
    .info-row .value { font-weight: 600; font-size: 15px; }

    .map-frame {
        width: 100%;
        height: 230px;
        border-radius: 8px;
        margin-top: 22px;
        border: 1px solid var(--paper-dim);
        overflow: hidden;
    }
    .map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(15%); }

    .form-card {
        background: var(--white);
        border: 1px solid #e7e7e2;
        border-radius: var(--radius);
        padding: 32px;
    }

    .form-row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .form-group { margin-bottom: 18px; }
    .form-group label {
        display: block;
        margin-bottom: 7px;
        font-weight: 600;
        font-size: 13.5px;
    }
    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border: 1.5px solid #dfe1da;
        border-radius: 7px;
        font-family: var(--font-body);
        font-size: 15px;
        background: var(--white);
        transition: border-color 0.15s ease, box-shadow 0.15s ease;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
        outline: none;
        border-color: var(--signal);
        box-shadow: 0 0 0 3px rgba(255,90,31,0.14);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-hint { font-size: 12.5px; color: var(--steel); margin-top: 6px; }

    .form-feedback {
        display: none;
        align-items: center;
        gap: 10px;
        background: rgba(31,168,100,0.1);
        border: 1px solid rgba(31,168,100,0.35);
        color: #146b40;
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 14.5px;
        margin-bottom: 18px;
    }
    .form-feedback.show { display: flex; }
    .form-feedback svg { width: 18px; height: 18px; flex-shrink: 0; }
    .form-feedback strong { font-family: var(--font-mono); }

    
    

    /* ============================================================
       FOOTER
       ============================================================ */
    footer {
        background: var(--ink);
        color: #8b96a3;
        padding: 40px 0 100px;
    }
    .footer-grid {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        font-size: 14px;
    }
    .footer-links { display: flex; gap: 22px; flex-wrap: wrap; }
    .footer-links a:hover { color: var(--white); }

    

    /* ---------- Mobile sticky call bar ---------- */
    .mobile-call-bar {
        display: none;
    }

/* Markup-only utility classes extracted from the original inline declarations. */
.ticket-row.ticket-row-last { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.form-feedback.form-feedback-error { background: rgba(255,90,31,0.1); border-color: rgba(255,90,31,0.35); color: #a33d10; }
.form-feedback a { text-decoration: underline; }
.honeypot { display: none; }
