html {
    scroll-behavior: smooth;
}

.flx-block {
    --flx-orange: #ef7d00;
    --flx-orange-dark: #cf6a00;
    --flx-heading: #54616c;
    --flx-text: #54616c;
    --flx-muted: #6b757d;
    --flx-bg: #ffffff;
    --flx-surface: #f8f8f7;
    --flx-line: #e8e8e8;
    --flx-border: #d9d9d9;
    --flx-radius: 2px;
    --flx-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --flx-card-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    --flx-card-shadow-hover: 0 18px 34px rgba(0, 0, 0, 0.16);
    --flx-section-space: 3.5rem;
    --flx-card-padding: 1.5rem;
    box-sizing: border-box;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    font-family: "Outfit", sans-serif;
    color: var(--flx-text);
    background: var(--flx-bg);
    scroll-margin-top: 18vh;
}

.flx-block *,
.flx-side-nav * {
    box-sizing: border-box;
}

.flx-block a,
.flx-side-nav a {
    color: inherit;
    text-decoration: none;
}

.flx-block img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flx-focus-right {
    object-position: 78% center;
}

.flx-side-nav {
    position: fixed;
    top: 50vh;
    left: 0;
    z-index: 20;
    width: 180px;
    transform: translateY(-50%);
    --flx-orange: #ef7d00;
    --flx-heading: #54616c;
    --flx-muted: #6b757d;
    font-family: "Outfit", sans-serif;
}

.flx-side-nav-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 420px;
    padding: 1rem 0.85rem;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.flx-side-nav-list,
.flx-side-nav-list li {
    width: 100%;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.flx-side-nav-list {
    display: grid;
    gap: 1.15rem;
    justify-items: end;
}

.flx-side-nav-list li::before,
.flx-side-nav-list li::marker {
    display: none !important;
    content: none !important;
}

.flx-side-nav-link {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 58px;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    color: var(--flx-muted);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-align: right;
    text-transform: uppercase;
    transition: color 0.25s ease, transform 0.25s ease;
}

.flx-side-nav-link::after {
    width: 100%;
    height: 1px;
    background: rgba(84, 97, 108, 0.35);
    content: "";
    transition: background-color 0.25s ease;
}

.flx-side-nav-link.is-active,
.flx-side-nav-link:hover {
    color: var(--flx-heading);
    transform: translateX(-4px);
}

.flx-side-nav-link.is-active::after,
.flx-side-nav-link:hover::after {
    background: var(--flx-orange);
}

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

.flx-section-intro {
    max-width: 60ch;
    margin: 0.9rem 0 0;
    color: var(--flx-muted);
    font-size: 0.98rem;
    font-weight: 300;
    line-height: 1.68;
}

.flx-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 3rem;
    align-items: stretch;
    padding-top: 3.5rem;
    padding-bottom: var(--flx-section-space);
}

.flx-hero-full {
    grid-template-columns: minmax(0, 1fr);
}

.flx-hero-full .flx-hero-copy {
    max-width: 980px;
}

.flx-hero-full .flx-hero-copy h2 {
    max-width: 24ch;
}

.flx-hero-full .flx-hero-copy p {
    max-width: 86ch;
}

.flx-hero-copy h2 {
    max-width: 18ch;
    margin: 0 0 1rem;
    color: var(--flx-heading);
    font-size: clamp(1.75rem, 2.4vw, 2.4rem);
    font-weight: 300;
    line-height: 1.12;
}

.flx-hero-copy p,
.flx-copy-block p {
    margin: 0 0 1rem;
    color: var(--flx-text);
    font-size: 1rem;
    line-height: 1.72;
}

.flx-hero-copy p {
    max-width: 66ch;
    font-size: 1.02rem;
}

.flx-hero-note {
    max-width: 58ch;
    margin-top: 1.4rem !important;
    padding-top: 1rem;
    border-top: 3px solid var(--flx-orange);
    color: var(--flx-muted) !important;
    font-size: 0.98rem !important;
    font-weight: 300;
    line-height: 1.65 !important;
}

.flx-info-box {
    display: block;
    align-self: end;
    overflow: hidden;
    padding: var(--flx-card-padding);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: #fff;
    box-shadow: var(--flx-card-shadow);
    transition: transform 0.3s cubic-bezier(.22, .61, .36, 1), box-shadow 0.3s cubic-bezier(.22, .61, .36, 1), border-color 0.3s cubic-bezier(.22, .61, .36, 1);
}

.flx-info-box:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: var(--flx-card-shadow-hover);
    transform: translateY(-3px);
}

.flx-info-box h3 {
    margin: 0 0 1rem;
    color: #545454;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.14em;
}

.flx-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.25rem;
}

.flx-info-item {
    padding-top: 0.85rem;
    border-top: 1px solid var(--flx-border);
}

.flx-info-label {
    margin-bottom: 0.35rem;
    color: var(--flx-orange);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.flx-info-value {
    color: var(--flx-heading);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.45;
}

.flx-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3rem;
    align-items: stretch;
    padding-top: var(--flx-section-space);
    padding-bottom: var(--flx-section-space);
}

.flx-media-main,
.flx-photo-media,
.flx-story-main,
.flx-story-card-media {
    overflow: hidden;
    background: #ebebeb;
}

.flx-media-main {
    min-height: 100%;
    border-radius: var(--flx-radius);
    box-shadow: var(--flx-shadow);
}

.flx-media-main img,
.flx-story-card-media img,
.flx-photo-media img {
    transition: transform .6s ease;
}

.flx-media-main:hover img,
.flx-story-card:hover .flx-story-card-media img {
    transform: scale(1.04);
}

.flx-copy-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 620px;
    height: 100%;
    gap: 2rem;
}

.flx-copy-block h3,
.flx-section-head h2,
.flx-photo-caption h3,
.flx-photo-overlay h3 {
    margin: 0 0 1rem;
    color: var(--flx-heading);
    font-weight: 300;
    line-height: 1.18;
}

.flx-copy-block h3 {
    max-width: 20ch;
    font-size: clamp(1.35rem, 1.9vw, 1.85rem);
}

.flx-sectors-section,
.flx-timeline-section,
.flx-photo-section {
    padding-top: var(--flx-section-space);
    padding-bottom: var(--flx-section-space);
}

.flx-section-head {
    max-width: 760px;
    margin-bottom: 1.5rem;
}

.flx-section-head h2 {
    margin-bottom: 0;
    font-size: clamp(1.5rem, 2.1vw, 2rem);
}

.flx-sectors,
.flx-process {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem 2.5rem;
}

.flx-sector-title,
.flx-process-title {
    margin: 0 0 0.55rem;
    color: var(--flx-heading);
    font-size: 1rem;
    font-weight: 500;
}

.flx-sector-card p,
.flx-process-step p,
.flx-fact p {
    margin: 0;
    color: var(--flx-text);
    font-size: 0.95rem;
    line-height: 1.62;
}

.flx-story-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1rem;
    padding-top: var(--flx-section-space);
    padding-bottom: var(--flx-section-space);
}

.flx-story-main {
    position: relative;
    min-height: 520px;
}

.flx-story-main::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.52) 100%);
    content: "";
    pointer-events: none;
}

.flx-story-caption,
.flx-photo-overlay {
    position: absolute;
    z-index: 1;
    max-width: 30rem;
    padding: 1rem 1.1rem 1.05rem;
    color: #fff;
    background: rgba(34, 40, 45, 0.58);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.flx-story-caption {
    bottom: 1.5rem;
    left: 1.5rem;
}

.flx-story-caption h3 {
    margin: 0 0 0.4rem;
    color: #fff;
    font-size: clamp(1.4rem, 2vw, 1.9rem);
    font-weight: 300;
    line-height: 1.12;
}

.flx-story-caption p,
.flx-photo-overlay p {
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.95rem;
    line-height: 1.6;
}

.flx-story-side {
    display: grid;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.flx-story-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    min-height: 160px;
    overflow: hidden;
    background: var(--flx-surface);
}

.flx-story-card-copy {
    padding: 1.25rem 1.15rem;
}

.flx-story-kicker,
.flx-year,
.flx-fact-label {
    margin-bottom: 0.5rem;
    color: var(--flx-orange);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.flx-story-card-copy h3 {
    margin: 0 0 0.45rem;
    color: var(--flx-heading);
    font-size: 1rem;
    font-weight: 500;
}

.flx-story-card-copy p {
    margin: 0;
    color: var(--flx-text);
    font-size: 0.94rem;
    line-height: 1.58;
}

.flx-story-actions {
    margin-top: 1rem;
}

.flx-story-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1.1rem;
    border: 1px solid var(--flx-orange);
    color: var(--flx-orange);
    background: transparent;
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.flx-story-button:hover {
    color: #fff;
    background: var(--flx-orange);
    transform: translateY(-1px);
}

.flx-timeline {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem 2rem;
}

.flx-timeline-card {
    min-height: 100%;
    padding: 0 0 0 1rem;
    border-left: 2px solid var(--flx-line);
    background: transparent;
}

.flx-title {
    margin-bottom: 0.45rem;
    color: var(--flx-heading);
    font-size: 1rem;
    font-weight: 300;
}

.flx-text {
    color: var(--flx-text);
    font-size: 0.92rem;
    line-height: 1.6;
}

.flx-photo-figure {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
    gap: 1.5rem;
    align-items: end;
    margin: 0;
}

.flx-photo-media {
    position: relative;
    min-height: 420px;
    box-shadow: var(--flx-shadow);
}

.flx-photo-media:hover img {
    transform: scale(1.02);
}

.flx-photo-caption {
    max-width: 28rem;
}

.flx-photo-caption h3,
.flx-photo-overlay h3 {
    margin-bottom: 0.7rem;
    font-size: clamp(1.25rem, 1.8vw, 1.65rem);
}

.flx-photo-caption p {
    margin: 0;
    color: var(--flx-text);
    font-size: 0.98rem;
    line-height: 1.68;
}

.flx-photo-overlay {
    bottom: 1.5rem;
    left: 1.5rem;
    display: none;
}

.flx-photo-overlay h3 {
    color: #fff;
}

.flx-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.4rem;
    padding-top: var(--flx-section-space);
    padding-bottom: 0;
}

.flx-fact-value {
    margin-bottom: 0.55rem;
    color: var(--flx-heading);
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.1;
}

@media (max-width: 1500px) {
    .flx-side-nav {
        display: none !important;
    }

    .flx-hero,
    .flx-feature,
    .flx-story-grid,
    .flx-photo-figure {
        grid-template-columns: 1fr;
    }

    .flx-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 1180px) {
    .flx-block {
        padding-right: 1.25rem;
        padding-left: 1.25rem;
    }

    .flx-hero,
    .flx-feature,
    .flx-story-grid,
    .flx-sectors-section,
    .flx-timeline-section,
    .flx-photo-section {
        padding-top: 2.6rem;
        padding-bottom: 2.6rem;
    }

    .flx-media-main {
        min-height: 420px;
    }

    .flx-copy-block {
        max-width: none;
        gap: 1.5rem;
    }

    .flx-story-main {
        min-height: 440px;
    }

    .flx-story-side {
        grid-template-rows: none;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .flx-story-card {
        grid-template-columns: 1fr;
    }

    .flx-story-card-media {
        min-height: 190px;
    }

    .flx-facts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .flx-block {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .flx-feature .flx-copy-block {
        order: 1;
    }

    .flx-feature .flx-media-main {
        order: 2;
        min-height: 340px;
    }

    .flx-sectors,
    .flx-facts,
    .flx-timeline {
        grid-template-columns: 1fr;
    }

    .flx-story-main {
        min-height: 360px;
    }

    .flx-story-side {
        grid-template-rows: none;
        grid-template-columns: 1fr;
    }

    .flx-story-card {
        grid-template-columns: 180px minmax(0, 1fr);
    }

    .flx-photo-caption {
        display: none;
    }

    .flx-photo-overlay {
        display: block;
    }
}

@media (max-width: 860px) {
    .flx-story-side,
    .flx-sectors,
    .flx-facts {
        grid-template-columns: 1fr;
    }

    .flx-story-card {
        grid-template-columns: 1fr;
    }

    .flx-story-card-media {
        min-height: 220px;
    }

    .flx-photo-media {
        min-height: 320px;
    }

    .flx-info-grid {
        grid-template-columns: 1fr;
    }

    .flx-media-main {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .flx-block {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .flx-hero {
        gap: 2rem;
        padding-top: 2.2rem;
        padding-bottom: 2.4rem;
    }

    .flx-feature,
    .flx-story-grid,
    .flx-sectors-section,
    .flx-timeline-section,
    .flx-photo-section {
        padding-top: 2.4rem;
        padding-bottom: 2.4rem;
    }

    .flx-hero-copy h2,
    .flx-copy-block h3 {
        max-width: none;
    }

    .flx-photo-caption {
        display: none;
    }

    .flx-photo-overlay {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        display: block;
    }
}
