/* ============================================
   LEGACY CERTIFIED - Vintage Aviation Aesthetic
   Warm earth tones, classic typography,
   hangar-and-leather authenticity
   ============================================ */

:root {
    /* Color palette - aged paper, weathered leather, oxidized brass */
    --paper: #f4ede0;
    --paper-warm: #ebe2d1;
    --paper-deep: #ddd1ba;
    --ink: #1f1a14;
    --ink-soft: #3d3528;
    --ink-mute: #6b5f4d;
    --oxblood: #6b1e1e;
    --oxblood-deep: #4a1414;
    --brass: #a87838;
    --brass-light: #c4944a;
    --hangar: #2a2620;
    --rule: rgba(31, 26, 20, 0.15);
    --rule-soft: rgba(31, 26, 20, 0.08);

    /* Type */
    --display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Layout */
    --container: 1180px;
    --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--body);
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Subtle paper grain overlay - gives the whole site a printed feel */
.grain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.4;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0.12 0 0 0 0 0.10 0 0 0 0 0.08 0 0 0 0.15 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    position: relative;
    z-index: 2;
}

/* ============= TYPOGRAPHY ============= */

h1, h2, h3, h4 {
    font-family: var(--display);
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.01em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

h1 em, h2 em {
    font-style: italic;
    color: var(--oxblood);
    font-weight: 500;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 600;
}

p {
    margin-bottom: 1em;
    color: var(--ink-soft);
}

p:last-child { margin-bottom: 0; }

a {
    color: var(--oxblood);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover { color: var(--oxblood-deep); }

.eyebrow,
.section-eyebrow {
    font-family: var(--body);
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brass);
    margin-bottom: 1rem;
    display: inline-block;
}

.lede {
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--ink-soft);
    max-width: 36em;
}

/* ============= HEADER ============= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(244, 237, 224, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--rule-soft);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem var(--gutter);
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--ink);
}

.brand-mark {
    width: 42px;
    height: 42px;
    color: var(--oxblood);
    flex-shrink: 0;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-family: var(--display);
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.brand-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--ink-mute);
    margin-top: 4px;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-nav a {
    color: var(--ink-soft);
    font-size: 0.92rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.header-nav a:hover { color: var(--oxblood); }

.nav-cta {
    background: var(--oxblood);
    color: var(--paper) !important;
    padding: 0.55rem 1.1rem;
    border-radius: 2px;
    font-weight: 600;
}

.nav-cta:hover {
    background: var(--oxblood-deep) !important;
}

/* ============= BUTTONS ============= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 1.6rem;
    font-family: var(--body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-primary {
    background: var(--oxblood);
    color: var(--paper);
    box-shadow: 0 2px 0 var(--oxblood-deep);
}

.btn-primary:hover {
    background: var(--oxblood-deep);
    color: var(--paper);
    transform: translateY(-1px);
    box-shadow: 0 3px 0 var(--oxblood-deep);
}

.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--rule);
}

.btn-ghost:hover {
    background: var(--paper-warm);
    border-color: var(--ink);
    color: var(--ink);
}

.btn-large {
    padding: 1.15rem 2rem;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

/* ============= HERO ============= */

.hero {
    padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* Topographic line decoration in the background */
    content: '';
    position: absolute;
    top: 0;
    right: -10%;
    width: 60%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%236b1e1e' stroke-opacity='0.08' stroke-width='1'%3E%3Ccircle cx='400' cy='400' r='100'/%3E%3Ccircle cx='400' cy='400' r='180'/%3E%3Ccircle cx='400' cy='400' r='260'/%3E%3Ccircle cx='400' cy='400' r='340'/%3E%3Cline x1='0' y1='400' x2='800' y2='400'/%3E%3Cline x1='400' y1='0' x2='400' y2='800'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
}

.hero-text .lede {
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.micro-trust {
    font-size: 0.85rem;
    color: var(--ink-mute);
    font-style: italic;
}

/* The vintage hangar card - feels like a stamped certificate */
.hangar-card {
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    padding: 2.5rem 2rem;
    position: relative;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 20px 40px -20px rgba(31, 26, 20, 0.15),
        0 4px 12px -4px rgba(31, 26, 20, 0.08);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.hangar-card::before {
    /* Corner notch effect */
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 18px; height: 18px;
    background: var(--paper);
    border-right: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: top left;
}

.hangar-card:hover {
    transform: rotate(-0.5deg) translateY(-2px);
}

.hangar-stamp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: var(--oxblood);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.stamp-line {
    height: 1px;
    flex: 1;
    background: var(--oxblood);
    opacity: 0.4;
    max-width: 40px;
}

.hangar-quote {
    font-family: var(--display);
    font-size: 1.45rem;
    font-style: italic;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: 1rem;
}

.hangar-attrib {
    font-size: 0.85rem;
    color: var(--ink-mute);
    text-align: right;
}

/* ============= FOUNDER CARD (hero photo) ============= */

.founder-card {
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    padding: 1rem 1rem 1.5rem;
    margin: 0;
    position: relative;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 24px 48px -24px rgba(31, 26, 20, 0.22),
        0 6px 14px -4px rgba(31, 26, 20, 0.10);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: rotate(-0.4deg) translateY(-2px);
}

.founder-photo-wrap {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--rule);
    margin-bottom: 1.25rem;
    background: #d4cdbf;
}

.founder-photo {
    display: block;
    width: 100%;
    height: auto;
    filter: contrast(1.04) saturate(0.92) sepia(0.06);
}

.founder-stamp {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.7rem;
    background: rgba(247, 240, 226, 0.92);
    border: 1px solid var(--oxblood);
    color: var(--oxblood);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.founder-stamp .stamp-line {
    max-width: 22px;
    background: var(--oxblood);
    opacity: 0.5;
}

.founder-caption {
    text-align: center;
    padding: 0 0.5rem;
}

.founder-name {
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 0.15rem;
}

.founder-loc {
    font-size: 0.8rem;
    color: var(--ink-mute);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 0.9rem;
}

.founder-pledge {
    font-family: var(--display);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.45;
    color: var(--ink);
    margin: 0;
}

/* ============= STICKY MOBILE CALL BAR ============= */

.sticky-call {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1rem calc(0.95rem + env(safe-area-inset-bottom, 0px));
    background: var(--oxblood);
    color: var(--paper);
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 -4px 16px rgba(31, 26, 20, 0.18);
}

.sticky-call:hover,
.sticky-call:focus {
    background: #6a1d1a;
    color: var(--paper);
}

.sticky-call svg {
    flex-shrink: 0;
}

.sticky-call-text strong {
    font-weight: 600;
}

@media (max-width: 720px) {
    .sticky-call {
        display: flex;
    }
    /* Reserve space so footer content isn't hidden behind sticky bar */
    .site-footer {
        padding-bottom: 4.5rem;
    }
}

/* ============= EMPATHY SECTION ============= */

.empathy {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--hangar);
    color: var(--paper);
    position: relative;
}

.empathy::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brass), transparent);
}

.empathy h3 {
    color: var(--paper);
    margin-bottom: 0.75rem;
}

.empathy p {
    color: rgba(244, 237, 224, 0.75);
}

.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.empathy-num {
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--brass);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.empathy-statement {
    border-top: 1px solid rgba(196, 148, 74, 0.3);
    padding-top: 2rem;
    text-align: center;
}

.empathy-statement p {
    font-family: var(--display);
    font-size: 1.5rem;
    color: var(--paper);
    font-weight: 500;
}

.empathy-statement em {
    color: var(--brass-light);
    font-style: italic;
}

/* ============= SECTION HEADER ============= */

.section-header {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ============= PROCESS ============= */

.process {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.process-steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    counter-reset: step;
}

.step {
    position: relative;
    padding-top: 3.5rem;
}

.step-marker {
    position: absolute;
    top: 0; left: 0;
    width: 56px;
    height: 56px;
    border: 1.5px solid var(--oxblood);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--oxblood);
    background: var(--paper);
}

.step h3 {
    margin-bottom: 0.75rem;
}

/* ============= CERTIFIED PROGRAM ============= */

.certified {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--paper-warm);
    border-top: 1px solid var(--rule-soft);
    border-bottom: 1px solid var(--rule-soft);
}

.certified-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.certified-text h2 {
    margin-bottom: 1.5rem;
}

.certified-lede {
    font-size: 1.08rem;
    color: var(--ink-soft);
    margin-bottom: 1.5rem;
}

.certified-checklist {
    background: var(--paper);
    padding: 2.5rem 2rem;
    border: 1px solid var(--rule);
    position: relative;
}

.certified-checklist::before {
    content: 'CERTIFIED';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--oxblood);
    color: var(--paper);
    padding: 4px 16px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.certified-checklist h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    font-style: italic;
}

.certified-checklist ul {
    list-style: none;
}

.certified-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.65rem 0;
    border-bottom: 1px dashed var(--rule-soft);
    font-size: 0.95rem;
    color: var(--ink-soft);
}

.certified-checklist li:last-child { border-bottom: none; }

.certified-checklist li span {
    color: var(--brass);
    font-weight: 700;
    flex-shrink: 0;
}

/* ============= AIRCRAFT WE BUY ============= */

.aircraft-list {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.aircraft-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.25rem 3rem;
    margin-bottom: 3rem;
}

.aircraft-cat {
    border-left: 2px solid var(--oxblood);
    padding: 0.25rem 0 0.5rem 1.75rem;
    position: relative;
}

.aircraft-cat-icon {
    color: var(--oxblood);
    opacity: 0.85;
    margin-bottom: 0.85rem;
    display: block;
    height: 36px;
    width: auto;
}

.aircraft-cat h3 {
    margin-bottom: 0.75rem;
    font-style: italic;
}

.aircraft-cat p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 720px) {
    .aircraft-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

/* ============= PARTS / ENGINES CALLOUT ============= */

.parts-callout {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem 2.25rem;
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    border-left: 4px solid var(--brass);
    box-shadow:
        0 1px 0 rgba(255,255,255,0.6) inset,
        0 12px 28px -16px rgba(31, 26, 20, 0.15);
}

.parts-callout-icon {
    color: var(--oxblood);
    flex-shrink: 0;
    width: 80px;
    height: 60px;
}

.parts-callout-icon svg {
    width: 100%;
    height: 100%;
}

.parts-callout-content h3 {
    font-style: italic;
    margin: 0 0 0.85rem;
    font-size: 1.4rem;
}

.parts-callout-content p {
    margin: 0 0 0.75rem;
    font-size: 0.97rem;
    line-height: 1.65;
}

.parts-callout-pledge {
    color: var(--ink-mute);
    font-style: italic;
}

@media (max-width: 720px) {
    .parts-callout {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.5rem 1.25rem;
    }
    .parts-callout-icon {
        width: 64px;
        height: 48px;
    }
}

/* ============= BROKER VS LEGACY CERTIFIED COMPARISON ============= */

.vs-broker {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--paper-warm);
}

.vs-broker .section-sub {
    color: var(--ink-mute);
    font-size: 1.05rem;
    margin-top: 0.5rem;
}

.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.75rem;
}

.vs-col {
    padding: 2rem 1.75rem;
    border: 1px solid var(--rule);
    background: var(--paper);
}

.vs-col h3 {
    font-style: italic;
    font-size: 1.3rem;
    margin: 0 0 1.25rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--rule);
}

.vs-col-us {
    background: var(--paper-warm);
    border-color: var(--oxblood);
    box-shadow:
        0 12px 28px -16px rgba(31, 26, 20, 0.15);
}

.vs-col-us h3 {
    color: var(--oxblood);
    border-bottom-color: var(--oxblood);
}

.vs-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-col li {
    padding: 0.6rem 0;
    border-bottom: 1px dashed var(--rule);
    font-size: 0.93rem;
    line-height: 1.5;
}

.vs-col li:last-child {
    border-bottom: none;
}

.vs-col strong {
    color: var(--ink);
    font-weight: 600;
}

.vs-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--ink-mute);
    font-size: 0.95rem;
}

@media (max-width: 720px) {
    .vs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.aircraft-note {
    text-align: center;
    font-style: italic;
    color: var(--ink-mute);
}

/* ============= ABOUT ============= */

.about {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--hangar);
    color: var(--paper);
}

.about h2 {
    color: var(--paper);
    margin-bottom: 1.5rem;
}

.about-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about p {
    color: rgba(244, 237, 224, 0.85);
    font-size: 1.08rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    text-align: left;
}

/* ============= FAQ ============= */

.faq {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-list details {
    border-bottom: 1px solid var(--rule);
    padding: 1.4rem 0;
}

.faq-list details:first-child {
    border-top: 1px solid var(--rule);
}

.faq-list summary {
    font-family: var(--display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.2s ease;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
    content: '+';
    color: var(--oxblood);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-list details[open] summary::after {
    transform: rotate(45deg);
}

.faq-list summary:hover { color: var(--oxblood); }

.faq-list details p {
    margin-top: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 65ch;
}

/* ============= CONTACT ============= */

.contact {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--paper-warm);
    border-top: 1px solid var(--rule-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: clamp(2rem, 5vw, 4rem);
    align-items: start;
}

.contact-text h2 { margin-bottom: 1.25rem; }

.contact-direct {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ink);
}

.contact-phone:hover { color: var(--oxblood); }

.contact-email {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

/* Form */
.lead-form {
    background: var(--paper);
    border: 1px solid var(--rule);
    padding: 2.25rem;
    box-shadow: 0 4px 24px -8px rgba(31,26,20,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.lead-form label {
    display: block;
    margin-bottom: 1rem;
}

.lead-form label span {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-mute);
    margin-bottom: 0.4rem;
}

.lead-form label em {
    font-style: normal;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    color: var(--ink-mute);
    opacity: 0.7;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 0.8rem 0.9rem;
    font-family: var(--body);
    font-size: 1rem;
    color: var(--ink);
    background: var(--paper-warm);
    border: 1px solid var(--rule);
    border-radius: 2px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
    outline: none;
    border-color: var(--oxblood);
    background: var(--paper);
}

.lead-form textarea {
    resize: vertical;
    font-family: var(--body);
}

.form-fineprint {
    font-size: 0.82rem;
    color: var(--ink-mute);
    text-align: center;
    margin-top: 1rem;
    font-style: italic;
}

/* ============= FOOTER ============= */

.site-footer {
    background: var(--hangar);
    color: rgba(244, 237, 224, 0.7);
    padding: 3rem 0 2rem;
    border-top: 4px solid var(--oxblood);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-name {
    font-family: var(--display);
    font-size: 1.2rem;
    color: var(--paper);
    font-weight: 500;
}

.footer-loc {
    font-size: 0.85rem;
    color: rgba(244, 237, 224, 0.5);
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(244, 237, 224, 0.7);
    font-size: 0.92rem;
}

.footer-links a:hover { color: var(--brass-light); }

.footer-copy {
    width: 100%;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(244, 237, 224, 0.4);
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(196, 148, 74, 0.15);
    font-style: italic;
}

/* ============= RESPONSIVE ============= */

@media (max-width: 880px) {
    .hero-inner,
    .certified-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hangar-card {
        max-width: 420px;
        margin: 0 auto;
    }

    .header-nav {
        gap: 1.25rem;
    }

    .header-nav a:not(.nav-cta) {
        display: none;
    }

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

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn { justify-content: center; }

    .brand-tagline { display: none; }

    .lead-form { padding: 1.5rem; }
}

/* ============= REVEAL ANIMATIONS ============= */

@media (prefers-reduced-motion: no-preference) {
    .hero-text > *,
    .hangar-card,
    .empathy-item,
    .step,
    .aircraft-cat {
        animation: rise 0.7s ease-out backwards;
    }

    .hero-text .eyebrow { animation-delay: 0.05s; }
    .hero-text h1 { animation-delay: 0.15s; }
    .hero-text .lede { animation-delay: 0.25s; }
    .hero-text .hero-actions { animation-delay: 0.35s; }
    .hero-text .micro-trust { animation-delay: 0.45s; }
    .hangar-card { animation-delay: 0.4s; }

    @keyframes rise {
        from {
            opacity: 0;
            transform: translateY(18px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}
