
:root {
    --navy: #17263f;
    --navy-2: #203858;
    --coral: #e99179;
    --coral-dark: #bc654f;
    --cream: #fff9f5;
    --sky: #e8f3f8;
    --white: #ffffff;
    --ink: #17263f;
    --muted: #5c6877;
    --line: #dce2e8;
    --sage: #69848a;
    --success: #256b4e;
    --danger: #9b3f3f;
    --shadow: 0 22px 70px rgba(23, 38, 63, .12);
    --radius: 24px;
    --container: 1180px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    left: 12px;
    top: -60px;
    z-index: 2000;
    padding: 10px 14px;
    background: var(--navy);
    color: white;
    border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.sr-only {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0);
    white-space: nowrap; border: 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(23, 38, 63, .08);
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand img { flex: 0 0 auto; }
.brand span { display: flex; flex-direction: column; line-height: 1.2; }
.brand strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    letter-spacing: -.02em;
}
.brand small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}
.primary-nav > a:not(.button) {
    text-decoration: none;
    font-weight: 700;
    font-size: .91rem;
}
.primary-nav > a:not(.button):hover { color: var(--coral-dark); }

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--cream);
    padding: 10px;
}
.nav-toggle span:not(.sr-only) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--navy);
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    min-height: 52px;
    padding: 13px 22px;
    border: 1px solid var(--coral);
    border-radius: 999px;
    color: var(--navy);
    background: var(--coral);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(233, 145, 121, .28);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover {
    transform: translateY(-2px);
    background: #f2a38b;
    box-shadow: 0 15px 32px rgba(233, 145, 121, .35);
}
.button-small { min-height: 42px; padding: 9px 17px; font-size: .9rem; }
.button-full { width: 100%; border: 0; }
.button-ghost {
    color: var(--navy);
    background: rgba(255,255,255,.7);
    border-color: rgba(23,38,63,.16);
    box-shadow: none;
}
.button-ghost:hover { background: var(--white); }
.button-ghost-dark {
    color: var(--navy);
    background: transparent;
    border-color: rgba(23,38,63,.24);
    box-shadow: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 730px;
    display: grid;
    align-items: center;
    background:
        radial-gradient(circle at 17% 18%, rgba(255,255,255,.9) 0 3%, transparent 28%),
        linear-gradient(135deg, #fff9f5 0%, #f8ede8 41%, #dfeef4 100%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: auto -10% -220px -10%;
    height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
}
.hero-sky { position: absolute; inset: 0; pointer-events: none; }
.cloud {
    position: absolute;
    width: 130px;
    height: 34px;
    border-radius: 99px;
    background: rgba(255,255,255,.48);
    filter: blur(.2px);
}
.cloud::before, .cloud::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: inherit;
}
.cloud::before { width: 52px; height: 52px; left: 22px; bottom: 5px; }
.cloud::after { width: 70px; height: 70px; right: 20px; bottom: 1px; }
.cloud-one { left: 4%; top: 21%; }
.cloud-two { right: 1%; top: 11%; transform: scale(.72); }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: .92fr 1.08fr;
    align-items: center;
    gap: 70px;
    padding-top: 75px;
    padding-bottom: 95px;
}
.eyebrow {
    margin: 0 0 15px;
    color: var(--coral-dark);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.hero h1, .section-heading h2, .about-copy h2, .contact-copy h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -.045em;
}
.hero h1 { max-width: 680px; font-size: clamp(3.3rem, 7vw, 6.2rem); }
.hero h1 em { color: var(--coral-dark); font-weight: inherit; }
.hero-lead {
    max-width: 660px;
    margin: 26px 0 30px;
    color: #435265;
    font-size: clamp(1.06rem, 1.8vw, 1.28rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 24px;
    margin-top: 34px;
}
.trust-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: .8rem;
}
.trust-row strong {
    display: inline-grid;
    place-items: center;
    min-width: 44px;
    height: 28px;
    padding: 0 8px;
    border-radius: 99px;
    background: rgba(23,38,63,.09);
    color: var(--navy);
    font-size: .72rem;
}

.hero-visual { position: relative; }
.plane-scene {
    width: 100%;
    border-radius: 38px;
    box-shadow: var(--shadow);
}
.flight-card {
    position: absolute;
    z-index: 3;
    left: -48px;
    bottom: 38px;
    width: 275px;
    padding: 22px 24px;
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 20px;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(23,38,63,.15);
}
.flight-card span, .flight-card strong { display: block; }
.flight-card-label {
    color: var(--coral-dark);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .15em;
}
.flight-card strong {
    margin: 5px 0 7px;
    font-family: Georgia, serif;
    font-size: 1.35rem;
    line-height: 1.2;
}
.flight-card > span:last-child { color: var(--muted); font-size: .84rem; line-height: 1.5; }

.proof-strip {
    position: relative;
    z-index: 5;
    background: var(--navy);
    color: var(--white);
}
.proof-grid {
    min-height: 118px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.proof-grid div {
    display: grid;
    align-content: center;
    padding: 22px 28px;
    border-right: 1px solid rgba(255,255,255,.13);
}
.proof-grid div:first-child { border-left: 1px solid rgba(255,255,255,.13); }
.proof-grid strong { font-family: Georgia, serif; font-size: 1.18rem; }
.proof-grid span { margin-top: 2px; color: rgba(255,255,255,.68); font-size: .78rem; }

.section { padding: 110px 0; }
.section-tint { background: var(--cream); }
.section-dark { color: white; background: var(--navy); }

.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .about-copy h2, .contact-copy h2 {
    font-size: clamp(2.45rem, 4.4vw, 4.25rem);
}
.section-heading > p:last-child, .about-copy > p, .contact-copy > p {
    color: var(--muted);
    font-size: 1.05rem;
}
.section-heading-light p:last-child { color: rgba(255,255,255,.68); }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-card {
    display: flex;
    flex-direction: column;
    min-height: 340px;
    padding: 29px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 8px 35px rgba(23,38,63,.05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(233,145,121,.6);
    box-shadow: var(--shadow);
}
.service-icon {
    width: 49px;
    height: 49px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--sky);
    color: var(--navy);
    font-weight: 900;
}
.service-card h3 {
    margin: 28px 0 12px;
    font-family: Georgia, serif;
    font-size: 1.45rem;
    line-height: 1.15;
}
.service-card p { margin: 0 0 26px; color: var(--muted); font-size: .94rem; }
.service-card a {
    margin-top: auto;
    color: var(--coral-dark);
    font-weight: 850;
    text-decoration: none;
}

.process-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}
.text-link {
    color: var(--coral-dark);
    font-weight: 850;
    text-decoration: none;
}
.steps { margin: 0; padding: 0; list-style: none; }
.steps li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    padding: 0 0 29px;
    position: relative;
}
.steps li:not(:last-child)::before {
    content: "";
    position: absolute;
    left: 27px;
    top: 55px;
    width: 2px;
    height: calc(100% - 38px);
    background: #e3d8d1;
}
.steps li > span {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    font-weight: 900;
}
.steps strong { display: block; margin-top: 3px; font-family: Georgia, serif; font-size: 1.26rem; }
.steps p { margin: 6px 0 0; color: var(--muted); }

.social-section { overflow: hidden; background: #f5f8fa; }
.social-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}
.social-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: 0 10px 35px rgba(23,38,63,.07);
}
.embed-shell {
    position: relative;
    height: 610px;
    overflow: hidden;
    background:
        linear-gradient(120deg, #eef2f5 25%, #f8fafb 37%, #eef2f5 63%);
    background-size: 400% 100%;
    animation: shimmer 1.8s infinite linear;
}
.embed-shell iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    background: white;
}
@keyframes shimmer {
    0% { background-position: 100% 0; }
    100% { background-position: 0 0; }
}
.facebook-feature {
    min-height: 610px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    color: white;
    background:
        linear-gradient(180deg, rgba(23,38,63,.04), rgba(23,38,63,.96)),
        radial-gradient(circle at 70% 15%, rgba(233,145,121,.9), transparent 30%),
        linear-gradient(135deg, #7894a2, #203858);
}
.social-kicker {
    color: #ffd2c5;
    font-weight: 900;
    font-size: .74rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.facebook-feature h3 {
    margin: 10px 0 13px;
    font-family: Georgia, serif;
    font-size: 2rem;
    line-height: 1.1;
}
.facebook-feature p { color: rgba(255,255,255,.75); }
.facebook-feature .button { margin-top: 16px; align-self: flex-start; }

.social-follow {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: white;
}
.social-follow p { margin: 0; font-weight: 750; }

.about-grid {
    display: grid;
    grid-template-columns: .72fr 1.28fr;
    gap: 95px;
    align-items: center;
}
.about-portrait {
    position: relative;
    min-height: 480px;
    display: grid;
    place-items: center;
    border-radius: 42% 58% 45% 55% / 58% 40% 60% 42%;
    background: linear-gradient(145deg, var(--sky), #f9e6df);
}
.portrait-ring {
    position: relative;
    width: 265px;
    height: 265px;
    display: grid;
    place-items: center;
    border: 15px solid rgba(255,255,255,.74);
    border-radius: 50%;
    background: linear-gradient(145deg, var(--navy-2), var(--sage));
    box-shadow: var(--shadow);
}
.portrait-ring svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.portrait-initials {
    position: relative;
    z-index: 1;
    color: white;
    font-family: Georgia, serif;
    font-size: 5.3rem;
    letter-spacing: -.08em;
}
.credential-badge {
    position: absolute;
    right: 6%;
    bottom: 12%;
    display: flex;
    flex-direction: column;
    min-width: 170px;
    padding: 18px 22px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow);
}
.credential-badge span { color: var(--coral-dark); font-size: .7rem; font-weight: 900; letter-spacing: .15em; }
.credential-badge strong { font-family: Georgia, serif; font-size: 1.38rem; }
.credential-badge small { color: var(--muted); }

.about-copy .lead { color: var(--navy); font-size: 1.18rem; font-weight: 720; }
.about-values {
    display: grid;
    gap: 13px;
    margin: 28px 0 32px;
}
.about-values div {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 18px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--line);
}
.about-values strong { font-family: Georgia, serif; }
.about-values span { color: var(--muted); font-size: .9rem; }
.about-links { display: flex; flex-wrap: wrap; gap: 12px; }

.expectations .section-heading { margin-bottom: 42px; }
.expectation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.expectation-grid article {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    background: rgba(255,255,255,.045);
}
.expectation-grid article > span { color: var(--coral); font-size: 1.35rem; }
.expectation-grid h3 { margin: 20px 0 10px; font-family: Georgia, serif; font-size: 1.4rem; }
.expectation-grid p { color: rgba(255,255,255,.66); }

.faq-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 80px;
}
.accordion { display: grid; gap: 12px; }
.accordion details {
    border: 1px solid var(--line);
    border-radius: 15px;
    background: white;
    padding: 0 20px;
}
.accordion summary {
    position: relative;
    padding: 20px 38px 20px 0;
    cursor: pointer;
    list-style: none;
    font-weight: 850;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
    content: "+";
    position: absolute;
    top: 16px;
    right: 0;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--cream);
    color: var(--coral-dark);
    font-size: 1.25rem;
}
.accordion details[open] summary::after { content: "−"; }
.accordion details p { margin: 0; padding: 0 35px 22px 0; color: var(--muted); }

.contact-section {
    background:
        radial-gradient(circle at 7% 22%, rgba(233,145,121,.15), transparent 26%),
        linear-gradient(135deg, #fff9f5, #e7f1f5);
}
.contact-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 85px;
    align-items: start;
}
.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 35px;
}
.contact-methods a {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    border: 1px solid rgba(23,38,63,.1);
    border-radius: 14px;
    background: rgba(255,255,255,.68);
    text-decoration: none;
}
.contact-methods a:hover { background: white; }
.contact-methods span { color: var(--coral-dark); font-size: .7rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.contact-methods strong { margin-top: 3px; overflow-wrap: anywhere; }

.contact-form {
    padding: 36px;
    border: 1px solid rgba(23,38,63,.1);
    border-radius: var(--radius);
    background: white;
    box-shadow: var(--shadow);
}
.contact-form label > span, .contact-form legend {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
    font-size: .8rem;
    font-weight: 850;
}
.contact-form label { display: block; margin-bottom: 17px; }
.contact-form fieldset { margin: 0 0 20px; padding: 0; border: 0; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    border: 1px solid #ccd5dc;
    border-radius: 11px;
    background: #fcfdfe;
    color: var(--navy);
    padding: 13px 14px;
    outline: 0;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    border-color: var(--coral-dark);
    box-shadow: 0 0 0 4px rgba(233,145,121,.17);
}
.contact-form textarea { resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.radio-row { display: flex; gap: 10px; }
.radio-label { margin: 0 !important; }
.radio-label input { position: absolute; opacity: 0; pointer-events: none; }
.radio-label span {
    display: inline-flex !important;
    min-width: 84px;
    justify-content: center;
    margin: 0 !important;
    padding: 9px 12px;
    border: 1px solid #ccd5dc;
    border-radius: 99px;
    cursor: pointer;
}
.radio-label input:checked + span {
    border-color: var(--navy);
    color: white;
    background: var(--navy);
}
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .75rem; text-align: center; }
.form-alert { margin-bottom: 20px; padding: 13px 15px; border-radius: 10px; font-weight: 750; }
.form-alert-success { color: var(--success); background: #e9f6ef; }
.form-alert-error { color: var(--danger); background: #fff0f0; }
.honeypot { position: absolute; left: -10000px; }

.site-footer {
    padding: 70px 0 24px;
    color: white;
    background: #101c2f;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr .6fr .8fr;
    gap: 70px;
}
.footer-brand small { color: rgba(255,255,255,.58); }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-grid p { max-width: 420px; color: rgba(255,255,255,.62); }
.footer-grid > div > strong { margin-bottom: 5px; color: var(--coral); font-size: .75rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid a:not(.brand) { color: rgba(255,255,255,.74); text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.42);
    font-size: .72rem;
}

.mobile-cta { display: none; }

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .embed-shell { animation: none; }
}

@media (max-width: 1080px) {
    .primary-nav { gap: 17px; }
    .hero-grid { gap: 35px; }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .social-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .about-grid { gap: 55px; }
}

@media (max-width: 840px) {
    .nav-toggle { display: block; }
    .primary-nav {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: white;
        box-shadow: var(--shadow);
    }
    .primary-nav.open { display: flex; }
    .primary-nav > a { padding: 13px 14px; }
    .primary-nav .button { margin-top: 6px; }

    .hero { min-height: auto; }
    .hero-grid, .process-grid, .about-grid, .faq-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid { padding-top: 62px; padding-bottom: 75px; }
    .hero-copy { order: 1; }
    .hero-visual { order: 2; max-width: 680px; }
    .flight-card { left: 20px; bottom: 20px; }
    .proof-grid { grid-template-columns: repeat(2, 1fr); }
    .proof-grid div:nth-child(3) { border-left: 1px solid rgba(255,255,255,.13); }
    .process-grid, .faq-grid, .contact-grid { gap: 45px; }
    .about-portrait { min-height: 420px; }
    .expectation-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 35px; }
}

@media (max-width: 600px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .site-header .brand small { display: none; }
    .section { padding: 78px 0; }
    .hero h1 { font-size: clamp(3.15rem, 17vw, 5rem); }
    .hero-actions { display: grid; }
    .hero-actions .button { width: 100%; }
    .trust-row { display: grid; gap: 10px; }
    .flight-card {
        position: relative;
        left: auto;
        bottom: auto;
        width: calc(100% - 24px);
        margin: -75px auto 0;
    }
    .proof-grid { grid-template-columns: 1fr 1fr; }
    .proof-grid div { padding: 18px 13px; }
    .proof-grid strong { font-size: 1rem; }
    .proof-grid span { font-size: .68rem; }
    .service-grid, .social-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 300px; }
    .embed-shell, .facebook-feature { height: 630px; min-height: 630px; }
    .social-follow { align-items: stretch; flex-direction: column; }
    .social-follow .button { width: 100%; }
    .about-values div { grid-template-columns: 1fr; gap: 3px; }
    .about-portrait { min-height: 390px; }
    .portrait-ring { width: 235px; height: 235px; }
    .credential-badge { right: 0; }
    .field-row { grid-template-columns: 1fr; gap: 0; }
    .radio-row { flex-wrap: wrap; }
    .contact-form { padding: 25px 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 9px; padding-bottom: 60px; }
    .mobile-cta {
        position: fixed;
        z-index: 950;
        left: 10px;
        right: 10px;
        bottom: 10px;
        display: grid;
        grid-template-columns: 1fr 1.25fr;
        gap: 8px;
        padding: 8px;
        border: 1px solid rgba(23,38,63,.12);
        border-radius: 999px;
        background: rgba(255,255,255,.94);
        box-shadow: 0 12px 35px rgba(23,38,63,.25);
        backdrop-filter: blur(15px);
    }
    .mobile-cta a {
        display: grid;
        place-items: center;
        min-height: 45px;
        padding: 8px 12px;
        border-radius: 999px;
        font-weight: 850;
        text-decoration: none;
    }
    .mobile-cta a:first-child { background: var(--sky); }
    .mobile-cta a:last-child { background: var(--coral); }
}


/* ===== Growth + safer intake update ===== */

.hero-growth .hero-grid {
    grid-template-columns: .95fr 1.05fr;
}

.intake-note {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: fit-content;
    margin-top: 22px;
    padding: 13px 17px;
    border: 1px solid rgba(23,38,63,.12);
    border-radius: 14px;
    background: rgba(255,255,255,.62);
}
.intake-note strong { font-size: .9rem; }
.intake-note span { color: var(--muted); font-size: .78rem; }

.photo-frame {
    position: relative;
    overflow: hidden;
    min-height: 620px;
    border: 10px solid rgba(255,255,255,.72);
    border-radius: 38px;
    background: linear-gradient(145deg, #dbeaf0, #f6ddd4);
    box-shadow: var(--shadow);
}
.rachel-photo {
    width: 100%;
    height: 620px;
    object-fit: cover;
    object-position: center;
}
.placeholder-photo { object-fit: cover; }
.photo-caption {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: flex;
    flex-direction: column;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,.48);
    border-radius: 15px;
    color: white;
    background: rgba(16,28,47,.80);
    backdrop-filter: blur(12px);
}
.photo-caption span {
    color: #ffd6ca;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.photo-caption strong {
    margin-top: 3px;
    font-family: Georgia, serif;
    font-size: 1.15rem;
}
.hero-growth .flight-card {
    left: -35px;
    bottom: 115px;
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.path-card {
    display: flex;
    flex-direction: column;
    padding: 31px;
    border: 1px solid #e1d9d4;
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 10px 40px rgba(23,38,63,.06);
}
.path-card-featured {
    border-color: rgba(233,145,121,.8);
    box-shadow: 0 20px 55px rgba(233,145,121,.15);
}
.path-label {
    color: var(--coral-dark);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.path-card h3 {
    margin: 14px 0 12px;
    font-family: Georgia, serif;
    font-size: 1.65rem;
    line-height: 1.15;
}
.path-card p { margin: 0; color: var(--muted); }
.path-card ul {
    margin: 20px 0 26px;
    padding-left: 20px;
    color: var(--muted);
    font-size: .9rem;
}
.path-card li + li { margin-top: 8px; }
.path-card .text-link { margin-top: auto; }

.rate-note {
    display: grid;
    grid-template-columns: .42fr 1.58fr;
    gap: 28px;
    margin-top: 26px;
    padding: 23px 27px;
    border-radius: 16px;
    color: white;
    background: var(--navy);
}
.rate-note strong { font-family: Georgia, serif; font-size: 1.15rem; }
.rate-note span { color: rgba(255,255,255,.72); font-size: .9rem; }

.discovery-section {
    background: linear-gradient(140deg, #edf5f7, #fff9f5);
}
.discovery-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 85px;
    align-items: center;
}
.discovery-grid .section-heading { margin-bottom: 0; }
.horizon-card {
    min-height: 440px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 38px;
    border-radius: 34px;
    color: white;
    background:
        radial-gradient(circle at 75% 18%, rgba(233,145,121,.95), transparent 28%),
        linear-gradient(145deg, #708e9b, #17263f);
    box-shadow: var(--shadow);
}
.horizon-card > span {
    color: #ffd2c6;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .16em;
}
.horizon-card > strong {
    max-width: 350px;
    margin-top: 9px;
    font-family: Georgia, serif;
    font-size: 2.35rem;
    line-height: 1.05;
}
.horizon-card svg { margin-top: 30px; }

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.why-grid article {
    min-height: 240px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: white;
}
.why-grid article > span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: var(--navy);
    background: var(--sky);
    font-size: .72rem;
    font-weight: 900;
}
.why-grid h3 {
    margin: 25px 0 9px;
    font-family: Georgia, serif;
    font-size: 1.35rem;
}
.why-grid p { margin: 0; color: var(--muted); }

.screening-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.screening-steps li {
    padding: 25px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    background: rgba(255,255,255,.045);
}
.screening-steps li > span {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    border-radius: 50%;
    color: var(--navy);
    background: var(--coral);
    font-weight: 900;
}
.screening-steps strong {
    display: block;
    margin: 22px 0 9px;
    font-family: Georgia, serif;
    font-size: 1.2rem;
}
.screening-steps p {
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: .9rem;
}
.policy-callout {
    display: grid;
    grid-template-columns: .38fr 1.62fr;
    gap: 25px;
    margin-top: 25px;
    padding: 23px 27px;
    border-left: 4px solid var(--coral);
    border-radius: 12px;
    background: rgba(255,255,255,.08);
}
.policy-callout strong { font-family: Georgia, serif; font-size: 1.2rem; }
.policy-callout p { margin: 0; color: rgba(255,255,255,.7); }

.about-grid-photo {
    grid-template-columns: .82fr 1.18fr;
}
.about-photo-card {
    position: relative;
    min-height: 590px;
}
.about-photo-card > img {
    width: 100%;
    height: 590px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow);
}
.about-photo-card .credential-badge {
    right: -18px;
    bottom: 28px;
}

.contact-grid-intake {
    grid-template-columns: .63fr 1.37fr;
    gap: 65px;
}
.compact-methods a { padding: 16px 18px; }
.privacy-summary {
    margin-top: 23px;
    padding: 20px;
    border-left: 4px solid var(--coral);
    border-radius: 12px;
    background: rgba(255,255,255,.65);
}
.privacy-summary strong { font-family: Georgia, serif; font-size: 1.08rem; }
.privacy-summary p { margin: 7px 0 0; color: var(--muted); font-size: .86rem; }

.intake-form { padding: 32px; }
.form-intro {
    margin-bottom: 25px;
    padding-bottom: 21px;
    border-bottom: 1px solid var(--line);
}
.form-intro span {
    color: var(--coral-dark);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.form-intro strong {
    display: block;
    margin-top: 5px;
    font-family: Georgia, serif;
    font-size: 1.65rem;
}
.form-intro p { margin: 4px 0 0; color: var(--muted); font-size: .82rem; }

.form-section {
    margin: 0 0 28px !important;
    padding: 22px !important;
    border: 1px solid var(--line) !important;
    border-radius: 16px;
    background: #fbfcfd;
}
.form-section > legend {
    width: auto;
    padding: 0 9px;
    color: var(--navy);
    font-family: Georgia, serif;
    font-size: 1.12rem;
    font-weight: 700;
}
.contact-form label > span small {
    margin-left: 4px;
    color: var(--muted);
    font-weight: 600;
}
.field-help {
    display: block;
    margin-top: 7px;
    color: var(--muted);
    font-size: .72rem;
}
.conditional-field { display: none !important; }
.conditional-field.active { display: block !important; }

.acknowledgment-section {
    display: grid;
    gap: 13px;
}
.checkbox-label {
    display: grid !important;
    grid-template-columns: 22px 1fr;
    gap: 11px;
    align-items: start;
    margin: 0 !important;
    padding: 12px;
    border: 1px solid #e3e8ec;
    border-radius: 11px;
    background: white;
}
.checkbox-label input {
    width: 19px !important;
    height: 19px;
    margin-top: 2px;
    accent-color: var(--navy);
}
.checkbox-label > span {
    margin: 0 !important;
    font-size: .79rem !important;
    font-weight: 650 !important;
    line-height: 1.5;
}

.privacy-section {
    padding: 28px 0;
    color: rgba(255,255,255,.72);
    background: #101c2f;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.privacy-inner {
    display: grid;
    grid-template-columns: .3fr 1.7fr;
    gap: 28px;
}
.privacy-inner strong { color: white; font-family: Georgia, serif; }
.privacy-inner p { margin: 0; font-size: .78rem; }

@media (max-width: 1080px) {
    .path-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .screening-steps { grid-template-columns: repeat(2, 1fr); }
    .contact-grid-intake { grid-template-columns: .8fr 1.2fr; gap: 35px; }
}

@media (max-width: 840px) {
    .hero-growth .hero-grid,
    .discovery-grid,
    .about-grid-photo,
    .contact-grid-intake {
        grid-template-columns: 1fr;
    }
    .photo-frame { min-height: 560px; }
    .rachel-photo { height: 560px; }
    .hero-growth .flight-card { left: 20px; bottom: 105px; }
    .discovery-grid { gap: 45px; }
    .rate-note,
    .policy-callout,
    .privacy-inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .about-photo-card { max-width: 620px; min-height: 540px; }
    .about-photo-card > img { height: 540px; }
}

@media (max-width: 600px) {
    .hero-growth .flight-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: -88px;
    }
    .photo-frame { min-height: 500px; }
    .rachel-photo { height: 500px; }
    .why-grid,
    .screening-steps {
        grid-template-columns: 1fr;
    }
    .horizon-card { min-height: 360px; padding: 28px; }
    .horizon-card > strong { font-size: 2rem; }
    .about-photo-card,
    .about-photo-card > img { min-height: 470px; height: 470px; }
    .about-photo-card .credential-badge { right: 0; }
    .intake-form { padding: 20px 14px; }
    .form-section { padding: 16px !important; }
}


/* ===== All-photos brand update ===== */
.photo-frame { background: linear-gradient(145deg, #dbeaf0, #f6ddd4); }
.rachel-photo,
.about-photo-card > img,
.photo-card img {
    display: block;
    width: 100%;
}
.rachel-photo {
    height: 620px;
    object-fit: cover;
    object-position: center 24%;
}
.about-grid-photo-updated {
    grid-template-columns: .92fr 1.08fr;
    gap: 70px;
}
.about-grid-photo-updated .about-photo-card {
    min-height: 640px;
}
.about-grid-photo-updated .about-photo-card > img {
    height: 640px;
    object-fit: cover;
    object-position: center top;
}

.photo-section {
    background: linear-gradient(180deg, #fbfcfd 0%, #f2f7f9 100%);
}
.photo-story-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}
.photo-card {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border-radius: 28px;
    background: #d8e5ea;
    box-shadow: 0 18px 45px rgba(23,38,63,.10);
}
.photo-card img {
    height: 100%;
    object-fit: cover;
}
.photo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12,22,38,0) 18%, rgba(12,22,38,.75) 100%);
}
.photo-card figcaption {
    position: absolute;
    z-index: 2;
    left: 22px;
    right: 22px;
    bottom: 18px;
    color: white;
}
.photo-card figcaption strong {
    display: block;
    font-family: Georgia, serif;
    font-size: 1.3rem;
    line-height: 1.12;
}
.photo-card figcaption span {
    display: block;
    margin-top: 5px;
    color: rgba(255,255,255,.8);
    font-size: .84rem;
    line-height: 1.45;
}
.photo-card-wide {
    grid-column: span 7;
    min-height: 470px;
}
.photo-card-medium {
    grid-column: span 5;
    min-height: 470px;
}
.photo-story-grid .photo-card-medium:nth-child(n+3) {
    grid-column: span 6;
    min-height: 330px;
}

/* Mobile photo rendering fix incorporated */
@media (max-width: 1080px) {
    .photo-story-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .photo-card-wide,
    .photo-card-medium,
    .photo-story-grid .photo-card-medium:nth-child(n+3) {
        grid-column: span 1;
        min-height: 340px;
    }
}

@media (max-width: 840px) {
    .photo-frame,
    .about-photo-card {
        min-height: 0;
        height: auto;
    }

    .hero-growth .hero-grid,
    .about-grid-photo-updated {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .rachel-photo,
    .about-grid-photo-updated .about-photo-card > img {
        width: 100%;
        height: auto;
        min-height: 0;
        max-height: none;
        object-fit: contain;
        object-position: center top;
        background: #eaf1f4;
    }

    .about-grid-photo-updated .about-photo-card {
        min-height: 0;
        max-width: 680px;
    }
}

@media (max-width: 600px) {
    .photo-frame {
        overflow: hidden;
        border-width: 8px;
        border-radius: 28px;
    }

    .hero-growth .flight-card {
        position: relative;
        left: auto;
        bottom: auto;
        margin-top: 16px;
    }

    .photo-caption {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 14px 16px;
    }

    .about-photo-card {
        max-width: 100%;
    }

    .about-grid-photo-updated .about-photo-card > img {
        border-radius: 28px;
    }

    .about-photo-card .credential-badge {
        position: static;
        margin-top: 16px;
    }

    .photo-story-grid {
        grid-template-columns: 1fr;
    }
    .photo-card-wide,
    .photo-card-medium,
    .photo-story-grid .photo-card-medium:nth-child(n+3) {
        grid-column: span 1;
        min-height: 290px;
    }
    .photo-card figcaption {
        left: 16px;
        right: 16px;
        bottom: 14px;
    }
    .photo-card figcaption strong { font-size: 1.12rem; }
}

/* ===== Printify shop link update ===== */
.shop-section {
    background: linear-gradient(180deg, #ffffff 0%, #f6f0e9 100%);
}
.shop-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 58px;
    align-items: center;
    overflow: hidden;
    padding: clamp(34px, 6vw, 72px);
    border: 1px solid rgba(23,38,63,.10);
    border-radius: 34px;
    background: #fff;
    box-shadow: 0 24px 60px rgba(23,38,63,.12);
}
.shop-copy { position: relative; z-index: 2; }
.shop-copy h2 { max-width: 680px; }
.shop-copy > p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.08rem;
    line-height: 1.75;
}
.shop-copy > small {
    display: block;
    max-width: 620px;
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.55;
}
.shop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0 28px;
}
.shop-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    border: 1px solid rgba(23,38,63,.12);
    border-radius: 999px;
    background: #f4f8fa;
    color: var(--navy);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .03em;
}
.shop-art {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(145deg, var(--navy) 0%, #244568 62%, #2f6f88 100%);
}
.shop-art svg {
    position: absolute;
    inset: 10px 0 auto;
    width: 100%;
    height: auto;
}
.shop-flight-path {
    fill: none;
    stroke: rgba(255,255,255,.42);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 3 13;
}
.shop-plane { fill: #fff; }
.shop-cloud { fill: rgba(255,255,255,.13); }
.shop-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}
.shop-orbit-one { width: 280px; height: 280px; right: -85px; top: -105px; }
.shop-orbit-two { width: 210px; height: 210px; left: -95px; bottom: -110px; }
.shop-stamp {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    background: rgba(8,19,34,.56);
    color: #fff;
    backdrop-filter: blur(8px);
}
.shop-stamp span,
.shop-stamp small { display: block; }
.shop-stamp span {
    color: #f3b48f;
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .14em;
}
.shop-stamp strong {
    display: block;
    margin: 4px 0 5px;
    font-family: Georgia, serif;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
}
.shop-stamp small { color: rgba(255,255,255,.72); }

@media (max-width: 900px) {
    .shop-panel { grid-template-columns: 1fr; gap: 34px; }
    .shop-art { min-height: 340px; }
}
@media (max-width: 600px) {
    .shop-panel { padding: 26px 18px; border-radius: 26px; }
    .shop-art { min-height: 300px; border-radius: 24px; }
    .shop-stamp { left: 16px; right: 16px; bottom: 16px; }
}
