/* ============================================================
   founder-page.css
   Premium founder biography page — scoped to .fp-* namespace
   No Gutenberg block layout interference.

   TABLE OF CONTENTS
   1. Custom Properties (Tokens)
   2. Base & Layout Utilities
   3. Typography Helpers
   4. Eyebrow Labels
   5. Buttons
   6. Hero Section
   7. Facts Ribbon
   8. Profile Section
   9. Timeline
   10. Pull Quote
   11. Founding Mission
   12. Impact Counters
   13. Vision / Values
   14. Recognition Grid
   15. Gallery Strip
   16. Video Section
   17. Legacy Banner
   18. Call to Action
   19. Mission Banner & Share
   20. Back to Top
   21. Responsive Breakpoints
   ============================================================ */


/* ============================================================
   1. CUSTOM PROPERTIES — defined on :root so fixed/absolute
      children (back-to-top, overlays) can access them too.
   ============================================================ */
:root {
    --fp-navy:       #0F3D5E;
    --fp-navy-deep:  #08273e;
    --fp-navy-mid:   #1a5c8a;
    --fp-orange:     #F26B38;
    --fp-orange-dk:  #d4511f;
    --fp-green:      #2EB67D;
    --fp-surface:    #F8FAFC;
    --fp-surface-2:  #EEF2F7;
    --fp-white:      #FFFFFF;
    --fp-text:       #1F2937;
    --fp-muted:      #6B7280;
    --fp-border:     #E5E7EB;
    --fp-r:          1rem;
    --fp-r-lg:       1.5rem;
    --fp-r-xl:       2rem;
    --fp-shadow:     0 4px 6px -1px rgba(0,0,0,.07), 0 2px 4px -1px rgba(0,0,0,.05);
    --fp-shadow-lg:  0 20px 60px rgba(0,0,0,.12);
    --fp-ease:       .35s cubic-bezier(.4,0,.2,1);
}


/* ============================================================
   2. BASE & LAYOUT UTILITIES
   ============================================================ */
.fp-main {
    font-family: var(--font-sans, 'Inter', system-ui, sans-serif);
    color: var(--fp-text);
    line-height: 1.75;
    overflow-x: hidden; /* prevent horizontal scroll from hero bleed */
}

.fp-container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: clamp(1.25rem, 5vw, 3rem);
}

.fp-section {
    padding-block: clamp(4rem, 8vw, 7rem);
}


/* ============================================================
   3. TYPOGRAPHY HELPERS
   ============================================================ */
.fp-section__header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.fp-section__header--center {
    text-align: center;
}

.fp-section__header--light .fp-section__title,
.fp-section__header--light .fp-section__lead {
    color: #fff;
}

.fp-section__title {
    font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--fp-navy);
    margin: .5rem 0 1.25rem;
}

.fp-section__lead {
    font-size: 1.1rem;
    color: var(--fp-muted);
    max-width: 680px;
    line-height: 1.85;
}

.fp-section__header--center .fp-section__lead {
    margin-inline: auto;
}



/* ============================================================
   SVG ICON STYLING (.fp-icon)
   ============================================================ */
.fp-icon {
    display: inline-block;
    width: 2rem;
    height: 2rem;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    vertical-align: middle;
    flex-shrink: 0;
    transition: transform var(--fp-ease);
}

.fp-fact__icon .fp-icon {
    width: 2.25rem;
    height: 2.25rem;
    stroke: #fff;
    opacity: 0.9;
}

.fp-mini-card__icon .fp-icon {
    width: 1.75rem;
    height: 1.75rem;
    stroke: var(--fp-orange);
}

.fp-value-card__icon .fp-icon {
    width: 2rem;
    height: 2rem;
    stroke: var(--fp-orange);
}

.fp-rec-card__icon .fp-icon {
    width: 2.25rem;
    height: 2.25rem;
    stroke: var(--fp-navy);
}

.fp-cta-card__icon .fp-icon {
    width: 2.5rem;
    height: 2.5rem;
    stroke: var(--fp-navy);
}

/* ============================================================
   4. EYEBROW LABELS
   ============================================================ */
.fp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .375rem 1rem;
    border-radius: 999px;
    background: var(--fp-surface-2);
    color: var(--fp-orange);
}

.fp-eyebrow--dark {
    background: rgba(242,107,56,.1);
    color: var(--fp-orange-dk);
}

.fp-eyebrow--light {
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
}


/* ============================================================
   5. BUTTONS
   ============================================================ */
.fp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .875rem 1.875rem;
    border-radius: 999px;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    transition:
        background var(--fp-ease),
        color var(--fp-ease),
        transform var(--fp-ease),
        box-shadow var(--fp-ease);
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.fp-btn:hover {
    transform: translateY(-3px);
}

/* Primary — filled orange */
.fp-btn--primary {
    background: var(--fp-orange);
    color: #fff;
    box-shadow: 0 6px 20px rgba(242,107,56,.35);
}

.fp-btn--primary:hover {
    background: var(--fp-orange-dk);
    box-shadow: 0 10px 30px rgba(242,107,56,.45);
    color: #fff;
}

/* Secondary — identical to primary, kept as alias for semantic clarity */
.fp-btn--secondary {
    background: var(--fp-orange);
    color: #fff;
    box-shadow: 0 6px 20px rgba(242,107,56,.35);
}

.fp-btn--secondary:hover {
    background: var(--fp-orange-dk);
    color: #fff;
}

/* Ghost — white border for use on dark backgrounds */
.fp-btn--ghost {
    border: 2px solid rgba(255,255,255,.55);
    color: #fff;
    background: rgba(255,255,255,.06);
}

.fp-btn--ghost:hover {
    background: rgba(255,255,255,.14);
    border-color: #fff;
    color: #fff;
}

/* Ghost dark — slightly more opaque for banner use */
.fp-btn--ghost-dark {
    border: 2px solid rgba(255,255,255,.45);
    color: #fff;
    background: transparent;
}

.fp-btn--ghost-dark:hover {
    background: rgba(255,255,255,.1);
    color: #fff;
}

/* Small variant */
.fp-btn--sm {
    padding: .75rem 1.5rem;
    font-size: .875rem;
}


/* ============================================================
   6. HERO SECTION
   ============================================================ */
.fp-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    color: #fff;
    padding-top: 72px; /* clears the 72px fixed site header */
}

.fp-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    z-index: 1;
}

.fp-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(
        105deg,
        rgba(8, 39, 62, .92) 0%,
        rgba(15, 61, 94, .78) 45%,
        rgba(15, 61, 94, .25) 100%
    );
}

.fp-hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 420px;
    align-items: center;
    gap: 4rem;
    width: 100%;
    padding-block: clamp(4rem, 10vw, 7rem);
}

.fp-hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
}

.fp-hero__title {
    font-family: var(--font-display, 'Plus Jakarta Sans', sans-serif);
    font-size: clamp(2.1rem, 5.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.07;
    color: #fff;
    letter-spacing: -.02em;
    margin: 0;
}

.fp-hero__lead {
    font-size: clamp(.95rem, 1.8vw, 1.15rem);
    color: rgba(255,255,255,.88);
    max-width: 560px;
    line-height: 1.85;
    margin: 0;
}

.fp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: .5rem;
}

/* Portrait right-side image */
.fp-hero__portrait-wrap {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.fp-hero__portrait {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 380px;
    border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
    object-fit: cover;
    aspect-ratio: 3/4;
    box-shadow: 0 30px 80px rgba(0,0,0,.45);
    filter: drop-shadow(0 0 40px rgba(242,107,56,.3));
    border: 4px solid rgba(255,255,255,.15);
}

.fp-hero__portrait-ring {
    position: absolute;
    inset: -20px;
    border-radius: 50% 50% 40% 40% / 60% 60% 40% 40%;
    border: 2px solid rgba(242, 107, 56, .4);
    z-index: 1;
    animation: fp-ring-pulse 3.5s ease-in-out infinite;
}

@keyframes fp-ring-pulse {
    0%, 100% { opacity: .4; transform: scale(1); }
    50%       { opacity: .8; transform: scale(1.025); }
}

/* Animated scroll cue */
.fp-hero__scroll-cue {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.fp-hero__scroll-cue span {
    display: block;
    width: 2px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.5);
    animation: fp-scroll-bounce .9s ease-in-out infinite;
}

.fp-hero__scroll-cue span:nth-child(2) { animation-delay: .15s; }
.fp-hero__scroll-cue span:nth-child(3) { animation-delay: .30s; }

@keyframes fp-scroll-bounce {
    0%, 100% { opacity: .3; transform: translateY(0); }
    50%       { opacity: 1;  transform: translateY(5px); }
}


/* ============================================================
   7. FACTS RIBBON
   ============================================================ */
.fp-facts {
    background: var(--fp-navy);
    padding-block: 2.5rem;
}

.fp-facts__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Use column dividers via pseudo-element borders rather than
       gap+background trick (which breaks when background is overridden) */
    gap: 0;
}

/* Dividers between columns — skip last child */
.fp-fact:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.08);
}

.fp-fact {
    background: transparent;
    padding: 2rem 1.75rem;
    text-align: center;
    transition: background var(--fp-ease);
}

.fp-fact:hover {
    background: rgba(255,255,255,.04);
}

.fp-fact__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: .75rem;
}

.fp-fact strong {
    display: block;
    font-family: var(--font-display, sans-serif);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .4rem;
}

.fp-fact p {
    margin: 0;
    font-size: .875rem;
    color: rgba(255,255,255,.6);
    line-height: 1.55;
}


/* ============================================================
   8. PROFILE SECTION
   ============================================================ */
.fp-profile__grid {
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.fp-profile__img-wrap {
    position: relative;
}

.fp-profile__img {
    width: 100%;
    border-radius: var(--fp-r-xl);
    box-shadow: var(--fp-shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/5;
    display: block;
}

.fp-profile__img-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--fp-orange);
    color: #fff;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 30px rgba(242,107,56,.4);
    border: 4px solid #fff;
}

.fp-profile__img-badge span {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
    font-family: var(--font-display, sans-serif);
}

.fp-profile__img-badge small {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    opacity: .9;
    line-height: 1.2;
    margin-top: .2rem;
}

.fp-profile__body p {
    font-size: 1.05rem;
    color: var(--fp-text);
    margin-bottom: 1.25rem;
    line-height: 1.85;
}

.fp-profile__quote {
    margin: 2rem 0 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid var(--fp-orange);
    background: var(--fp-surface);
    border-radius: 0 var(--fp-r) var(--fp-r) 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--fp-navy);
    font-weight: 600;
    line-height: 1.6;
}


/* ============================================================
   9. TIMELINE
   ============================================================ */
.fp-timeline-section {
    background: var(--fp-surface);
}

.fp-timeline {
    position: relative;
    margin-top: 3rem;
}

/* Vertical connector line */
.fp-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--fp-orange), var(--fp-navy));
    transform: translateX(-50%);
    border-radius: 999px;
}

.fp-timeline__item {
    position: relative;
    width: 48%;
    margin-bottom: 3rem;
}

.fp-timeline__item--left {
    margin-right: auto;
    padding-right: 3rem;
}

.fp-timeline__item--right {
    margin-left: auto;
    padding-left: 3rem;
}

/* Connector dot */
.fp-timeline__dot {
    position: absolute;
    top: 1.5rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--fp-orange);
    border: 4px solid #fff;
    box-shadow: 0 0 0 4px rgba(242,107,56,.3);
    z-index: 2;
}

.fp-timeline__item--left  .fp-timeline__dot { right: -9px; }
.fp-timeline__item--right .fp-timeline__dot { left:  -9px; }

.fp-timeline__card {
    background: #fff;
    border-radius: var(--fp-r-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--fp-shadow);
    border: 1px solid var(--fp-border);
    transition: transform var(--fp-ease), box-shadow var(--fp-ease);
}

.fp-timeline__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fp-shadow-lg);
}

.fp-timeline__year {
    display: inline-block;
    font-size: .8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--fp-orange);
    margin-bottom: .6rem;
}

.fp-timeline__card h3 {
    font-family: var(--font-display, sans-serif);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--fp-navy);
    margin: 0 0 .875rem;
}

.fp-timeline__card p {
    margin: 0;
    font-size: .95rem;
    color: var(--fp-muted);
    line-height: 1.8;
}


/* ============================================================
   10. PULL QUOTE
   ============================================================ */
.fp-pullquote {
    background: var(--fp-navy);
    padding-block: clamp(4rem, 8vw, 6rem);
    position: relative;
    overflow: hidden;
}

/* Decorative large quote mark */
.fp-pullquote::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: 3rem;
    font-size: 20rem;
    font-family: Georgia, serif;
    color: rgba(255,255,255,.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.fp-pullquote blockquote {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    border: none;
    padding: 0;
}

.fp-pullquote blockquote p {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    font-style: italic;
    margin: 0 0 1.5rem;
}

.fp-pullquote cite {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--fp-orange);
    letter-spacing: .08em;
    text-transform: uppercase;
    font-style: normal;
}


/* ============================================================
   11. FOUNDING MISSION
   ============================================================ */
.fp-mission__grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: start;
}

.fp-mission__subhead {
    font-family: var(--font-display, sans-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--fp-navy);
    margin: 2rem 0 .75rem;
}

.fp-mission__body p {
    color: var(--fp-text);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.fp-mission__img-wrap {
    position: relative;
}

.fp-mission__img {
    width: 100%;
    border-radius: var(--fp-r-xl);
    box-shadow: var(--fp-shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3;
    display: block;
}

.fp-mission__cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.25rem;
}

.fp-mission__mini-card {
    background: var(--fp-surface);
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-r);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.fp-mission__mini-card span {
    font-size: 1.75rem;
    line-height: 1;
}

.fp-mission__mini-card p {
    margin: 0;
    font-size: .875rem;
    color: var(--fp-muted);
    line-height: 1.6;
}


/* ============================================================
   12. IMPACT COUNTERS
   ============================================================ */
.fp-impact {
    background: linear-gradient(135deg, var(--fp-navy) 0%, var(--fp-navy-mid) 100%);
    padding-block: clamp(4rem, 8vw, 7rem);
    position: relative;
    overflow: hidden;
}

/* Decorative ambient glow */
.fp-impact::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,107,56,.15) 0%, transparent 70%);
    right: -200px;
    bottom: -200px;
    pointer-events: none;
}

.fp-impact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-radius: var(--fp-r-lg);
    overflow: hidden;
    margin-top: 3rem;
    border: 1px solid rgba(255,255,255,.08);
}

.fp-impact__card {
    background: rgba(255,255,255,.04);
    padding: 3rem 2rem;
    text-align: center;
    transition: background var(--fp-ease);
}

/* Column dividers */
.fp-impact__card:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,.06);
}

.fp-impact__card:hover {
    background: rgba(255,255,255,.09);
}

.fp-impact__num {
    display: block;
    font-family: var(--font-display, sans-serif);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--fp-orange);
    line-height: 1;
    margin-bottom: .75rem;
}

.fp-impact__card strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .5rem;
}

.fp-impact__card p {
    margin: 0;
    font-size: .875rem;
    color: rgba(255,255,255,.55);
    line-height: 1.6;
}


/* ============================================================
   13. VISION / VALUES
   ============================================================ */
.fp-vision__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
    align-items: center;
}

.fp-vision__body p {
    color: var(--fp-text);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.fp-vision__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.fp-value-card {
    background: var(--fp-white);
    border: 1px solid var(--fp-border);
    border-top: 4px solid var(--fp-orange);
    border-radius: var(--fp-r-lg);
    padding: 1.75rem;
    transition: transform var(--fp-ease), box-shadow var(--fp-ease);
    box-shadow: var(--fp-shadow);
}

.fp-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--fp-shadow-lg);
}

.fp-value-card__icon {
    font-size: 2rem;
    display: block;
    margin-bottom: .75rem;
    line-height: 1;
}

.fp-value-card h4 {
    font-family: var(--font-display, sans-serif);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--fp-navy);
    margin: 0 0 .5rem;
}

.fp-value-card p {
    margin: 0;
    font-size: .9rem;
    color: var(--fp-muted);
    line-height: 1.65;
}


/* ============================================================
   14. RECOGNITION GRID
   ============================================================ */
.fp-recognition {
    background: var(--fp-surface);
}

.fp-recognition__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fp-rec-card {
    background: #fff;
    border-radius: var(--fp-r-lg);
    padding: 2rem;
    border: 1px solid var(--fp-border);
    box-shadow: var(--fp-shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--fp-ease), box-shadow var(--fp-ease);
}

.fp-rec-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fp-shadow-lg);
}

.fp-rec-card__icon {
    font-size: 2.25rem;
    display: block;
    margin-bottom: 1rem;
    line-height: 1;
}

.fp-rec-card h3 {
    font-family: var(--font-display, sans-serif);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--fp-navy);
    margin: 0 0 .75rem;
}

.fp-rec-card p {
    margin: 0 0 1.5rem;
    font-size: .9rem;
    color: var(--fp-muted);
    line-height: 1.75;
    flex: 1;
}

.fp-rec-card__link {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .875rem;
    font-weight: 700;
    color: var(--fp-orange);
    text-decoration: none;
    transition: color var(--fp-ease), gap var(--fp-ease);
    align-self: flex-start;
}

.fp-rec-card__link:hover {
    color: var(--fp-orange-dk);
    gap: .6rem;
}


/* ============================================================
   15. PHOTO GALLERY STRIP
   ============================================================ */
.fp-gallery {
    padding-block: clamp(2rem, 4vw, 3rem);
    overflow: hidden;
}

.fp-gallery__strip {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: .75rem;
}

.fp-gallery__item {
    overflow: hidden;
    border-radius: var(--fp-r);
    aspect-ratio: 3/4;
}

.fp-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .6s ease;
    display: block;
}

.fp-gallery__item:hover img {
    transform: scale(1.07);
}


/* ============================================================
   16. VIDEO DOCUMENTARY
   ============================================================ */
.fp-video__grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.fp-video__text p {
    color: var(--fp-text);
    line-height: 1.85;
    margin-bottom: 1.1rem;
}

.fp-video__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.fp-video__list li {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .95rem;
    color: var(--fp-navy);
    font-weight: 600;
}

.fp-video__list li::before {
    content: '';
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--fp-orange);
}

.fp-video__player {
    border-radius: var(--fp-r-xl);
    overflow: hidden;
    box-shadow: var(--fp-shadow-lg);
}

.fp-video__player iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    border: 0;
}


/* ============================================================
   17. LEGACY BANNER
   ============================================================ */
.fp-legacy {
    position: relative;
    padding-block: clamp(5rem, 10vw, 9rem);
    overflow: hidden;
}

.fp-legacy__bg-img {
    position: absolute;
    inset: 0;
    background: url('https://anawimhomes.org/wp-content/uploads/2025/01/home.jpg') center / cover no-repeat;
    z-index: 1;
}

.fp-legacy__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8,39,62,.96) 0%, rgba(15,61,94,.88) 100%);
    z-index: 2;
}

.fp-legacy__content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    color: #fff;
}

.fp-legacy__content h2 {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #fff;
    margin: .75rem 0 1.5rem;
    line-height: 1.15;
}

.fp-legacy__content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: rgba(255,255,255,.85);
    margin-bottom: 1.1rem;
}


/* ============================================================
   18. CALL TO ACTION CARDS
   ============================================================ */
.fp-cta-section {
    background: var(--fp-surface);
}

.fp-cta__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.fp-cta-card {
    background: #fff;
    border: 1px solid var(--fp-border);
    border-radius: var(--fp-r-xl);
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
    box-shadow: var(--fp-shadow);
    transition: transform var(--fp-ease), box-shadow var(--fp-ease);
}

.fp-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--fp-shadow-lg);
}

.fp-cta-card__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: .5rem;
    line-height: 1;
}

.fp-cta-card h3 {
    font-family: var(--font-display, sans-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--fp-navy);
    margin: 0;
}

.fp-cta-card p {
    margin: 0;
    font-size: .95rem;
    color: var(--fp-muted);
    line-height: 1.75;
    flex: 1;
}

.fp-cta-card .fp-btn {
    margin-top: .5rem;
}


/* ============================================================
   19. MISSION BANNER & SHARE
   ============================================================ */
.fp-banner {
    background: linear-gradient(
        135deg,
        var(--fp-navy-deep) 0%,
        var(--fp-navy)      60%,
        var(--fp-navy-mid)  100%
    );
    padding-block: clamp(4rem, 8vw, 7rem);
    position: relative;
    overflow: hidden;
}

/* Ambient glow top-right */
.fp-banner::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(242,107,56,.2) 0%, transparent 70%);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.fp-banner__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.fp-banner__quote {
    font-family: var(--font-display, sans-serif);
    font-size: clamp(1.35rem, 3vw, 1.9rem);
    font-weight: 700;
    color: #fff;
    max-width: 760px;
    line-height: 1.45;
    margin: 0;
    font-style: italic;
}

.fp-banner__sub {
    font-size: 1.05rem;
    color: rgba(255,255,255,.7);
    max-width: 640px;
    line-height: 1.75;
    margin: 0;
}

.fp-banner__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: .5rem;
}

/* Social share row */
.fp-share {
    display: flex;
    align-items: center;
    gap: .875rem;
    margin-top: .5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.fp-share span {
    font-size: .85rem;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    width: 100%;
    text-align: center;
}

/* Reset width on larger screens */
@media (min-width: 480px) {
    .fp-share span { width: auto; }
}

.fp-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.75);
    transition:
        background var(--fp-ease),
        border-color var(--fp-ease),
        color var(--fp-ease),
        transform var(--fp-ease);
    text-decoration: none;
}

.fp-share a:hover {
    background: var(--fp-orange);
    border-color: var(--fp-orange);
    color: #fff;
    transform: translateY(-3px);
}

.fp-share svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}



/* ============================================================
   21. RESPONSIVE BREAKPOINTS
   Breakpoints:  1024px → tablet landscape
                  768px → tablet portrait / large phone
                  480px → phone
   ============================================================ */

/* ── 1024px — tablet landscape ──────────────────────────── */
@media (max-width: 1024px) {

    /* Hero: stack content, hide portrait */
    .fp-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fp-hero__content {
        align-items: center;
    }

    .fp-hero__lead {
        margin-inline: auto;
    }

    .fp-hero__portrait-wrap {
        display: none;
    }

    /* Facts: 2-up */
    .fp-facts__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-fact:not(:last-child) {
        border-right: none;
    }

    .fp-fact:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    /* Profile: single column */
    .fp-profile__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .fp-profile__img-wrap {
        max-width: 480px;
        margin-inline: auto;
    }

    /* Mission: single column, image on top */
    .fp-mission__grid {
        grid-template-columns: 1fr;
    }

    .fp-mission__img-wrap {
        order: -1;
    }

    /* Impact: 2-up */
    .fp-impact__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-impact__card:not(:last-child) {
        border-right: none;
    }

    .fp-impact__card:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    /* Vision: single column */
    .fp-vision__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Video: single column */
    .fp-video__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Recognition: 2-up */
    .fp-recognition__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA: 2-up */
    .fp-cta__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── 768px — tablet portrait / large phone ──────────────── */
@media (max-width: 768px) {

    .fp-hero {
        min-height: 85svh;
    }

    /* Facts: 1-up */
    .fp-facts__grid {
        grid-template-columns: 1fr;
    }

    .fp-fact:nth-child(-n+2) {
        border-bottom: none;
    }

    .fp-fact:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }

    /* Timeline: left-aligned single column */
    .fp-timeline::before {
        left: 16px;
        transform: none;
    }

    .fp-timeline__item,
    .fp-timeline__item--left,
    .fp-timeline__item--right {
        width: 100%;
        margin-left: 0;
        padding-left: 3.5rem;
        padding-right: 0;
    }

    .fp-timeline__item--left .fp-timeline__dot,
    .fp-timeline__item--right .fp-timeline__dot {
        left:  7px;
        right: auto;
    }

    /* Recognition: 1-up */
    .fp-recognition__grid {
        grid-template-columns: 1fr;
    }

    /* Gallery: 3-up, hide 4th+ */
    .fp-gallery__strip {
        grid-template-columns: repeat(3, 1fr);
    }

    .fp-gallery__item:nth-child(n+4) {
        display: none;
    }

    /* Values: 1-up */
    .fp-vision__values {
        grid-template-columns: 1fr;
    }

    /* Impact: 1-up */
    .fp-impact__grid {
        grid-template-columns: 1fr;
    }

    .fp-impact__card:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,.06);
    }

    /* Profile badge: smaller */
    .fp-profile__img-badge {
        width: 90px;
        height: 90px;
        bottom: -1rem;
        right: -1rem;
    }

    .fp-profile__img-badge span {
        font-size: 1.35rem;
    }

    /* Pull quote: smaller font */
    .fp-pullquote blockquote p {
        font-size: 1.25rem;
    }

    /* CTA: 1-up */
    .fp-cta__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-inline: auto;
    }

    /* Banner: stack buttons */
    .fp-banner__actions {
        flex-direction: column;
        align-items: center;
    }
}

/* ── 480px — phone ──────────────────────────────────────── */
@media (max-width: 480px) {

    /* Gallery: 2-up, hide 3rd+ */
    .fp-gallery__strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .fp-gallery__item:nth-child(n+3) {
        display: none;
    }

    /* Hero actions: stack vertically — scoped to hero only */
    .fp-hero__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .fp-hero__actions .fp-btn {
        width: 100%;
        text-align: center;
    }

    /* Mission mini-cards: 1-up */
    .fp-mission__cards {
        grid-template-columns: 1fr;
    }

    /* Values: already 1-up from 768px — no change needed */
}
