/* ============================================================
   ABOUT PAGE — FOUND BHUTAN
   Brand: navy var(--navy) · gold var(--gold) · deep var(--navy-mid)
   Scoped prefix: .fba-
   ============================================================ */

/* ---- CSS variables ---- */
:root {
    --fba-navy:   var(--navy);
    --fba-deep:   var(--navy-mid);
    --fba-gold:   var(--gold);
    --fba-cream:  var(--off-white);
    --fba-slate:  #4a5568;
    --fba-muted:  #718096;
    --fba-white:  #ffffff;
    --fba-radius: 8px;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.fba-hero {
    position: relative;
    height: 56vh;
    min-height: 360px;
    max-height: 540px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    background: #0b1d14;
}

.fba-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 55%;
    filter: brightness(52%);
    transform: scale(1.05);
    animation: fba-settle 1.4s ease forwards;
}

@keyframes fba-settle {
    from { transform: scale(1.10); }
    to   { transform: scale(1.00); }
}

/* Gradient overlay */
.fba-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,20,14,0.94) 0%,
        rgba(10,20,14,0.40) 48%,
        rgba(10,20,14,0.06) 100%
    );
    z-index: 2;
}

/* CHANGE 1: Breadcrumb — fully transparent, no blue background */
.fba-breadcrumb {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 4;
    padding: 20px 0;
    background: transparent;
}

.fba-breadcrumb__inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.fba-breadcrumb nav {
    font-size: 0.65rem;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.52);
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
}

.fba-breadcrumb a {
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    transition: color 0.2s;
}

.fba-breadcrumb a:hover { color: var(--fba-gold); }
.fba-breadcrumb .sep { margin: 0 8px; opacity: 0.38; }
.fba-breadcrumb span[aria-current] { color: rgba(255,255,255,0.40); }

/* Hero copy */
.fba-hero__content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding-bottom: 64px;
    animation: fba-rise 0.9s ease both;
    animation-delay: 0.12s;
}

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

.fba-hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.fba-hero__eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--fba-gold);
    flex-shrink: 0;
}

.fba-hero__eyebrow span {
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    font-family: var(--font-body);
}

.fba-hero__title {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.04;
    margin: 0;
    letter-spacing: -0.025em;
    text-shadow: 0 2px 28px rgba(0,0,0,0.38);
}

.fba-hero__title em {
    font-style: normal;
    color: var(--fba-gold);
}

/* ============================================================
   SHARED UTILITIES
   ============================================================ */
.fba-section {
    padding: 88px 0;
}

.fba-inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.fba-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.fba-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--fba-gold);
    flex-shrink: 0;
}

.fba-eyebrow span {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--fba-gold);
    font-family: var(--font-body);
}

.fba-eyebrow--center { justify-content: center; }

/* Scroll-reveal base state */
.fba-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fba-reveal.fba-visible {
    opacity: 1;
    transform: translateY(0);
}

.fba-reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fba-reveal-left.fba-visible {
    opacity: 1;
    transform: translateX(0);
}

.fba-reveal-right {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fba-reveal-right.fba-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   WELCOME INTRO STRIP
   ============================================================ */
.fba-intro {
    background: var(--fba-navy);
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal texture */
.fba-intro::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -55deg,
        rgba(255,194,26,0.025) 0px,
        rgba(255,194,26,0.025) 1px,
        transparent 1px,
        transparent 44px
    );
    pointer-events: none;
}

/* Gold top accent line */
.fba-intro::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--fba-gold) 30%, var(--fba-gold) 70%, transparent);
    opacity: 0.6;
}

.fba-intro__inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 72px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}

.fba-intro__heading {
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.08;
    margin: 0;
    letter-spacing: -0.025em;
}

.fba-intro__heading em {
    font-style: normal;
    color: var(--fba-gold);
}

/* CHANGE 2: Dzongkha text — hidden */
.fba-intro__dzongkha {
    display: none;
}

.fba-intro__body {
    font-size: 0.96rem;
    color: rgba(255,255,255,0.68);
    line-height: 1.85;
    font-family: var(--font-body);
    margin: 0 0 14px;
}

.fba-intro__body:last-of-type { margin-bottom: 0; }

/* ============================================================
   STORY SECTION — split layout
   ============================================================ */
.fba-story {
    background: var(--fba-cream);
    position: relative;
    overflow: hidden;
}

.fba-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        135deg,
        rgba(14,45,69,0.020) 0px,
        rgba(14,45,69,0.020) 1px,
        transparent 1px,
        transparent 40px
    );
    pointer-events: none;
}

.fba-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
    position: relative;
}

/* Image column */
.fba-story__img-wrap {
    position: relative;
}

/* Decorative gold frame offset */
.fba-story__img-wrap::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: 18px;
    bottom: 18px;
    border: 2px solid var(--fba-gold);
    border-radius: var(--fba-radius);
    opacity: 0.35;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.fba-story__img-wrap:hover::before { opacity: 0.65; }

.fba-story__img {
    display: block;
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--fba-radius);
    position: relative;
    z-index: 1;
    box-shadow: 0 16px 48px rgba(14,45,69,0.16);
}

/* Badge on image */
.fba-story__badge {
    position: absolute;
    bottom: 24px;
    right: -24px;
    z-index: 2;
    background: var(--fba-navy);
    border-left: 3px solid var(--fba-gold);
    padding: 18px 22px;
    border-radius: 0 var(--fba-radius) var(--fba-radius) 0;
    box-shadow: 0 8px 28px rgba(14,45,69,0.22);
}

.fba-story__badge-num {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
    font-family: var(--font-body);
}

.fba-story__badge-num sup {
    font-size: 0.45em;
    color: var(--fba-gold);
    vertical-align: super;
}

.fba-story__badge-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-family: var(--font-body);
    margin-top: 2px;
}

/* CHANGE 3: Story heading — bumped up in size */
.fba-story__heading {
    font-size: clamp(2.2rem, 3.6vw, 3.2rem);
    font-weight: 800;
    color: var(--fba-navy);
    line-height: 1.08;
    margin: 0 0 22px;
    letter-spacing: -0.022em;
}

.fba-story__heading em {
    font-style: normal;
    color: var(--fba-gold);
}

.fba-story__body {
    font-size: 0.94rem;
    color: var(--fba-slate);
    line-height: 1.85;
    font-family: var(--font-body);
    margin: 0 0 16px;
}

.fba-story__body:last-of-type { margin-bottom: 0; }

/* ============================================================
   VISION & MISSION — dark cards side by side
   ============================================================ */
.fba-vm {
    background: var(--fba-white);
}

.fba-vm__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.fba-vm__card {
    background: var(--fba-navy);
    border-radius: var(--fba-radius);
    padding: 44px 40px;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--fba-gold);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.fba-vm__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(14,45,69,0.18);
}

/* Decorative circle in corner */
.fba-vm__card::before {
    content: '';
    position: absolute;
    top: -48px;
    right: -48px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,194,26,0.06);
    pointer-events: none;
}

.fba-vm__icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--gold-pale);
    border: 1px solid rgba(255,194,26,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.fba-vm__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--fba-gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fba-vm__label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--fba-gold);
    font-family: var(--font-body);
    margin-bottom: 12px;
    display: block;
}

.fba-vm__title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.018em;
}

.fba-vm__body {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-family: var(--font-body);
    margin: 0;
}

/* ============================================================
   VALUES STRIP — 4 pillars
   ============================================================ */
.fba-values {
    background: var(--fba-navy);
    position: relative;
    overflow: hidden;
}

.fba-values::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--fba-gold) 30%, var(--fba-gold) 70%, transparent);
    opacity: 0.55;
}

.fba-values::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--fba-gold) 30%, var(--fba-gold) 70%, transparent);
    opacity: 0.25;
}

.fba-values__inner {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    padding: 72px 0;
}

.fba-values__header {
    text-align: center;
    margin-bottom: 52px;
}

.fba-values__header h2 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 10px;
    letter-spacing: -0.022em;
}

.fba-values__header h2 em {
    font-style: normal;
    color: var(--fba-gold);
}

.fba-values__header p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.52);
    font-family: var(--font-body);
    margin: 0;
    line-height: 1.7;
}

.fba-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.fba-value-card {
    padding: 40px 28px;
    border-right: 1px solid rgba(255,255,255,0.07);
    position: relative;
    transition: background 0.28s ease;
}

.fba-value-card:last-child { border-right: none; }

.fba-value-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--fba-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.32s ease;
}

.fba-value-card:hover { background: rgba(255,255,255,0.03); }
.fba-value-card:hover::after { transform: scaleX(1); }

.fba-value-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold-pale);
    border: 1px solid rgba(255,194,26,0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.22s ease;
}

.fba-value-card:hover .fba-value-card__icon {
    background: rgba(255,194,26,0.20);
}

.fba-value-card__icon svg {
    width: 19px;
    height: 19px;
    stroke: var(--fba-gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.fba-value-card__title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

.fba-value-card__desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.50);
    line-height: 1.7;
    font-family: var(--font-body);
    margin: 0;
}

/* ============================================================
   WHY CHOOSE US — included partial
   ============================================================ */
.fba-why-wrap {
    background: var(--fba-cream);
}

/* ============================================================
   TEAM SECTION — included partial
   ============================================================ */
.fba-team-wrap {
    background: var(--fba-white);
}

/* ============================================================
   CALL TO ACTION
   ============================================================ */
.fba-cta {
    background: var(--fba-navy);
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    text-align: center;
}

.fba-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,194,26,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.fba-cta::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--fba-gold) 30%, var(--fba-gold) 70%, transparent);
    opacity: 0.55;
}

.fba-cta__inner {
    max-width: 680px;
    width: 90%;
    margin: 0 auto;
    position: relative;
}

.fba-cta__kicker {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--fba-gold);
    font-family: var(--font-body);
    display: block;
    margin-bottom: 18px;
}

.fba-cta__heading {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 18px;
    letter-spacing: -0.025em;
}

.fba-cta__heading em {
    font-style: normal;
    color: var(--fba-gold);
}

.fba-cta__sub {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.58);
    font-family: var(--font-body);
    line-height: 1.7;
    margin: 0 0 40px;
}

.fba-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    background: var(--fba-gold);
    color: var(--fba-navy) !important;
    text-decoration: none !important;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: var(--font-body);
    border-radius: var(--fba-radius);
    transition: background 0.22s ease, transform 0.18s ease;
    box-shadow: 0 6px 24px rgba(255,194,26,0.28);
}

.fba-cta__btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    color: var(--fba-navy) !important;
}

.fba-cta__btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.22s ease;
}

.fba-cta__btn:hover svg {
    transform: translateX(4px);
}

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

@media (max-width: 1024px) {
    .fba-intro__inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 60px 0;
    }

    .fba-story__grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .fba-story__img {
        height: 360px;
    }

    .fba-story__badge {
        right: 16px;
        bottom: 16px;
    }

    .fba-vm__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fba-values__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fba-value-card:nth-child(2) { border-right: none; }
    .fba-value-card:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.07); }
    .fba-value-card:nth-child(1),
    .fba-value-card:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }
}

@media (max-width: 768px) {
    .fba-section { padding: 64px 0; }

    .fba-hero {
        height: 50vh;
        min-height: 300px;
    }

    .fba-hero__content { padding-bottom: 48px; }

    .fba-story__img-wrap::before { display: none; }

    .fba-story__img { height: 280px; }

    .fba-vm__card { padding: 32px 28px; }

    .fba-cta { padding: 72px 0; }
}

@media (max-width: 600px) {
    .fba-values__grid {
        grid-template-columns: 1fr;
    }

    .fba-value-card {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .fba-value-card:last-child { border-bottom: none; }
    .fba-value-card:nth-child(3) { border-right: none; }

    .fba-cta__btn {
        width: 100%;
        justify-content: center;
    }

    .fba-story__badge {
        position: static;
        display: inline-flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        border-left: 3px solid var(--fba-gold);
        border-radius: var(--fba-radius);
        margin-top: 16px;
        padding: 14px 18px;
    }

    .fba-story__badge-label { margin-top: 0; margin-left: 2px; }
}