:root {
    --paper: #f6f1e8;
    --paper-deep: #e7dfd1;
    --ink: #111815;
    --muted: #53605b;
    --line: #c8bda9;
    --green: #0e6f5c;
    --green-dark: #084337;
    --terracotta: #d56042;
    --gold: #c99742;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(42, 35, 24, 0.16);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    min-height: 100%;
}

body {
    color: var(--ink);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background:
        linear-gradient(90deg, rgba(17, 24, 21, 0.055) 1px, transparent 1px),
        linear-gradient(0deg, rgba(17, 24, 21, 0.055) 1px, transparent 1px),
        linear-gradient(145deg, var(--paper), var(--paper-deep));
    background-size: 56px 56px, 56px 56px, auto;
}

.site-shell {
    width: min(1180px, calc(100% - 40px));
    min-height: 100vh;
    margin: 0 auto;
    padding: 34px 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    gap: 28px;
}

.masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
}

.brand-lockup {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    background: var(--terracotta);
    color: var(--white);
    font-weight: 800;
    line-height: 1;
}

.brand-name,
.masthead p,
.status,
.panel-label,
.details-list dt {
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-name {
    font-size: 1rem;
    font-weight: 800;
}

.masthead p {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
    gap: 34px;
    align-items: center;
}

.hero-copy {
    padding: 38px 0;
}

.status {
    width: fit-content;
    margin-bottom: 22px;
    padding: 8px 12px;
    border: 1px solid var(--ink);
    background: var(--gold);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
}

h1 {
    max-width: 10ch;
    margin-bottom: 22px;
    font-size: 5rem;
    line-height: 0.94;
}

.lead {
    max-width: 35rem;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.route-visual {
    position: relative;
    min-height: 480px;
    overflow: hidden;
    border: 2px solid var(--ink);
    background:
        linear-gradient(135deg, rgba(14, 111, 92, 0.95), rgba(8, 67, 55, 0.95)),
        var(--green-dark);
    box-shadow: var(--shadow);
}

.route-grid {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.8;
}

.route-visual::before {
    position: absolute;
    top: 42px;
    right: 42px;
    width: 170px;
    height: 170px;
    content: "";
    border: 2px solid rgba(255, 255, 255, 0.48);
    transform: rotate(45deg);
}

.route-visual::after {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 42%;
    height: 36%;
    content: "";
    background: var(--terracotta);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.route-line,
.hub {
    position: absolute;
    display: block;
}

.route-line {
    height: 3px;
    background: rgba(255, 255, 255, 0.76);
    transform-origin: left center;
}

.route-line-one {
    top: 44%;
    left: 18%;
    width: 62%;
    transform: rotate(-16deg);
}

.route-line-two {
    top: 57%;
    left: 20%;
    width: 52%;
    transform: rotate(22deg);
}

.route-line-three {
    top: 34%;
    left: 40%;
    width: 38%;
    transform: rotate(42deg);
}

.hub {
    width: 18px;
    height: 18px;
    border: 3px solid var(--white);
    background: var(--terracotta);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
}

.hub-primary {
    top: 43%;
    left: 17%;
    width: 26px;
    height: 26px;
    background: var(--gold);
}

.hub-north {
    top: 26%;
    left: 58%;
}

.hub-east {
    top: 31%;
    right: 18%;
}

.hub-west {
    bottom: 34%;
    left: 33%;
}

.hub-south {
    right: 25%;
    bottom: 23%;
}

.company-panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
    gap: 26px;
    padding: 24px;
    border: 2px solid var(--ink);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow);
}

.panel-label {
    margin-bottom: 8px;
    color: var(--terracotta);
    font-size: 0.82rem;
    font-weight: 800;
}

.company-panel h2 {
    font-size: 1.7rem;
    line-height: 1.15;
}

.details-list {
    display: grid;
    grid-template-columns: 0.8fr 0.8fr 1.4fr;
    gap: 14px;
}

.details-list div {
    min-width: 0;
    padding: 16px;
    border-left: 4px solid var(--green);
    background: var(--paper);
}

.details-list dt {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.details-list dd {
    overflow-wrap: anywhere;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
}

@media (max-width: 920px) {
    .site-shell {
        width: min(100% - 28px, 760px);
    }

    .hero,
    .company-panel,
    .details-list {
        grid-template-columns: 1fr;
    }

    h1 {
        max-width: 12ch;
        font-size: 4rem;
    }

    .route-visual {
        min-height: 360px;
    }
}

@media (max-width: 560px) {
    .site-shell {
        width: min(100% - 24px, 480px);
        padding: 22px 0;
        gap: 22px;
    }

    .masthead {
        align-items: flex-start;
        flex-direction: column;
    }

    .hero-copy {
        padding: 18px 0 4px;
    }

    h1 {
        font-size: 3rem;
    }

    .lead {
        font-size: 1rem;
    }

    .route-visual {
        min-height: 300px;
    }

    .company-panel {
        padding: 18px;
    }
}
