/* ============================================================
   MyOnlineFlightFinder — Call-to-book landing page
   Midnight cabin blue · ivory paper · brass
   Fraunces / Instrument Sans / IBM Plex Mono
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
    --midnight: #101C2C;
    --midnight-deep: #0B141F;
    --ivory: #F6F5F1;
    --ivory-dim: #EDEBE4;
    --ink: #1B2634;
    --ink-soft: #4C5866;
    --mist: #8C97A5;
    --brass: #A88B5C;
    --brass-bright: #C4A876;
    --hairline: rgba(27, 38, 52, 0.14);
    --hairline-light: rgba(246, 245, 241, 0.16);

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Instrument Sans', system-ui, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

    --shell: 66rem;
    --radius: 4px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--ivory);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible {
    outline: 2px solid var(--brass);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* ---------- SHELL ---------- */
.shell {
    max-width: var(--shell);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- SHARED TYPE ---------- */
.mono-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass);
}

h1, h2 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.08;
}

/* ============================================================
   DISCLOSURE BAR
   ============================================================ */
.disclosure {
    background: var(--midnight-deep);
    color: var(--mist);
}

.disclosure p {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.6rem 1rem;
    line-height: 1.5;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: var(--midnight);
    border-bottom: 1px solid var(--hairline-light);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.wordmark {
    display: flex;
    align-items: center;
}

/* Brand logo — light (brass) art on transparent, sits on the
   midnight header and footer as-is. */
.logo-img {
    height: 1.85rem;
    width: auto;
    display: block;
}

.logo-img-footer {
    height: 1.6rem;
    margin-bottom: 1rem;
}

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.25;
    transition: opacity 0.2s ease;
}
.header-phone:hover { opacity: 0.8; }

.header-phone-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mist);
}

.header-phone-number {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ivory);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background:
        linear-gradient(rgba(11, 20, 31, 0.84), rgba(16, 28, 44, 0.92)),
        url('herobg_desktop.png') center center / cover no-repeat,
        var(--midnight);
    color: var(--ivory);
    padding: 4.5rem 0 4.75rem;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 21rem;
    gap: 4rem;
    align-items: center;
}

/* Wide screens: let the hero + header breathe past the body measure */
@media (min-width: 1500px) {
    .hero .shell,
    .site-header .shell { max-width: 78rem; }
    .hero-layout {
        grid-template-columns: minmax(0, 1fr) 24rem;
        gap: 5.5rem;
    }
    .hero { padding: 5.25rem 0 5.5rem; }
}

.hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.15rem;
    max-width: 36rem;
}

.hero h1 {
    font-size: clamp(2.1rem, 3vw, 2.75rem);
    line-height: 1.12;
    max-width: 18ch;
    text-wrap: balance;
    color: var(--ivory);
}

.hero-lede {
    font-size: 1.02rem;
    line-height: 1.7;
    color: #C9D0D8;
    max-width: 33rem;
}

/* Hero trust row — full width, spans both hero columns, sits below them */
.trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem 2rem;
    width: 100%;
    margin-top: 3.25rem;
    padding-top: 1.6rem;
    border-top: 1px solid var(--hairline-light);
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.trust-k {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass);
}

.trust-v {
    font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--ivory);
    line-height: 1.35;
}

.hero-direct {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mist);
    margin-top: 0.9rem;
}
.hero-direct a {
    color: var(--ivory);
    border-bottom: 1px solid var(--hairline-light);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.hero-direct a:hover {
    color: var(--brass-bright);
    border-color: var(--brass-bright);
}

/* Hero — specialist on the line */
.hero-agent {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
}

.hero-agent-photo {
    position: relative;
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    border: 1px solid var(--hairline-light);
    box-shadow: 0 24px 48px -18px rgba(0, 0, 0, 0.5);
}
.hero-agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 16%;
    border-radius: 50%;
}
.hero-agent-photo .live-dot {
    right: 22px;
    bottom: 22px;
    width: 1.6rem;
    height: 1.6rem;
    border-width: 4px;
    z-index: 2;
    box-shadow: 0 0 0 0 rgba(63, 191, 106, 0.6), 0 4px 12px rgba(0, 0, 0, 0.35);
}

.hero-agent-status {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    background: rgba(63, 191, 106, 0.14);
    border: 1px solid rgba(63, 191, 106, 0.45);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ivory);
}

.hero-agent-ping {
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: #3FBF6A;
    flex-shrink: 0;
    animation: live-pulse 2.4s ease-out infinite;
}

.btn-call-lg {
    align-self: stretch;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.9rem 1.25rem;
}
.btn-call-lg .btn-call-num { font-size: 1.05rem; }

.hero-agent-note {
    font-size: 0.8rem;
    color: var(--mist);
    line-height: 1.55;
    max-width: 18rem;
}

.hero-ticket-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    padding-top: 2.5rem;
}

.ticket-cap {
    font-size: 0.82rem;
    color: var(--mist);
    line-height: 1.6;
}

/* ============================================================
   SIGNATURE — BOARDING-PASS TICKET
   ============================================================ */
.ticket {
    display: flex;
    background: var(--ivory);
    color: var(--ink);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    max-width: 30rem;
    width: 100%;
}
.ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 32px 56px -16px rgba(0, 0, 0, 0.5);
}

.ticket-main {
    flex: 1;
    padding: 1.75rem 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
}

.ticket-row-top {
    display: flex;
    gap: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--hairline);
}

.ticket-field { display: flex; flex-direction: column; gap: 0.15rem; }

.ticket-label {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.ticket-value {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--ink);
}

.ticket-number { display: flex; flex-direction: column; gap: 0.2rem; }
.ticket-number-solo { padding: 0.25rem 0; }

.ticket-phone {
    font-family: var(--font-mono);
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink);
    white-space: nowrap;
}

/* Perforated stub */
.ticket-stub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.1rem;
    background: var(--brass);
    color: var(--midnight-deep);
    border-left: 2px dashed rgba(16, 28, 44, 0.35);
    position: relative;
    flex-shrink: 0;
}

/* Perforation notches */
.ticket-stub::before,
.ticket-stub::after {
    content: '';
    position: absolute;
    left: -8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--midnight);
}
.ticket-stub::before { top: -7px; }
.ticket-stub::after { bottom: -7px; }

.ticket-stub-text {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
}

.ticket-stub-arrow {
    font-size: 1rem;
    font-weight: 600;
}

/* ============================================================
   SECTION HEAD (shared)
   ============================================================ */
.section-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3.75rem;
    max-width: 36rem;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.6rem);
    color: var(--ink);
}

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits { padding: 6.5rem 0; }

.b-rows {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--hairline);
}

.b-row {
    display: grid;
    grid-template-columns: 7rem 1fr;
    gap: 2rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid var(--hairline);
}

.b-code {
    font-family: var(--font-mono);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: var(--brass);
    padding-top: 0.3rem;
}

.b-body h3 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.b-body p {
    font-size: 0.96rem;
    color: var(--ink-soft);
    max-width: 38rem;
    line-height: 1.7;
}

/* ============================================================
   PROCESS — ITINERARY STRIP
   ============================================================ */
.process {
    background: var(--ivory-dim);
    padding: 6.5rem 0;
}

.itinerary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
}

.itinerary::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 6px;
    right: 6px;
    height: 1px;
    background: var(--hairline);
}

.leg {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}

.leg-marker {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 2px solid var(--brass);
    background: var(--ivory-dim);
    position: relative;
    z-index: 1;
    margin-bottom: 0.75rem;
}

.leg-marker-end { background: var(--brass); }

.leg-time {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass);
}

.leg h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
}

.leg p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.65;
}

/* ============================================================
   ASSURANCE BAND (reversed)
   ============================================================ */
.assurance {
    background: var(--midnight);
    color: var(--ivory);
    padding: 5rem 0;
}

.assurance .mono-eyebrow { color: var(--brass-bright); }

.a-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--hairline-light);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 2rem;
}

.a-cell {
    padding: 2rem 1.75rem;
    border-right: 1px solid var(--hairline-light);
}
.a-cell:last-child { border-right: none; }

.a-cell h3 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.a-cell p {
    font-size: 0.85rem;
    color: var(--mist);
    line-height: 1.65;
}

/* ============================================================
   PREP
   ============================================================ */
.prep { padding: 6.5rem 0; }

.prep-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4.5rem;
    align-items: start;
}

.prep-intro {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    position: sticky;
    top: 6rem;
}

.prep-intro h2 {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    color: var(--ink);
}

.prep-intro p {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

.prep-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--hairline);
}

.prep-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid var(--hairline);
}

.prep-item dt {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.4rem;
}

.prep-item dd {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
    background: var(--ivory-dim);
    padding: 6.5rem 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--hairline);
}

.faq-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.85rem 0;
    border-bottom: 1px solid var(--hairline);
}

.faq-item h3 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    font-weight: 500;
    color: var(--ink);
}

.faq-item p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 44rem;
}

/* ============================================================
   CLOSING
   ============================================================ */
.closing {
    background: var(--midnight);
    color: var(--ivory);
    padding: 6.5rem 0;
}

.closing-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4rem;
    align-items: center;
}

.closing-copy { display: flex; flex-direction: column; gap: 1.15rem; }

.closing-copy h2 {
    font-size: clamp(2rem, 4.2vw, 2.9rem);
    color: var(--ivory);
}

.closing-lede {
    font-size: 1rem;
    color: var(--mist);
    max-width: 26rem;
    line-height: 1.75;
}

.closing-fine {
    font-family: var(--font-mono);
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brass-bright);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--midnight-deep);
    color: var(--mist);
    padding: 4rem 0 0;
}

.footer-row {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--hairline-light);
}

.wordmark-code-footer { display: inline-block; margin-bottom: 1rem; }

.footer-brand p {
    font-size: 0.82rem;
    line-height: 1.7;
    max-width: 30rem;
    margin-bottom: 0.75rem;
}

/* Full-width legal disclaimer */
.footer-disclaimer {
    padding: 2.25rem 0 2.5rem;
    border-bottom: 1px solid var(--hairline-light);
}
.footer-disclaimer p {
    font-size: 0.72rem;
    line-height: 1.75;
    color: var(--mist);
    opacity: 0.82;
    max-width: none;
    margin-bottom: 0.9rem;
}
.footer-disclaimer p:last-child { margin-bottom: 0; }

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: flex-start;
}
.footer-contact .mono-eyebrow { color: var(--brass-bright); }

.footer-phone {
    font-family: var(--font-mono);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ivory);
    transition: color 0.2s ease;
}
.footer-phone:hover { color: var(--brass-bright); }

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 1.5rem;
    font-size: 0.78rem;
    opacity: 0.6;
}

.footer-legal-links { display: flex; gap: 1.75rem; }
.footer-legal-links a:hover { color: var(--ivory); }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.callbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(11, 20, 31, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--hairline-light);
}

.callbar-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    background: var(--brass);
    color: var(--midnight-deep);
    border-radius: 6px;
    padding: 0.7rem;
    text-align: center;
}

.callbar-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.callbar-number {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .hero-layout,
    .closing-layout {
        grid-template-columns: 1fr;
        gap: 2.75rem;
    }
    .hero-copy { max-width: 40rem; }
    .hero h1 { max-width: 20ch; }
    .hero-ticket-wrap { padding-top: 0; max-width: 26rem; }
    .hero-agent { padding-top: 0.5rem; }
    .btn-call-lg { align-self: center; }

    .a-grid { grid-template-columns: 1fr; }
    .a-cell { border-right: none; border-bottom: 1px solid var(--hairline-light); }
    .a-cell:last-child { border-bottom: none; }

    .prep-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .prep-intro { position: static; }
}

@media (max-width: 720px) {
    .callbar { display: block; }

    .hero {
        background:
            linear-gradient(rgba(11, 20, 31, 0.86), rgba(16, 28, 44, 0.94)),
            url('herobg_mobile.png') center center / cover no-repeat,
            var(--midnight);
        padding: 3.75rem 0 4.5rem;
    }
    .benefits, .process, .assurance, .prep, .faq, .closing { padding: 4rem 0; }

    .header-phone-label { display: none; }
    .wordmark-name { display: none; }

    .b-row {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 1.85rem 0;
    }
    .b-code { padding-top: 0; }

    .trust-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem 1.5rem;
        margin-top: 2.5rem;
    }

    .hero-agent-photo { width: 12rem; height: 12rem; }
    .hero-agent-photo .live-dot { right: 14px; bottom: 14px; }

    .itinerary {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .itinerary::before {
        top: 6px;
        bottom: 6px;
        left: 5px;
        right: auto;
        width: 1px;
        height: auto;
    }
    .leg { padding-left: 2rem; }
    .leg-marker { position: absolute; left: 0; top: 3px; margin: 0; }

    .ticket-row-top { gap: 1.25rem; }

    .footer-row { grid-template-columns: 1fr; gap: 2rem; }
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .site-footer { padding-bottom: 6rem; }
}

@media (max-width: 400px) {
    .ticket-phone { font-size: 1.2rem; }
    .ticket-main { padding: 1.4rem 1.25rem 1.25rem; }
}

/* ============================================================
   HERO URGENCY LINE
   ============================================================ */
.hero-urgent {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--brass-bright);
    border-left: 2px solid var(--brass);
    padding-left: 0.85rem;
    margin-top: 0.15rem;
}

/* ============================================================
   LIVE STATUS PILL (specialist on the line)
   ============================================================ */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.45rem 1rem 0.45rem 0.45rem;
    border: 1px solid var(--hairline-light);
    border-radius: 999px;
    background: rgba(246, 245, 241, 0.05);
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.live-status:hover {
    border-color: var(--brass);
    background: rgba(196, 168, 118, 0.1);
    transform: translateY(-1px);
}

.live-avatar {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid var(--hairline-light);
}
.live-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 18%;
    border-radius: 50%;
}
.live-avatar .live-dot { right: 2px; bottom: 2px; }

.live-dot {
    position: absolute;
    right: 1px;
    bottom: 1px;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: #3FBF6A;
    border: 2px solid var(--midnight);
    animation: live-pulse 2.4s ease-out infinite;
}
@keyframes live-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(63, 191, 106, 0.55); }
    70%  { box-shadow: 0 0 0 9px rgba(63, 191, 106, 0); }
    100% { box-shadow: 0 0 0 0 rgba(63, 191, 106, 0); }
}

.live-text { display: flex; flex-direction: column; gap: 1px; }
.live-k {
    font-family: var(--font-mono);
    font-size: 0.56rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brass-bright);
}
.live-v {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ivory);
    line-height: 1.3;
}

/* ============================================================
   MID-PAGE CTA BANDS
   ============================================================ */
.mid-cta {
    background: var(--midnight);
    color: var(--ivory);
    padding: 3.25rem 0;
    border-top: 1px solid var(--hairline-light);
    border-bottom: 1px solid var(--hairline-light);
}

.mid-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.mid-cta-lead {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 33rem;
}

.mid-cta-line {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.32;
    color: var(--ivory);
}

.btn-call {
    display: inline-flex;
    align-items: baseline;
    gap: 0.6rem;
    align-self: flex-start;
    background: var(--brass);
    color: var(--midnight-deep);
    font-family: var(--font-mono);
    font-weight: 600;
    padding: 0.7rem 1.15rem;
    border-radius: var(--radius);
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-call:hover { background: var(--brass-bright); transform: translateY(-1px); }
.btn-call-text {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.btn-call-num { font-size: 0.95rem; letter-spacing: 0.02em; }

/* ============================================================
   TIPS — "FROM THE DESK"
   ============================================================ */
.tips { padding: 6.5rem 0; }

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    background: var(--hairline);
    border: 1px solid var(--hairline);
}

.tip-card {
    background: var(--ivory);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.tip-num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: var(--brass);
}

.tip-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--ink);
}

.tip-card p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.7;
}

/* ============================================================
   RESPONSIVE — new components
   ============================================================ */
@media (max-width: 1024px) {
    .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .mid-cta { padding: 2.75rem 0; }
    .mid-cta-inner { flex-direction: column; align-items: flex-start; gap: 1.75rem; }
    .mid-cta-line { font-size: 1.15rem; }

    .tips { padding: 4rem 0; }
    .tips-grid { grid-template-columns: 1fr; }

    .live-status { width: 100%; }
}
