/* Divisions landing pages (aat-air.php + aat-sea.php).
   Shared structure: hero with right-side image + left copy, future-division
   feature grid, closing CTA strip. Dark-glass + gold accent. */

/* ============ HERO ============ */
.div-hero {
    position: relative;
    min-height: 620px;
    padding: 220px 0 90px;
    overflow: hidden;
    background-color: #030303;
}
.div-hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    background-image: var(--div-hero-img, none);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    mask-image: linear-gradient(to right, transparent 0%, #000 35%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 35%);
    pointer-events: none;
}
.div-hero::after {
    /* Bottom fade so the hero blends into the future-division section below. */
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, #030303 100%);
    pointer-events: none;
    z-index: 1;
}
.div-hero-inner {
    position: relative;
    z-index: 2;
}
.div-hero-copy {
    max-width: 620px;
}
.div-hero-eyebrow {
    display: inline-block;
    color: rgba(212,175,55,0.85);
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 28px;
}
.div-eyebrow-pipe { color: rgba(255,255,255,0.35); }
.div-eyebrow-active { color: #D4AF37; }

.div-hero-title {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.005em;
    margin: 0 0 22px;
}
.div-accent { color: #D4AF37; }

.div-hero-lede {
    color: rgba(255,255,255,0.78);
    font-size: 1.05rem;
    line-height: 1.65;
    font-weight: 300;
    margin: 0 0 36px;
    max-width: 540px;
}

.div-hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.div-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.08);
    color: #D4AF37;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}
.div-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #D4AF37;
    box-shadow: 0 0 8px rgba(212,175,55,0.7);
    animation: divPulse 1.8s ease-in-out infinite;
}
@keyframes divPulse {
    0%,100% { opacity: 1; transform: scale(1); }
    50%     { opacity: 0.55; transform: scale(0.85); }
}

/* Hide global ambient glow + nav gutter so the hero image runs flush to the
   transparent nav (matches the about.php hero pattern). */
body > div[aria-hidden="true"][style*="height: 145px"] { display: none; }
body .ambient-light { display: none; }


/* ============ FUTURE-DIVISION SECTION ============ */
.div-future {
    background: #030303;
    padding: 90px 0 80px;
    position: relative;
}
.div-future-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 60px;
}
.div-section-eyebrow-row {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}
.div-section-eyebrow-rule {
    width: 56px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.45) 50%, transparent 100%);
}
.div-section-eyebrow {
    color: #D4AF37;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.div-future-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.005em;
    margin: 0 0 22px;
}
.div-future-lede {
    color: rgba(255,255,255,0.7);
    font-size: 0.98rem;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* Feature grid */
.div-feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    margin-bottom: 40px;
}
.div-feature-card {
    background: linear-gradient(180deg, rgba(12,12,12,0.9) 0%, rgba(6,6,6,0.92) 100%);
    border: 1px solid rgba(212,175,55,0.18);
    border-radius: 18px;
    padding: 32px 22px 28px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.div-feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 18px 40px rgba(212,175,55,0.08);
}
.div-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.4);
    color: #D4AF37;
    margin: 0 auto 18px;
}
.div-feature-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 12px;
}
.div-feature-text {
    color: rgba(255,255,255,0.62);
    font-size: 0.82rem;
    line-height: 1.5;
    font-weight: 300;
    margin: 0;
}

/* Info strip */
.div-info-strip {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 26px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.18);
    background: rgba(15,15,15,0.6);
    flex-wrap: wrap;
}
.div-info-strip p {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.55;
    font-weight: 300;
    margin: 0;
    flex: 1 1 auto;
    min-width: 260px;
}
.div-info-strip-ic {
    color: #D4AF37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.div-info-link {
    color: #D4AF37;
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.div-info-link:hover { color: #ebd573; }


/* ============ CLOSING CTA ============ */
.div-closing-cta {
    background: #030303;
    padding: 0 0 100px;
}
.div-closing-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 36px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(15,15,15,0.96) 0%, rgba(6,6,6,0.96) 100%);
    border: 1px solid rgba(212,175,55,0.28);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    flex-wrap: wrap;
}
.div-closing-ic {
    color: #D4AF37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 999px;
    border: 1px solid rgba(212,175,55,0.4);
    background: rgba(212,175,55,0.06);
    flex-shrink: 0;
}
.div-closing-copy {
    flex: 1 1 auto;
    min-width: 260px;
}
.div-closing-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.2;
    margin: 0 0 6px;
}
.div-closing-text {
    color: rgba(255,255,255,0.68);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}


/* ============ TABLET ============ */
@media (max-width: 1024px) {
    .div-hero { padding: 180px 0 80px; min-height: 540px; }
    .div-hero-bg { width: 70%; }
    .div-feature-grid { grid-template-columns: repeat(3, 1fr); }
    .div-feature-card:nth-child(4),
    .div-feature-card:nth-child(5) { grid-column: span 1; }
}


/* ============ MOBILE ============ */
@media (max-width: 720px) {
    /* MOBILE: photo becomes a real full-width hero BAND above the copy
       (previously rendered as a 32%-opacity background slice). */
    .div-hero { padding: 88px 0 56px; min-height: auto; }
    .div-hero-bg {
        position: relative;
        top: auto;
        right: auto;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        height: 260px;
        opacity: 1;
        mask-image: none;
        -webkit-mask-image: none;
        margin-bottom: 28px;
    }
    .div-hero::after { display: none; }
    .div-hero-title { font-size: 2.2rem; }
    .div-hero-lede { font-size: 0.95rem; }
    .div-future { padding: 64px 0; }
    .div-future-header { margin-bottom: 40px; }
    .div-feature-grid { grid-template-columns: 1fr; gap: 14px; }
    .div-feature-card { padding: 26px 22px; }
    .div-info-strip { padding: 18px 22px; }
    .div-closing-card { padding: 24px 22px; flex-direction: column; align-items: flex-start; gap: 18px; }
    .div-closing-card .aat-btn-primary { align-self: stretch; justify-content: center; }
}
