/* AXIOM AVIATION SGU L.L.C. — Desert Airfield at Golden Hour theme */
/* Palette: DUSK-SAND #F5EFE3, WING-BROWN #33261C, DUSK-SKY #2E5E7E,
   RUNWAY-CHARCOAL #242A2E, HANGAR-DEEP #171D22, SUNSET-COPPER #C57B3A,
   FUEL-CREAM #FCF8F0, COCKPIT-INK #4E4133, SKY-MIST #C8D4DC, TAXIWAY-LINE #39434B,
   DEEPER-HANGAR #10151A  */

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

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    background-color: #F5EFE3;
    color: #33261C;
    line-height: 1.65;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.home-page .container,
.legal-page .container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation width controls */
.tower-top-container,
.airfield-main,
.footerstack {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   TOWER-FREQUENCY NAV
   ============================================================ */
.towernav {
    position: sticky;
    top: 0;
    z-index: 60;
}

.towernav .threshold-strip {
    height: 12px;
    background-color: #242A2E;
    background-image: repeating-linear-gradient(
        90deg,
        #FCF8F0 0,
        #FCF8F0 26px,
        #39434B 26px,
        #39434B 52px
    );
    position: relative;
}

.towernav .threshold-strip::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 40%;
    height: 100%;
    background-image: radial-gradient(circle at 8px 6px, #C57B3A 0, #C57B3A 4px, transparent 4px);
    background-size: 16px 12px;
    background-position: center;
}

.towernav .nav-row {
    background-color: #242A2E;
    border-bottom: 1px solid #39434B;
}

.towernav .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 62px;
    gap: 20px;
}

.towernav .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FCF8F0;
    font-weight: 700;
    letter-spacing: 0.14em;
    font-size: 21px;
    white-space: nowrap;
}

.towernav .tower-glyph {
    flex: none;
}

.towernav .tower-glyph svg {
    display: block;
    width: 16px;
    height: 22px;
}

.towernav .link-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.towernav .link-row a {
    color: #C8D4DC;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    position: relative;
    padding: 6px 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.towernav .link-row a .beacon {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #C57B3A;
    flex: none;
}

.towernav .link-row a .freqwave {
    width: 0;
    overflow: hidden;
    transition: width 0.25s ease;
}

.towernav .link-row a:hover {
    color: #FCF8F0;
    border-bottom: 2px solid #2E5E7E;
}

.towernav .link-row a:hover .freqwave {
    width: 14px;
}

.towernav .nav-toggle {
    display: none;
    background-color: transparent;
    border: 1px solid #39434B;
    color: #FCF8F0;
    font-size: 22px;
    line-height: 1;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 3px;
}

@media (max-width: 760px) {
    .towernav .nav-inner {
        flex-wrap: wrap;
    }

    .towernav .nav-toggle {
        display: block;
    }

    .towernav .link-row {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
        padding-bottom: 14px;
    }

    .towernav .link-row.is-open {
        display: flex;
    }

    .towernav .link-row a {
        border-bottom: 1px solid #39434B;
        padding: 10px 2px;
        width: 100%;
    }
}

/* ============================================================
   HERO — Golden-Hour Tarmac
   ============================================================ */
.tarmachero {
    background-color: #F5EFE3;
    padding: 64px 0 68px;
}

.tarmachero .hero-grid {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
}

.tarmachero .eyebrow-chip {
    display: inline-block;
    background-color: #2E5E7E;
    color: #FCF8F0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 3px;
    margin-bottom: 22px;
}

.tarmachero .headline {
    font-size: 48px;
    line-height: 1.08;
    color: #33261C;
    font-weight: 800;
    margin-bottom: 24px;
}

.tarmachero .headline .accent {
    color: #2E5E7E;
}

.tarmachero .subcopy {
    color: #4E4133;
    font-size: 18px;
    max-width: 560px;
    margin-bottom: 32px;
}

.tarmachero .cta-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 14px 30px;
    border-radius: 3px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn-fill {
    background-color: #2E5E7E;
    color: #FCF8F0;
}

.btn-fill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #33261C;
    color: #33261C;
}

.btn-outline:hover {
    background-color: #33261C;
    color: #FCF8F0;
    transform: translateY(-2px);
}

/* Airfield scene */
.airfield-scene {
    position: relative;
}

.airfield-scene .apron {
    background-color: #F5EFE3;
    border: 1px solid #dfd5c2;
    border-radius: 8px;
    padding: 30px 26px 26px;
    position: relative;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Control tower */
.scene-tower {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scene-tower .tower-shaft {
    width: 92px;
    height: 78px;
    background-color: #FCF8F0;
    border: 1px solid #C57B3A;
    border-bottom: none;
    border-radius: 6px 6px 0 0;
    background-image: linear-gradient(#FCF8F0, #FCF8F0);
    position: relative;
    clip-path: polygon(14% 0, 86% 0, 100% 100%, 0 100%);
}

.scene-tower .tower-cab {
    width: 120px;
    height: 44px;
    background-color: #2E5E7E;
    border-radius: 6px 6px 0 0;
    position: relative;
    margin-bottom: -1px;
}

.scene-tower .tower-cab::after {
    content: "";
    position: absolute;
    left: 8px;
    right: 8px;
    top: 8px;
    bottom: 8px;
    background-color: #C8D4DC;
}

.scene-tower .tower-ant {
    width: 3px;
    height: 22px;
    background-color: #C57B3A;
    position: relative;
}

.scene-tower .tower-ant::after {
    content: "";
    position: absolute;
    top: -6px;
    left: -3px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #C57B3A;
}

/* Runway with aircraft */
.scene-runway-block {
    background-color: #242A2E;
    border-radius: 5px;
    padding: 26px 14px 34px;
    position: relative;
}

.scene-runway-block .threshold {
    height: 10px;
    background-image: repeating-linear-gradient(
        90deg,
        #FCF8F0 0,
        #FCF8F0 20px,
        #242A2E 20px,
        #242A2E 34px
    );
    border-radius: 3px;
    margin-bottom: 10px;
}

.scene-runway-block .centerline {
    height: 5px;
    background-image: repeating-linear-gradient(
        90deg,
        #FCF8F0 0,
        #FCF8F0 46px,
        #242A2E 46px,
        #242A2E 76px
    );
    background-color: #242A2E;
    margin: 0 auto;
    width: 86%;
    border-radius: 2px;
}

/* Aircraft silhouette */
.aircraft-sil {
    position: relative;
    height: 74px;
    margin-bottom: 6px;
}

.aircraft-sil .spin-blur {
    position: absolute;
    left: 0;
    top: 34px;
    width: 62px;
    height: 30px;
    border: 2px solid rgba(197,123,58,0.7);
    border-radius: 50%;
    transform: rotate(-8deg);
}

.aircraft-sil .fuse {
    position: absolute;
    left: 36px;
    top: 30px;
    width: 150px;
    height: 13px;
    background-color: #33261C;
    border-radius: 3px;
    transform: rotate(-2deg);
}

.aircraft-sil .nose {
    position: absolute;
    left: 168px;
    top: 33px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 16px solid #33261C;
}

.aircraft-sil .tail {
    position: absolute;
    left: 168px;
    top: 21px;
    border-bottom: 6px solid transparent;
    border-left: 18px solid #33261C;
    transform: rotate(0deg);
    border-top: 8px solid #33261C;
    width: 0;
}

.aircraft-sil .wing {
    position: absolute;
    left: 90px;
    top: 24px;
    width: 52px;
    height: 40px;
    background-color: #33261C;
    border-radius: 4px 4px 22px 22px;
}

.aircraft-sil .wheel-dot {
    position: absolute;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #242A2E;
    bottom: 0;
}

.aircraft-sil .wheel-dot.w1 {
    left: 66px;
}

.aircraft-sil .wheel-dot.w2 {
    left: 122px;
}

.aircraft-sil .wheel-dot.w3 {
    left: 162px;
}

/* Hangar behind */
.scene-hangar {
    position: absolute;
    top: -6px;
    right: -4px;
    width: 120px;
    height: 96px;
    background-color: #242A2E;
    border: 1px solid #39434B;
    border-radius: 4px;
}

.scene-hangar .hang-door {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 52px;
    background-color: #171D22;
    background-image: repeating-linear-gradient(90deg, #C57B3A 0, #C57B3A 6px, transparent 6px, transparent 10px);
    background-repeat: repeat;
    background-size: 10px 100%;
}

/* Mesas in horizon band */
.scene-hangar .mesa {
    position: absolute;
    bottom: 8px;
    background-color: #7491A1;
}

.scene-hangar .mesa.m1 {
    left: 0;
    width: 46px;
    height: 16px;
    border-radius: 10px 10px 0 0;
    bottom: -2px;
}

.scene-hangar .mesa.m2 {
    right: 0;
    width: 38px;
    height: 13px;
    border-radius: 10px 10px 0 0;
    bottom: -2px;
}

/* Taxiway with nav lights and windsock */
.scene-taxi {
    background-image: linear-gradient(#C57B3A, #C57B3A);
    background-size: 6px 5px;
    background-position-x: 0;
    background-position-y: center;
    background-repeat: repeat-x;
    height: 2px;
    filter: drop-shadow(0 0 0 transparent);
    background: none;
    border-top: 2px dashed #C57B3A;
}

.scene-taxi .navlights {
    display: flex;
    justify-content: space-between;
}

.scene-taxi .navlight {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #C57B3A;
    box-shadow: 0 0 6px #C57B3A;
}

/* windsock */
.scene-windsock {
    position: absolute;
    left: -6px;
    bottom: 6px;
    width: 3px;
    height: 60px;
    background-color: #4E4133;
}

.scene-windsock::after {
    content: "";
    position: absolute;
    top: -2px;
    left: 3px;
    width: 44px;
    height: 22px;
    background-image: repeating-linear-gradient(
        90deg,
        #C57B3A 0,
        #C57B3A 16px,
        #FCF8F0 16px,
        #FCF8F0 32px,
        #C57B3A 32px,
        #C57B3A 44px
    );
    border-radius: 0 16px 16px 0;
    transform: rotate(14deg);
    transform-origin: left center;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

/* Compass rose on apron */
.scene-compass {
    margin-top: 8px;
    text-align: center;
}

.compass-rose {
    display: inline-block;
    width: 34px;
    height: 34px;
    position: relative;
}

.scene-caption {
    position: absolute;
    visibility: hidden;
}

@media (max-width: 900px) {
    .tarmachero .hero-grid {
        grid-template-columns: 1fr;
    }

    .tarmachero .headline {
        font-size: 38px;
    }
}

/* ============================================================
   MANIFEST-FLIGHT SECTIONS
   ============================================================ */
.manifest-section {
    background-color: #F5EFE3;
    padding: 64px 0 70px;
}

.manifest-section .section-head {
    margin-bottom: 40px;
}

.manifest-section .section-head h2 {
    color: #2E5E7E;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 14px;
}

.manifest-section .section-head p {
    color: #4E4133;
    max-width: 760px;
    font-size: 17px;
}

.flight-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flight-row {
    background-color: #FCF8F0;
    border: 1px solid #39434B;
    border-radius: 4px;
    padding: 20px 22px;
    display: grid;
    grid-template-columns: 120px 1fr 120px;
    gap: 24px;
    align-items: center;
}

.flight-row .squawk {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
}

.flight-row .squawk .face {
    background-color: #242A2E;
    border-radius: 3px;
    padding: 5px 8px;
    border: 1px solid #39434B;
    text-align: center;
}

.flight-row .squawk .codes {
    color: #FCF8F0;
    font-family: "Courier New", monospace;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #E8D27A;
}

.flight-row .squawk .status {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #C57B3A;
    box-shadow: 0 0 5px #C57B3A;
}

.flight-row .squawk .status-label {
    font-size: 11px;
    color: #4E4133;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.flight-row .flight-info h3 {
    color: #33261C;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.flight-row .flight-info p {
    color: #4E4133;
    font-size: 16px;
}

.flight-row .altitude {
    display: flex;
    justify-content: flex-end;
}

.flight-row .altitude .tape {
    background-color: #2E5E7E;
    border-radius: 3px;
    padding: 12px 16px;
    text-align: center;
    min-width: 78px;
}

.flight-row .altitude .tape .readout {
    color: #FCF8F0;
    font-size: 16px;
    font-weight: 800;
}

.flight-row .altitude .tape .unit {
    color: #C8D4DC;
    font-size: 11px;
    letter-spacing: 0.06em;
}

@media (max-width: 760px) {
    .flight-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .flight-row .squawk {
        flex-direction: row;
        justify-content: flex-start;
    }

    .flight-row .altitude {
        justify-content: flex-start;
    }
}

/* ============================================================
   FLEET METRIC BAND
   ============================================================ */
.metric-band {
    background-color: #171D22;
    padding: 64px 0;
}

.metric-band .metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.metric-item {
    text-align: center;
    padding: 10px 18px;
    position: relative;
}

.metric-item + .metric-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 14%;
    height: 72%;
    width: 1px;
    background-color: #505456;
}

.metric-item .numeral {
    color: #C57B3A;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
}

.metric-item .label {
    color: #C8D4DC;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 6px;
}

.metric-item .unit {
    font-size: 18px;
    color: #C57B3A;
}

@media (max-width: 760px) {
    .metric-band .metric-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 0;
    }

    .metric-item + .metric-item:nth-child(2n+1)::before {
        display: none;
    }
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement-band {
    background-color: #242A2E;
    padding: 60px 0;
}

.statement-band .statement-text {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
    padding-left: 34px;
    text-align: center;
    color: transparent;
}

.statement-band .statement-text p {
    color: #FCF8F0;
    font-size: 24px;
    line-height: 1.55;
    font-weight: 600;
    text-align: center;
}

.statement-band .bar {
    width: 4px;
    background-color: #C57B3A;
    height: 100%;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.statement-band .stmt-attrib {
    color: #C8D4DC;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 24px;
    text-align: center;
    font-weight: 700;
}

@media (min-width: 900px) {
    .statement-band .statement-text {
        text-align: left;
    }
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    background-color: #F5EFE3;
    padding: 70px 0;
}

.cta-band .cta-stack {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.cta-band h2 {
    color: #2E5E7E;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-band p {
    color: #33261C;
    font-size: 17px;
    margin-bottom: 30px;
}

.cta-band .btn-fill {
    background-color: #2E5E7E;
}

/* ============================================================
   NAVALIGHT FOOTER
   ============================================================ */
.navalight-footer {
    background-color: #10151A;
    padding: 0;
}

.navalight-footer .taxiway-strip {
    height: 14px;
    background-image: repeating-linear-gradient(
        90deg,
        rgba(252,248,240,0.5) 0,
        rgba(252,248,240,0.5) 40px,
        rgba(16,21,26,0.5) 40px,
        rgba(16,21,26,0.5) 66px
    );
    position: relative;
}

.navalight-footer .taxiway-strip::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 55%;
    background-image: radial-gradient(circle at 55px 7px, #C57B3A 0, #C57B3A 3px, transparent 3px);
    background-size: 66px 14px;
}

.navalight-footer .stack {
    padding: 48px 0 40px;
    position: relative;
    z-index: 1;
}

.navalight-footer .stack .compass-divider {
    text-align: center;
    margin-bottom: 22px;
    color: #C57B3A;
}

.navalight-footer .foot-brand {
    text-align: center;
    color: #FCF8F0;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.12em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.navalight-footer .foot-brand .tower {
    width: 16px;
    height: 22px;
}

.navalight-footer .foot-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 26px;
    margin-bottom: 26px;
}

.navalight-footer .foot-nav a {
    color: #C8D4DC;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.navalight-footer .foot-nav a:hover {
    color: #FCF8F0;
    border-bottom: 1px solid #C57B3A;
}

.navalight-footer .legal-line {
    text-align: center;
    color: #C8D4DC;
    font-size: 13px;
    letter-spacing: 0.02em;
    line-height: 1.8;
    border-top: 1px solid #39434B;
    padding-top: 20px;
}

/* Fade-up reveal */
.fade-up {
    opacity: 1;
    transform: none;
}

/* Accessible focus */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #2E5E7E;
    outline-offset: 2px;
}
