/* Palouse Air — Main Stylesheet
   Executive Business Travel | Pullman, WA
   Inspired by: bcflights.com
   Palette: Deep Navy · Warm Gold · Cream White
*/

:root {
    --navy:        #0B1929;
    --navy-mid:    #132238;
    --gold:        #C9A05A;
    --gold-light:  #DDB87A;
    --cream:       #F7F4EE;
    --cream-mid:   #EDE9E0;
    --white:       #FFFFFF;
    --text:        #1A1C22;
    --text-mid:    #4A4E5A;
    --text-light:  #8A8E99;
    --border:      #DEDAD2;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --max-w: 1200px;
    --nav-h: 72px;

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utilities ── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-eyebrow {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}
.section-eyebrow.center { text-align: center; }
.section-eyebrow.light { color: var(--gold-light); }

h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1.5rem;
}
h2.center { text-align: center; }
h2.light { color: var(--white); }

h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

p { line-height: 1.75; color: var(--text-mid); }

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}
.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 160, 90, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--white);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-dark:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(11, 25, 41, 0.3);
}

.full-width { width: 100%; text-align: center; }

/* ── Navigation ── */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    z-index: 1000;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.scrolled {
    background: rgba(11, 25, 41, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--white);
    font-weight: 600;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav-menu a {
    color: rgba(255,255,255,0.78);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    position: relative;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.25s var(--ease);
}
.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
    display: inline-block;
    padding: 0.55rem 1.25rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 8px;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
}
.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: all 0.3s;
}

/* ── Hero ── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 40%;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        170deg,
        rgba(11, 25, 41, 0.72) 0%,
        rgba(11, 25, 41, 0.55) 50%,
        rgba(11, 25, 41, 0.65) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 1.5rem;
    max-width: 860px;
}

.hero-ownership-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.hero-eyebrow {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.25rem;
}
.hero-eyebrow-brand {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-eyebrow-airports {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}
.hero-eyebrow-cities {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.hero-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-hint {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.hero-scroll-hint span {
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── Destinations Strip ── */
.destinations-strip {
    background: var(--navy);
    padding: 1.1rem 2rem;
    overflow: hidden;
}
.strip-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    justify-content: center;
}
.strip-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-right: 0.5rem;
}
.dest {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.04em;
}
.sep { color: var(--gold); font-size: 0.9rem; }

/* ── Intro Section ── */
.intro-section {
    padding: 7rem 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.intro-text h2 { color: var(--navy); }
.intro-text p { margin-bottom: 1.25rem; }
.intro-text .btn { margin-top: 0.5rem; }

.intro-images {
    height: 560px;
}
.intro-img-single {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.intro-img-single img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.intro-img-single:hover img { transform: scale(1.04); }

/* ── How It Works ── */
.how-section {
    padding: 7rem 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.step {
    position: relative;
}
.step-num {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--cream-mid);
    line-height: 1;
    margin-bottom: 1rem;
    user-select: none;
}
.step h3 { color: var(--navy); font-size: 1.1rem; }
.step p { font-size: 0.9375rem; }

/* Connecting line between steps */
.steps-grid::after {
    display: none; /* Using individual step borders instead */
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 1.75rem;
    right: -1.25rem;
    width: 1px;
    height: 32px;
    background: var(--border);
}

/* ── Aircraft Section ── */
.aircraft-section {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}
.aircraft-bg {
    position: absolute;
    inset: 0;
}
.aircraft-img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 60%;
}
.aircraft-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(11,25,41,0.9) 0%, rgba(11,25,41,0.65) 100%);
}

.aircraft-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.aircraft-content h2 { color: var(--white); margin-bottom: 1rem; }

.aircraft-desc {
    color: rgba(255,255,255,0.75);
    margin-bottom: 3rem;
    font-size: 1.0625rem;
    max-width: 520px;
}

.aircraft-specs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
.spec { text-align: left; }
.spec-val {
    display: block;
    font-family: var(--font-serif);
    font-size: 2.25rem;
    font-weight: 400;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.spec-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

/* ── Why Palouse Air ── */
.why-section {
    padding: 7rem 0;
    background: var(--cream);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11,25,41,0.1);
}

.why-icon {
    width: 40px; height: 40px;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 1.05rem; color: var(--navy); }
.why-card p { font-size: 0.9375rem; }

/* ── About Section ── */
.about-section {
    padding: 7rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 5fr 6fr;
    gap: 5rem;
    align-items: center;
}

.about-img {
    overflow: hidden;
    border-radius: 8px;
    height: 520px;
}
.about-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.about-img:hover img { transform: scale(1.03); }

.about-text h2 { color: var(--navy); }
.about-text p { margin-bottom: 1.25rem; }
.about-text .btn { margin-top: 0.5rem; }

/* ── Expansion / PNW Outreach ── */
.expansion-section {
    padding: 7rem 0;
    background: var(--cream);
    border-top: 1px solid var(--border);
}
.expansion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.expansion-text h2 { margin-bottom: 1.25rem; }
.expansion-text p { margin-bottom: 1rem; color: var(--text-mid); }
.expansion-text .btn { margin-top: 0.5rem; }

.expansion-markets-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.expansion-market-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.expansion-market {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.1rem 1.25rem;
}
.expansion-market strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.expansion-market span {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .expansion-grid { grid-template-columns: 1fr; gap: 3rem; }
    .expansion-market-list { grid-template-columns: 1fr 1fr; }
}

/* ── Newsletter ── */
.newsletter-section {
    background: var(--navy);
    padding: 5rem 0;
}

.newsletter-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-text h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter-text .light-p { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }

.nl-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.nl-row input {
    flex: 1;
    min-width: 160px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.07);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-sans);
    transition: border-color 0.2s;
}
.nl-row input::placeholder { color: rgba(255,255,255,0.35); }
.nl-row input:focus { outline: none; border-color: var(--gold); }

/* ── Contact ── */
.contact-section {
    padding: 7rem 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
}

.contact-info h2 { color: var(--navy); }
.contact-info > p { margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-item svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.25rem;
}
.contact-item span { font-size: 0.9375rem; color: var(--text-mid); line-height: 1.6; }
.contact-item a { color: var(--gold); }
.contact-item a:hover { text-decoration: underline; }

.contact-form-wrap {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 32px rgba(11,25,41,0.08);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,160,90,0.15);
}
.form-group textarea { resize: vertical; line-height: 1.6; }

/* ── Intro Callout Quote ── */
.intro-callout {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--navy);
    border-left: 3px solid var(--gold);
    padding-left: 1.25rem;
    margin: 1.75rem 0;
    line-height: 1.6;
}

/* ── Three Numbers ── */
.section-lead {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3.5rem;
    font-size: 1.0625rem;
}

.three-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.number-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 2rem;
    position: relative;
}
.number-tag {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 400;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 0.5rem;
    user-select: none;
}
.number-card h3 { color: var(--navy); font-size: 1.05rem; }
.number-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,160,90,0.1);
    padding: 2px 8px;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}
.number-card p { font-size: 0.9375rem; }

/* ── Aircraft Features ── */
.aircraft-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.aircraft-feat strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}
.aircraft-feat span {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

/* ── Cost Calculator ── */
.calculator-section {
    padding: 7rem 0;
    background: var(--navy);
}
.calculator-section .section-eyebrow { color: var(--gold-light); }
.calculator-section h2 { color: var(--white); }
.calculator-section .section-lead { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto 3rem; text-align: center; }

.calc-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 2.5rem;
}

.calc-input-group { margin-bottom: 2rem; }
.calc-label-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.75rem;
}
.calc-label-row label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}
.calc-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold);
}

.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 4px;
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    outline: none;
    cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 3px solid var(--navy);
    box-shadow: 0 0 0 2px var(--gold);
}
.calc-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 3px solid var(--navy);
}
.calc-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.4rem;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.3);
}

.calc-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.calc-pill {
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.15);
    background: transparent;
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}
.calc-pill:hover { border-color: var(--gold); color: var(--gold); }
.calc-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    font-weight: 700;
}
.calc-note {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    font-style: italic;
}

/* Output panel */
.calc-output {
    border-left: 1px solid rgba(255,255,255,0.08);
    padding-left: 3rem;
}
.calc-tier-badge {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.calc-tier-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.5rem;
}

.calc-numbers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.calc-num-item { text-align: center; }
.calc-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.2rem;
}
.calc-num-label {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.3;
    display: block;
}

.calc-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1rem;
}
.calc-totals { margin-bottom: 1.25rem; }
.calc-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.calc-total-row span:last-child { color: rgba(255,255,255,0.8); font-weight: 600; }
.calc-grand-total {
    font-size: 0.95rem !important;
    color: var(--white) !important;
    padding: 0.5rem 0 !important;
}
.calc-grand-total span { color: var(--white) !important; }
.calc-grand-total span:last-child { color: var(--gold) !important; font-size: 1.05rem; }
.calc-eff-rate span:last-child { color: var(--gold-light) !important; }

.calc-charter-compare {
    background: rgba(201,160,90,0.08);
    border: 1px solid rgba(201,160,90,0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.calc-charter-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
}
.calc-charter-saving {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}
.calc-charter-saving strong { color: var(--gold); }

.calc-disclaimer {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 900px) {
    .calc-card { grid-template-columns: 1fr; gap: 2rem; }
    .calc-output { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; }
}

/* ── Ownership Table ── */
.ownership-section {
    padding: 7rem 0;
    background: var(--navy);
}
.ownership-section .section-eyebrow { color: var(--gold-light); }
.ownership-section h2 { color: var(--white); }
.ownership-section .section-lead { color: rgba(255,255,255,0.65); }

.ownership-table-wrap {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 8px;
}

.ownership-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.ownership-table thead tr {
    background: rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ownership-table thead th {
    padding: 1.25rem 1rem;
    text-align: center;
    font-weight: 500;
    color: var(--white);
    vertical-align: top;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.ownership-table thead th:last-child { border-right: none; }
.ownership-table thead th.row-label { text-align: left; }

.tier-name {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.2rem;
}
.tier-share {
    display: block;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
}
.tier-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.ownership-table tbody td {
    padding: 1rem 1rem;
    text-align: center;
    color: rgba(255,255,255,0.75);
    border-right: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ownership-table tbody td:last-child { border-right: none; }
.ownership-table tbody td.row-label {
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.02em;
    padding-left: 1.25rem;
}

.ownership-table .row-alt td { background: rgba(255,255,255,0.02); }

.featured-col {
    background: rgba(201,160,90,0.1) !important;
    border-left: 1px solid rgba(201,160,90,0.25) !important;
    border-right: 1px solid rgba(201,160,90,0.25) !important;
    color: var(--gold-light) !important;
}

.row-charter-compare td {
    background: rgba(201,160,90,0.07) !important;
    border-top: 1px solid rgba(201,160,90,0.2);
}
.row-charter-compare .row-label { color: rgba(255,255,255,0.9) !important; }
.row-label-note {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255,255,255,0.4);
    margin-top: 0.2rem;
    letter-spacing: 0;
    text-transform: none;
}
.charter-owner-rate {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold-light);
}
.charter-savings {
    display: block;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    margin-top: 0.15rem;
}
.row-charter-compare .featured-col .charter-owner-rate { color: var(--gold); }

.ownership-table tfoot tr {
    border-top: 1px solid rgba(255,255,255,0.1);
}
.ownership-table tfoot td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.05);
}
.ownership-table tfoot td:last-child { border-right: none; }

.btn-sm {
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
}

.table-note {
    font-size: 0.825rem;
    color: rgba(255,255,255,0.4);
    margin-top: 2rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

/* ── Leisure Travel Section ── */
.leisure-section {
    padding: 7rem 0;
    background: var(--navy);
}
.leisure-section .section-eyebrow { color: var(--gold-light); }
.leisure-section h2 { color: var(--white); }
.leisure-section .section-lead { color: rgba(255,255,255,0.65); margin-bottom: 3.5rem; }

.leisure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
}

.leisure-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
    cursor: default;
}
.leisure-card--wide {
    grid-column: 1 / -1;
    min-height: 400px;
}

.leisure-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s var(--ease);
}
.leisure-card:hover img { transform: scale(1.04); }

.leisure-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 25, 41, 0.92) 0%,
        rgba(11, 25, 41, 0.5) 50%,
        rgba(11, 25, 41, 0.1) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.leisure-card-content { color: var(--white); }

.leisure-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 0.6rem;
}

.leisure-card-content h3 {
    color: var(--white);
    font-size: 1.35rem;
    margin-bottom: 0.6rem;
}
.leisure-card-content p {
    color: rgba(255,255,255,0.78);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
    max-width: 680px;
}

/* Leisure destinations grid */
.leisure-destinations {
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.leisure-dest-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-align: center;
}

.leisure-dest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.dest-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    transition: background 0.2s, border-color 0.2s;
}
.dest-card:hover {
    background: rgba(201,160,90,0.1);
    border-color: rgba(201,160,90,0.3);
}
.dest-card strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.2rem;
}
.dest-card .dest-time {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.dest-card span:not(.dest-time) {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
}

/* ── Routes Section ── */
.routes-section {
    padding: 7rem 0;
    background: var(--white);
}

.routes-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 5rem;
    align-items: start;
}

.routes-text h2 { color: var(--navy); }
.routes-text p { margin-bottom: 1.25rem; }
.routes-note {
    font-size: 0.875rem !important;
    color: var(--text-light) !important;
    font-style: italic;
}

.routes-table-wrap {
    background: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.routes-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    table-layout: fixed;
}
.routes-table th:nth-child(1),
.routes-table td:nth-child(1) { width: 36%; }
.routes-table th:nth-child(2),
.routes-table td:nth-child(2) { width: 20%; }
.routes-table th:nth-child(3),
.routes-table td:nth-child(3) { width: 22%; }
.routes-table th:nth-child(4),
.routes-table td:nth-child(4) { width: 22%; }
.th-sub {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin-top: 0.2rem;
    text-transform: uppercase;
}

.routes-table thead tr {
    background: var(--navy);
}
.routes-table thead th {
    padding: 0.9rem 1.25rem;
    text-align: left;
    font-size: 0.75rem;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.routes-table thead th:last-child { text-align: right; }

.routes-table tbody tr { border-bottom: 1px solid var(--border); }
.routes-table tbody tr:last-child { border-bottom: none; }
.routes-table tbody td {
    padding: 1rem 1.25rem;
    color: var(--text-mid);
}
.routes-table tbody .row-alt { background: rgba(11,25,41,0.03); }
.routes-table .cost {
    text-align: right;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
}

.routes-callout {
    background: var(--navy);
    padding: 1.25rem 1.5rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}
.routes-callout strong { color: var(--gold); }

.routes-charter-compare {
    background: var(--navy);
    border-top: 2px solid var(--gold);
    padding: 1.25rem 1.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.875rem;
    line-height: 1.6;
}
.routes-charter-compare strong { color: var(--gold); }

/* ── FAQ ── */
.faq-section {
    padding: 7rem 0;
    background: var(--cream);
}

.faq-list {
    max-width: 780px;
    margin: 3.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border);
    background: var(--white);
}
.faq-item:last-child { border-bottom: none; }

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 1.35rem 1.5rem;
    text-align: left;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: background 0.2s;
}
.faq-q:hover { background: var(--cream); }
.faq-q[aria-expanded="true"] { background: var(--cream); }

.faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    border-radius: 8px;
    transition: transform 0.25s var(--ease), opacity 0.25s;
}
.faq-icon::before {
    width: 12px; height: 1.5px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-icon::after {
    width: 1.5px; height: 12px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.faq-q[aria-expanded="true"] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-a {
    display: none;
    padding: 0 1.5rem 1.35rem;
}
.faq-a.open { display: block; }
.faq-a p { font-size: 0.9375rem; margin: 0; }

/* ── Contact tagline ── */
.contact-tagline {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.contact-tagline p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--navy);
    margin: 0;
}

/* ── Footer ── */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.6);
    padding-top: 4rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
    padding: 1.5rem 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-legal { text-align: right; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step:not(:last-child)::after { display: none; }
    .aircraft-specs { grid-template-columns: repeat(2, 1fr); }
    .aircraft-features { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .newsletter-inner { grid-template-columns: 1fr; gap: 2rem; }
    .three-numbers { grid-template-columns: 1fr; gap: 1rem; }
    .routes-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .leisure-dest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-menu, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }

    .nav-menu.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0; right: 0;
        background: var(--navy);
        padding: 2rem;
        gap: 1.5rem;
        border-top: 1px solid rgba(255,255,255,0.08);
    }

    .hero-content h1 { font-size: 2.75rem; }

    .intro-grid,
    .about-grid,
    .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }

    .intro-images { height: 220px; }

    .about-img { height: 300px; }

    .steps-grid { grid-template-columns: 1fr; gap: 2rem; }
    .aircraft-specs { grid-template-columns: repeat(2, 1fr); }
    .aircraft-features { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }

    .contact-form .form-row { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom .container { flex-direction: column; align-items: flex-start; }
    .footer-legal { text-align: left; }

    .destinations-strip .strip-inner { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }

    .newsletter-section { padding: 3.5rem 0; }
    .nl-row { flex-direction: column; }
    .nl-row .btn { width: 100%; text-align: center; }

    .routes-table { font-size: 0.8rem; table-layout: auto; }
    .routes-table th:nth-child(1),
    .routes-table td:nth-child(1) { width: auto; }
    .routes-table th:nth-child(2),
    .routes-table td:nth-child(2),
    .routes-table th:nth-child(3),
    .routes-table td:nth-child(3),
    .routes-table th:nth-child(4),
    .routes-table td:nth-child(4) { width: auto; }
    .routes-table thead th { padding: 0.75rem 0.75rem; font-size: 0.7rem; }
    .routes-table tbody td { padding: 0.85rem 0.75rem; }

    .ownership-table { font-size: 0.8rem; }
    .ownership-table thead th,
    .ownership-table tbody td,
    .ownership-table tfoot td { padding: 0.75rem 0.6rem; }

    .faq-q { font-size: 0.875rem; padding: 1.1rem 1.1rem; }
    .faq-a { padding: 0 1.1rem 1.1rem; }

    .leisure-grid { grid-template-columns: 1fr; }
    .leisure-card--wide { min-height: 320px; }
    .leisure-dest-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }
    .contact-form-wrap { padding: 1.5rem; }
    .three-numbers { margin-bottom: 3rem; }
}
