/* =====================================================
   HERO
===================================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 620px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.is-active { opacity: 1; }

.hero-slide video,
.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(7,9,13,0.88) 0%, rgba(7,9,13,0.5) 55%, rgba(7,9,13,0.18) 100%);
}

.hero-body {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 max(80px, calc((100vw - 1280px) / 2)) 108px;
    pointer-events: none;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-heading {
    font-family: var(--ff-serif);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--white);
    margin-bottom: 28px;
    transition: opacity 0.4s ease;
}

.hero-progress {
    height: 1px;
    background: rgba(184, 144, 80, 0.25);
    width: 140px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.hero-progress-fill {
    position: absolute;
    inset: 0 auto 0 0;
    background: var(--gold);
    width: 0;
}

.hero-sub {
    font-size: 13px;
    font-weight: 300;
    color: rgba(240, 236, 228, 0.55);
    max-width: 300px;
    line-height: 1.65;
    transition: opacity 0.4s ease;
}

.hero-dots {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-dot-btn {
    width: 2px;
    height: 24px;
    background: rgba(240, 236, 228, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, height 0.3s;
}

.hero-dot-btn.is-active { background: var(--gold); height: 44px; }

.hero-counter {
    position: absolute;
    bottom: 110px;
    right: max(80px, calc((100vw - 1280px) / 2));
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--muted);
}

.hero-scroll-cue {
    position: absolute;
    bottom: 44px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hero-scroll-label {
    font-size: 9px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--muted);
}

.hero-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.35; }
    55%       { opacity: 1; }
}

/* =====================================================
   ABOUT / PHOTO GRID
===================================================== */
.about {
    padding: 120px max(80px, calc((100% - 1280px) / 2));
    background: var(--bg);
}

.about-intro {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 72px;
}

.about-intro .display-heading { font-size: clamp(28px, 3.5vw, 48px); }

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    grid-auto-rows: 360px;
}

.photo-cell {
    overflow: hidden;
    background: var(--bg-card);
}

.photo-cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.photo-cell:hover img { transform: scale(1.05); }
.photo-cell.wide { grid-column: span 2; }

/* =====================================================
   LEADERSHIP / TEAM (on front page)
===================================================== */
.leadership {
    padding: 120px max(80px, calc((100% - 1280px) / 2));
    background: var(--bg-alt);
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.leadership-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* Leader portrait card */
.ldr-card {
    background: var(--bg-card);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid transparent;
}

.ldr-card:hover { transform: translateY(-4px); border-color: var(--border); }

.ldr-card-photo {
    aspect-ratio: 2/3;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ldr-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.ldr-card-photo::before {
    content: '';
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(184, 144, 80, 0.07);
    pointer-events: none;
    z-index: 1;
}

.ldr-initials {
    font-family: var(--ff-serif);
    font-size: clamp(44px, 5vw, 64px);
    font-weight: 300;
    color: rgba(184, 144, 80, 0.15);
    letter-spacing: 0.06em;
    line-height: 1;
    transition: color 0.3s;
    z-index: 0;
}

.ldr-card:hover .ldr-initials { color: rgba(184, 144, 80, 0.28); }

.ldr-card-foot {
    padding: 16px 18px 18px;
    border-top: 1px solid var(--border);
    transition: background 0.3s;
}

.ldr-card:hover .ldr-card-foot { background: #14192a; }

.ldr-name {
    font-family: var(--ff-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 3px;
}

.ldr-role {
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.ldr-cta {
    font-size: 9.5px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.2s, transform 0.2s, color 0.2s;
}

.ldr-card:hover .ldr-cta { opacity: 1; transform: translateY(0); color: var(--gold); }

/* Leadership text */
.leadership-text .eyebrow { margin-bottom: 20px; }

.leadership-text .display-heading {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 28px;
}

.leadership-text p {
    font-size: 15px;
    color: var(--muted-lt);
    line-height: 1.82;
    margin-bottom: 20px;
}

.leadership-text p:last-child { margin-bottom: 0; }

/* =====================================================
   SERVICES
===================================================== */
.services {
    padding: 120px max(80px, calc((100% - 1280px) / 2));
    background: var(--bg);
    counter-reset: svc;
}

.services-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: end;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.services-head .display-heading { font-size: clamp(28px, 3.5vw, 46px); }

.services-head p { font-size: 15px; color: var(--muted-lt); line-height: 1.8; }

.service-row {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    padding: 52px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
    position: relative;
    overflow: hidden;
    counter-increment: svc;
    transition: background 0.4s ease;
}

.service-row::after {
    content: "0" counter(svc);
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-55%);
    font-family: var(--ff-serif);
    font-size: 180px;
    font-weight: 300;
    color: var(--gold);
    opacity: 0.035;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: opacity 0.4s ease;
}

.service-row:hover { background: rgba(184, 144, 80, 0.025); }
.service-row:hover::after { opacity: 0.075; }

.service-name {
    font-family: var(--ff-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    line-height: 1.2;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    padding-left: 20px;
    border-left: 2px solid rgba(184, 144, 80, 0.35);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-name::after {
    content: 'View';
    font-family: var(--ff-sans);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s, transform 0.3s;
    display: block;
}

.service-row:hover .service-name        { color: var(--gold-lt); border-left-color: var(--gold); }
.service-row:hover .service-name::after { opacity: 1; transform: translateX(0); }

.service-desc,
.service-desc p {
    font-size: 15px;
    color: var(--muted-lt);
    line-height: 1.85;
    position: relative;
    z-index: 1;
}

.service-desc p { margin-bottom: 24px; }
.service-desc p:last-child { margin-bottom: 0; }

.service-list { padding: 0; list-style: none; margin-top: 4px; }

.service-list li {
    font-size: 15px;
    color: var(--muted-lt);
    line-height: 1.75;
    padding: 10px 0 10px 20px;
    position: relative;
    border-bottom: 1px solid var(--border);
}

.service-list li:last-child { border-bottom: none; }

.service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 19px;
    width: 9px;
    height: 1px;
    background: var(--gold);
}

.service-subhead {
    font-size: 15px;
    color: var(--white);
    font-family: var(--ff-serif);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* =====================================================
   AIRCRAFT / FLEET
===================================================== */
.aircraft {
    padding: 120px max(80px, calc((100% - 1280px) / 2));
    background: var(--bg-alt);
}

.aircraft-head {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 56px;
    align-items: end;
    margin-bottom: 56px;
}

.aircraft-head .display-heading { font-size: clamp(30px, 3.8vw, 50px); }

.aircraft-head p { font-size: 15px; color: var(--muted-lt); line-height: 1.8; }

.aircraft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.aircraft-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--bg-card);
    cursor: pointer;
}

.aircraft-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.aircraft-card:hover img { transform: scale(1.07); }

.aircraft-card-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7,9,13,0.88) 0%, rgba(7,9,13,0.15) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.aircraft-card-name {
    font-family: var(--ff-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 5px;
}

.aircraft-card-cta {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s, transform 0.3s;
}

.aircraft-card:hover .aircraft-card-cta { opacity: 1; transform: translateY(0); }

.aircraft-card.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
}

.aircraft-card.placeholder p {
    font-family: var(--ff-serif);
    font-size: 16px;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
    padding: 32px;
}

/* =====================================================
   HERITAGE
===================================================== */
.heritage {
    padding: 120px max(80px, calc((100% - 1280px) / 2));
    background: var(--bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.heritage-text .eyebrow { margin-bottom: 20px; }

.heritage-text .display-heading {
    font-size: clamp(28px, 3.2vw, 44px);
    margin-bottom: 24px;
}

.heritage-text p { font-size: 15px; color: var(--muted-lt); line-height: 1.82; margin-bottom: 18px; }

.heritage-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    margin-top: 52px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

.stat-number {
    font-family: var(--ff-serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.heritage-visual {
    position: relative;
    overflow: hidden;
    aspect-ratio: 9/11;
}

.heritage-visual video,
.heritage-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =====================================================
   CONTACT CTA
===================================================== */
.contact-cta {
    padding: 120px max(80px, calc((100% - 1280px) / 2));
    background: var(--bg-alt);
    text-align: center;
    border-top: 1px solid var(--border);
}

.contact-cta .eyebrow { margin-bottom: 20px; }

.contact-cta .display-heading {
    font-size: clamp(34px, 4.5vw, 62px);
    max-width: 720px;
    margin: 0 auto 52px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 72px;
    margin-bottom: 52px;
    flex-wrap: wrap;
}

.contact-item-label {
    font-size: 9.5px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-item-value { font-size: 15px; color: var(--white); line-height: 1.6; }
.contact-item-value a { transition: color 0.2s; }
.contact-item-value a:hover { color: var(--gold); }

/* =====================================================
   LIGHT MODE — HOME OVERRIDES
===================================================== */
[data-theme="light"] .hero-heading { color: #f0ece4; }
[data-theme="light"] .aircraft-card.placeholder p { color: var(--muted); }
[data-theme="light"] .ldr-card:hover .ldr-card-foot { background: #d8d2c8; }
[data-theme="light"] .ldr-initials { color: rgba(138, 108, 40, 0.18); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 860px) {
    .hero-body    { padding: 0 28px 88px; }
    .hero-dots    { display: none; }
    .hero-counter { right: 28px; bottom: 90px; }

    .about        { padding: 80px 28px; }
    .photo-grid   { grid-template-columns: 1fr 1fr; gap: 4px; grid-auto-rows: 240px; }
    .photo-cell.wide { grid-column: span 2; }

    .leadership   { padding: 80px 28px; grid-template-columns: 1fr; gap: 48px; }
    .leadership-photos { grid-template-columns: 1fr 1fr; max-width: 480px; }

    .services     { padding: 80px 28px; }
    .services-head { grid-template-columns: 1fr; gap: 20px; }
    .service-row  { grid-template-columns: 1fr; gap: 20px; padding: 36px 0; }
    .service-row::after { font-size: 100px; }
    .service-name { font-size: 24px; }

    .aircraft     { padding: 80px 28px; }
    .aircraft-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 36px; }
    .aircraft-grid { grid-template-columns: 1fr 1fr; }

    .heritage     { padding: 80px 28px; grid-template-columns: 1fr; gap: 52px; }
    .heritage-visual { aspect-ratio: 16/9; }

    .contact-cta  { padding: 80px 28px; }
    .contact-details { gap: 36px; flex-direction: column; align-items: center; }
}

@media (max-width: 560px) {
    .photo-grid   { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .photo-cell, .photo-cell.wide { grid-column: span 1; }
    .aircraft-grid { grid-template-columns: 1fr; }
    .leadership-photos { max-width: 320px; margin: 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide, .hero-scroll-line { transition: none; animation: none; }
}

/* Non-interactive team card (bio coming soon) */
.ldr-card--soon {
    cursor: default;
    opacity: 0.75;
}

.ldr-card--soon:hover {
    transform: none;
    border-color: transparent;
}

.ldr-card--soon .ldr-card-foot { transition: none; }
.ldr-card--soon:hover .ldr-card-foot { background: var(--bg-card); }
.ldr-card--soon .ldr-cta { display: none !important; }
.ldr-card--soon .ldr-initials { transition: none; }
.ldr-card--soon:hover .ldr-initials { color: rgba(184, 144, 80, 0.15); }

/* Leadership card photos — black and white */
.ldr-card-photo img {
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.7s ease;
}

.ldr-card:hover .ldr-card-photo img {
    filter: grayscale(100%) brightness(1.08);
}
