:root {
    --ink: #102019;
    --muted: #64746c;
    --line: #dde7e1;
    --surface: #ffffff;
    --paper: #fbfaf5;
    --mist: #e7f5f1;
    --deep: #071c25;
    --deep-soft: #0d2b33;
    --accent: #0d9478;
    --accent-dark: #086750;
    --gold: #f2b84b;
    --coral: #ef6f4f;
    --shadow: 0 24px 80px rgba(7, 28, 37, 0.14);
    --radius: 8px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
    margin: 0;
    overflow-x: hidden;
    background:
        linear-gradient(180deg, rgba(231, 245, 241, 0.62), rgba(251, 250, 245, 0) 520px),
        var(--paper);
}

body::selection {
    color: #ffffff;
    background: var(--accent);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(251, 250, 245, 0.76);
    border-bottom: 1px solid rgba(221, 231, 225, 0.58);
    backdrop-filter: blur(18px);
    transition: box-shadow 420ms var(--ease), background 420ms var(--ease);
}

.site-header.is-scrolled {
    background: rgba(251, 250, 245, 0.92);
    box-shadow: 0 18px 50px rgba(7, 28, 37, 0.08);
}

.top-strip {
    border-bottom: 1px solid rgba(221, 231, 225, 0.7);
    color: #dff4ee;
    background: var(--deep);
    font-size: 0.78rem;
    font-weight: 800;
}

.top-strip-inner {
    display: flex;
    width: min(1320px, calc(100% - 40px));
    min-height: 34px;
    align-items: center;
    gap: 18px;
    margin-inline: auto;
}

.top-strip-inner a:hover {
    color: var(--gold);
}

.about-section,
.about-sitemap,
.management-section,
.overview-section,
.services-section,
.documents-section,
.agents-section,
.accreditation-section,
.profile-section,
.gallery-section,
.team-section,
.concern-section,
.contact-section,
.process-section,
.markets-section,
.leadership-section,
.site-footer {
    width: min(1320px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header-inner {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    width: min(1320px, calc(100% - 40px));
    align-items: center;
    gap: clamp(52px, 5vw, 78px);
    margin-inline: auto;
    padding: 14px 0;
}

.brand,
.footer-brand {
    font-weight: 900;
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    justify-self: start;
    min-width: 0;
    gap: 12px;
}

.brand-logo {
    display: block;
    width: clamp(248px, 18vw, 300px);
    max-width: 100%;
    height: auto;
}

.brand-mark {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: var(--radius);
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--deep-soft));
    font-size: 0.78rem;
    letter-spacing: 0;
}

.brand span:last-child {
    display: grid;
    gap: 2px;
}

.brand strong {
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 800;
}

.menu-toggle {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    flex-shrink: 0;
    border: 0;
    border-radius: var(--radius);
    padding: 10px;
    background: var(--deep);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px auto;
    background: #ffffff;
    transition: transform 260ms var(--ease), opacity 260ms ease;
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
}

@media (min-width: 1281px) {
    .menu-toggle {
        display: none;
    }
}

.site-nav {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: auto;
    max-width: 100%;
    gap: clamp(14px, 1.05vw, 18px);
    color: #41524b;
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.site-nav a,
.footer-links a {
    position: relative;
    white-space: nowrap;
    transition: color 220ms ease;
}

.site-nav a::after,
.footer-links a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--coral);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 320ms var(--ease);
}

.site-nav a:hover,
.footer-links a:hover {
    color: var(--accent-dark);
}

.site-nav a:hover::after,
.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

@media (max-width: 1280px) {
    .site-header-inner {
        display: flex;
        width: min(1180px, calc(100% - 40px));
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 12px;
    }

    .site-header-inner .brand {
        max-width: calc(100% - 64px);
        min-width: 0;
    }

    .site-header-inner > .menu-toggle {
        position: absolute;
        top: 14px;
        right: 0;
        display: inline-grid !important;
        box-shadow: 0 12px 30px rgba(7, 28, 37, 0.18);
    }

    .site-nav {
        position: static;
        left: auto;
        order: 3;
        display: none;
        width: 100%;
        max-width: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 10px;
        background: #ffffff;
        box-shadow: 0 18px 50px rgba(7, 28, 37, 0.08);
        transform: none;
    }

    .site-header.is-menu-open .site-nav {
        display: flex;
    }

    .site-nav > a {
        width: 100%;
        border-radius: 6px;
        padding: 12px;
        text-align: left;
    }

    .site-nav > a:hover {
        background: var(--mist);
    }

    .site-nav a::after {
        display: none;
    }
}

.header-cta,
.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 900;
    transition: transform 240ms var(--ease), border-color 240ms ease, background 240ms ease, color 240ms ease;
}

.header-cta {
    padding: 0 16px;
    color: #ffffff;
    background: var(--deep);
    white-space: nowrap;
}

.header-cta:hover,
.button:hover {
    transform: translateY(-2px);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: clamp(700px, calc(100svh - 76px), 860px);
    min-height: 700px;
    overflow: hidden;
    background: var(--deep);
    isolation: isolate;
}

.hero-slider-track {
    display: flex;
    height: 100%;
    transform: translate3d(calc(var(--slide-index, 0) * -100%), 0, 0);
    transition: transform 1100ms cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform;
}

.hero-slide {
    position: relative;
    flex: 0 0 100%;
    min-width: 100%;
    overflow: hidden;
}

.hero-slide-image,
.hero-slide-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide-image {
    z-index: 0;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 6500ms linear;
}

.hero-slide.is-active .hero-slide-image {
    transform: scale(1);
}

.hero-slide-shade {
    z-index: 1;
    background:
        radial-gradient(circle at 76% 36%, rgba(242, 184, 75, 0.18), transparent 26%),
        linear-gradient(90deg, rgba(7, 28, 37, 0.94), rgba(7, 28, 37, 0.72) 46%, rgba(7, 28, 37, 0.2)),
        linear-gradient(0deg, rgba(7, 28, 37, 0.52), rgba(7, 28, 37, 0.04) 48%);
}

.hero-slide-inner {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    align-items: center;
    padding: clamp(70px, 8vw, 118px) clamp(20px, 7vw, 120px);
    color: #ffffff;
}

.hero-copy {
    width: min(860px, 72vw);
}

.eyebrow {
    margin: 0 0 13px;
    color: var(--gold);
    font-size: 0.76rem;
    font-weight: 950;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy h1 {
    max-width: 840px;
    margin: 0;
    font-size: 5.2rem;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.hero-copy > * {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.hero-slide.is-active .hero-copy > * {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide.is-active .hero-copy > :nth-child(2) {
    transition-delay: 80ms;
}

.hero-slide.is-active .hero-copy > :nth-child(3) {
    transition-delay: 160ms;
}

.hero-slide.is-active .hero-copy > :nth-child(4) {
    transition-delay: 240ms;
}

.hero-slide.is-active .hero-copy > :nth-child(5) {
    transition-delay: 320ms;
}

.hero-lede {
    max-width: 650px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button {
    padding: 0 20px;
}

.button-primary {
    color: var(--deep);
    background: var(--gold);
}

.button-primary:hover {
    background: #ffd46e;
}

.button-ghost {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.button-ghost:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
}

.hero-proof {
    display: flex;
    width: fit-content;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 44px;
    padding-left: 18px;
    border-left: 3px solid var(--coral);
    color: rgba(255, 255, 255, 0.74);
}

.hero-proof strong {
    color: #ffffff;
}

.hero-slider-ui {
    position: absolute;
    right: clamp(20px, 7vw, 120px);
    bottom: 34px;
    left: clamp(20px, 7vw, 120px);
    z-index: 5;
    display: grid;
    grid-template-columns: minmax(180px, 1fr) auto auto;
    gap: 18px;
    align-items: center;
}

.hero-progress {
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
}

.hero-progress span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
}

.hero-slider.is-playing .hero-progress span {
    animation: sliderProgress var(--slider-duration, 6500ms) linear forwards;
}

.hero-dots,
.hero-arrows {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dots button,
.hero-arrows button {
    display: grid;
    place-items: center;
    border: 0;
    color: #ffffff;
    cursor: pointer;
    transition: transform 220ms var(--ease), background 220ms ease, opacity 220ms ease;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
}

.hero-dots button.is-active {
    width: 32px;
    background: var(--gold);
}

.hero-arrows button {
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.hero-arrows button:hover,
.hero-arrows button:focus-visible {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.hero-arrows button::before {
    width: 10px;
    height: 10px;
    content: "";
    border-top: 2px solid currentColor;
    border-left: 2px solid currentColor;
}

.hero-arrows [data-slide-prev]::before {
    transform: translateX(2px) rotate(-45deg);
}

.hero-arrows [data-slide-next]::before {
    transform: translateX(-2px) rotate(135deg);
}

.stat-ribbon {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    width: min(1320px, calc(100% - 40px));
    margin: 0 auto;
    border: 1px solid rgba(221, 231, 225, 0.82);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: 0 24px 70px rgba(7, 28, 37, 0.14);
}

.stat-item {
    min-height: 124px;
    padding: 26px clamp(18px, 4vw, 54px);
    background: rgba(255, 255, 255, 0.94);
}

.stat-item span,
.service-number,
.process-step-number,
.contact-grid span {
    display: block;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 950;
    text-transform: uppercase;
}

.stat-item strong {
    display: block;
    margin-top: 8px;
    color: var(--deep);
    font-size: 2.1rem;
    line-height: 1.1;
}

.section-pad {
    padding: 104px 0;
}

.about-section,
.overview-section,
.markets-section {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.78fr);
    align-items: center;
    gap: 74px;
}

.section-copy h2,
.section-heading h2,
.process-intro h2,
.market-copy h2,
.cta-content h2,
.agents-panel h2,
.accreditation-copy h2,
.profile-card h2,
.concern-card h2,
.contact-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: 3.25rem;
    line-height: 1.04;
    letter-spacing: 0;
}

.section-copy p,
.process-intro p,
.market-copy p,
.cta-content p,
.service-card p,
.about-card p,
.management-card p,
.agents-panel p,
.accreditation-copy p,
.profile-card p,
.concern-card p,
.contact-copy p {
    color: var(--muted);
    line-height: 1.75;
}

.section-copy p {
    max-width: 660px;
}

.about-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.about-points span,
.market-list span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    background: #ffffff;
    color: #33433c;
    font-size: 0.9rem;
    font-weight: 850;
}

.image-stack {
    position: relative;
    min-height: 560px;
}

.image-frame {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border-radius: var(--radius);
    background: var(--mist);
    box-shadow: var(--shadow);
}

.image-frame-large {
    inset: 0 0 70px 46px;
}

.image-frame img,
.market-media img,
.cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    width: min(260px, 72%);
    border-radius: var(--radius);
    padding: 24px;
    color: #ffffff;
    background: var(--accent-dark);
    box-shadow: 0 26px 70px rgba(8, 103, 80, 0.28);
}

.floating-badge span {
    display: block;
    color: var(--gold);
    font-size: 2.4rem;
    font-weight: 950;
    line-height: 1;
}

.floating-badge strong {
    display: block;
    margin-top: 8px;
    line-height: 1.35;
}

.services-section {
    width: 100%;
    max-width: none;
    border-top: 1px solid rgba(221, 231, 225, 0.72);
    padding: 96px 0 104px;
    background: #f2f4f3;
}

.services-section .section-heading,
.services-section .service-grid {
    width: min(1300px, calc(100% - 40px));
    margin-inline: auto;
}

.service-heading {
    margin-bottom: 42px;
    text-align: center;
}

.service-heading .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: #005f5a;
    letter-spacing: 0.1em;
}

.service-heading .eyebrow::before {
    display: inline-block;
    width: 11px;
    height: 18px;
    border-radius: 999px 999px 2px 2px;
    content: "";
    background: linear-gradient(160deg, #005f5a 0 52%, transparent 54%),
        linear-gradient(24deg, transparent 0 36%, #005f5a 38% 100%);
    transform: rotate(-18deg);
}

.service-heading h2 {
    max-width: none;
    color: #1e2026;
    font-size: clamp(2.55rem, 4vw, 3.85rem);
    line-height: 1.05;
}

.service-heading > p:last-child {
    max-width: 680px;
    margin: 18px auto 0;
    color: #636a73;
    font-size: 1.08rem;
    line-height: 1.7;
}

.about-card-grid,
.management-grid,
.document-grid,
.gallery-grid,
.team-grid {
    display: grid;
    gap: 18px;
}

.about-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card,
.document-card,
.team-card,
.concern-card,
.profile-card,
.agents-panel,
.management-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
}

.about-card {
    min-height: 230px;
    padding: 28px;
}

.about-card h3,
.document-card h3,
.team-card h3,
.management-card h3 {
    margin: 0 0 12px;
    color: var(--deep);
    font-size: 1.24rem;
}

.about-card p,
.management-card p {
    margin: 0;
}

.management-section {
    padding-top: 0;
}

.management-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.management-card {
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(7, 28, 37, 0.08);
}

.management-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.management-card div {
    padding: 24px;
}

.management-card span,
.document-card-index,
.team-card span,
.contact-list span {
    display: block;
    color: var(--coral);
    font-size: 0.74rem;
    font-weight: 950;
    text-transform: uppercase;
}

.section-heading {
    display: block;
    margin-bottom: 38px;
}

.section-heading h2 {
    max-width: 800px;
}

.services-section .service-heading h2 {
    max-width: none;
    text-align: center;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.service-card,
.leader-card,
.process-step {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms ease;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 0;
    border: 0;
    border-radius: 28px;
    padding: 20px 20px 28px;
    background: #ffffff;
    box-shadow: none;
}

.service-media {
    position: relative;
    overflow: visible;
    height: 248px;
    margin: 0;
    border-radius: 16px;
}

.service-media img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    right: -4px;
    bottom: -12px;
    display: grid;
    width: 78px;
    height: 78px;
    place-items: center;
    border: 5px solid #ffffff;
    border-radius: 50%;
    color: #f2c84b;
    background: #005f5a;
    box-shadow: 0 16px 36px rgba(0, 95, 90, 0.2);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.service-body {
    padding: 28px 10px 0;
}

.service-dots {
    display: flex;
    justify-content: center;
    gap: 11px;
    margin-top: 34px;
}

.service-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #005f5a;
}

.service-dots span + span {
    background: #7ab1ad;
}

.documents-section,
.team-section {
    border-top: 1px solid var(--line);
}

.document-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-card {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 148px;
    appearance: none;
    cursor: pointer;
    text-align: left;
    padding: 24px;
    color: inherit;
    font: inherit;
    background:
        linear-gradient(140deg, rgba(231, 245, 241, 0.68), rgba(255, 255, 255, 0) 44%),
        #ffffff;
    transition: transform 260ms var(--ease), border-color 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.document-card h3 {
    margin-top: 18px;
}

.document-card p {
    max-width: 300px;
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
    line-height: 1.55;
}

.document-card::after {
    position: absolute;
    right: 20px;
    bottom: 20px;
    content: "View";
    color: var(--accent-dark);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.document-card:hover,
.document-card:focus-visible {
    border-color: rgba(13, 148, 120, 0.38);
    box-shadow: 0 22px 58px rgba(7, 28, 37, 0.1);
    outline: none;
    transform: translateY(-5px);
}

.document-card-status {
    display: inline-flex;
    width: fit-content;
    margin-top: 14px;
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--accent-dark);
    background: rgba(13, 148, 120, 0.1);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.document-card.is-pending .document-card-status {
    color: #8b5b16;
    background: rgba(242, 184, 75, 0.18);
}

.document-card.is-pending::after {
    color: #8b5b16;
}

.document-viewer[hidden] {
    display: none;
}

.document-viewer {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.document-viewer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 28, 37, 0.72);
    backdrop-filter: blur(10px);
}

.document-viewer-panel {
    position: relative;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    width: min(1040px, 100%);
    height: min(760px, 86vh);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.document-viewer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding: 20px 24px;
}

.document-viewer-header span {
    display: block;
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.document-viewer-header h3 {
    margin: 5px 0 0;
    color: var(--deep);
    font-size: 1.32rem;
    line-height: 1.2;
}

.document-viewer-close {
    min-height: 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 14px;
    color: var(--deep);
    background: #ffffff;
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    transition: border-color 220ms ease, background 220ms ease, transform 220ms var(--ease);
}

.document-viewer-close:hover,
.document-viewer-close:focus-visible {
    border-color: rgba(13, 148, 120, 0.42);
    background: var(--mist);
    outline: none;
    transform: translateY(-2px);
}

.document-viewer-body {
    position: relative;
    min-height: 0;
    background: #edf4f1;
}

.document-viewer-body iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.document-viewer-empty {
    display: grid;
    height: 100%;
    place-content: center;
    padding: 34px;
    color: var(--muted);
    text-align: center;
}

.document-viewer-empty[hidden] {
    display: none;
}

.document-viewer-empty h4 {
    margin: 0 0 10px;
    color: var(--deep);
    font-size: 1.6rem;
}

.document-viewer-empty p {
    max-width: 480px;
    margin: 0;
    line-height: 1.7;
}

.document-viewer-footer {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid var(--line);
    padding: 14px 20px;
    background: #ffffff;
}

body.is-document-viewer-open {
    overflow: hidden;
}

.agents-section {
    width: 100%;
    max-width: none;
    background: linear-gradient(135deg, var(--accent-dark), var(--deep));
}

.agents-panel {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    padding: 58px;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
        rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
}

.agents-panel h2,
.agents-panel p {
    color: #ffffff;
}

.agents-panel p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
}

.accreditation-section,
.contact-section {
    display: grid;
    grid-template-columns: minmax(320px, 0.75fr) minmax(0, 1fr);
    align-items: center;
    gap: 60px;
}

.accreditation-media {
    overflow: hidden;
    height: 520px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.accreditation-media img,
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 36px;
    color: #ffffff;
    background:
        linear-gradient(120deg, rgba(239, 111, 79, 0.36), transparent 40%),
        var(--deep);
}

.profile-card h2,
.profile-card p {
    color: #ffffff;
}

.profile-card p {
    color: rgba(255, 255, 255, 0.74);
}

.gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-card {
    position: relative;
    overflow: hidden;
    height: 310px;
    margin: 0;
    border-radius: var(--radius);
    background: var(--mist);
}

.gallery-card figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    border-radius: var(--radius);
    padding: 12px 14px;
    color: #ffffff;
    background: rgba(7, 28, 37, 0.72);
    font-weight: 900;
    backdrop-filter: blur(12px);
}

.team-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.team-card {
    overflow: hidden;
    padding: 0;
}

.team-card > span {
    display: grid;
    width: 62px;
    height: 62px;
    margin: 24px 24px 0;
    place-items: center;
    border-radius: var(--radius);
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent), var(--coral));
    font-size: 1.5rem;
}

.team-card > img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center top;
}

.team-card > div {
    padding: 22px 24px 24px;
}

.team-card h3 {
    margin-top: 0;
}

.team-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.concern-card {
    padding: 44px;
    background:
        linear-gradient(135deg, rgba(13, 148, 120, 0.14), transparent 48%),
        #ffffff;
}

.contact-section {
    align-items: start;
    grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.68fr);
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-list a {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    background: #ffffff;
    color: var(--deep);
    font-weight: 850;
    word-break: break-word;
}

.feedback-form {
    display: grid;
    gap: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    background: #ffffff;
    box-shadow: 0 18px 58px rgba(7, 28, 37, 0.08);
}

.feedback-form label {
    display: grid;
    gap: 8px;
    color: var(--deep);
    font-size: 0.9rem;
    font-weight: 900;
}

.feedback-form input,
.feedback-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 14px;
    color: var(--deep);
    background: #fbfdfc;
    font: inherit;
}

.feedback-form input:focus,
.feedback-form textarea:focus {
    border-color: var(--accent);
    outline: 3px solid rgba(13, 148, 120, 0.16);
}

.form-message {
    margin: 0;
    color: var(--coral);
    font-size: 0.92rem;
    font-weight: 800;
    line-height: 1.5;
}

.form-message.is-success {
    color: var(--accent-dark);
}

.map-panel {
    grid-column: 1 / -1;
    overflow: hidden;
    height: 360px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--mist);
}

.map-panel iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.service-card:hover {
    box-shadow: 0 24px 62px rgba(7, 28, 37, 0.11);
    transform: translateY(-8px);
}

.leader-card:hover {
    border-color: rgba(13, 148, 120, 0.36);
    box-shadow: 0 22px 58px rgba(7, 28, 37, 0.1);
    transform: translateY(-6px);
}

.service-number {
    color: #005f5a;
    font-size: 0.95rem;
    font-weight: 750;
    text-transform: none;
}

.process-step h3,
.leader-card h3 {
    margin: 20px 0 10px;
    color: var(--deep);
    font-size: 1.2rem;
    line-height: 1.25;
}

.service-card h3 {
    margin: 20px 0 0;
    border-bottom: 1px solid #d8dddc;
    padding-bottom: 24px;
    color: #202226;
    font-size: 1.62rem;
    line-height: 1.3;
}

.service-card p {
    margin: 20px 0 0;
    color: #59616a;
    font-size: 1.02rem;
    line-height: 1.68;
}

@media (max-width: 1180px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.process-section {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: none;
    padding: clamp(88px, 9vw, 126px) 0;
    background:
        linear-gradient(180deg, rgba(7, 28, 37, 0.98), rgba(8, 40, 50, 0.98)),
        var(--deep);
    color: #ffffff;
    isolation: isolate;
}

.process-section::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(120deg, rgba(13, 148, 120, 0.28), transparent 42%),
        linear-gradient(310deg, rgba(242, 184, 75, 0.18), transparent 46%);
    background-size: 76px 76px, 76px 76px, auto, auto;
    opacity: 0.86;
    pointer-events: none;
}

.process-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.process-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.44fr);
    width: auto;
    gap: clamp(28px, 5vw, 68px);
    align-items: end;
    margin-bottom: 50px;
}

.process-intro h2 {
    max-width: 900px;
    color: #ffffff;
    text-wrap: balance;
}

.process-summary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(16px);
}

.process-summary strong {
    display: block;
    color: var(--gold);
    font-size: 0.74rem;
    font-weight: 950;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.process-summary span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.03rem;
    font-weight: 760;
    line-height: 1.6;
}

.process-route {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.process-step {
    --route-accent: var(--gold);
    position: relative;
    display: flex;
    min-height: 172px;
    align-items: flex-start;
    gap: 18px;
    overflow: hidden;
    padding: 22px;
    border-color: rgba(255, 255, 255, 0.14);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.052));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 22px 46px rgba(0, 0, 0, 0.13);
    backdrop-filter: blur(18px);
    transition: transform 320ms var(--ease), border-color 320ms ease, background 320ms ease, box-shadow 320ms ease;
}

.process-step::before {
    position: absolute;
    top: 48px;
    left: -18px;
    width: 18px;
    height: 1px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(242, 184, 75, 0.72));
    opacity: 0.78;
}

.process-step:nth-child(4n + 1)::before {
    display: none;
}

.process-step::after {
    position: absolute;
    right: 18px;
    bottom: 17px;
    left: 18px;
    height: 3px;
    border-radius: 999px;
    content: "";
    background: linear-gradient(90deg, var(--route-accent), rgba(255, 255, 255, 0));
    opacity: 0.78;
}

.process-step:hover {
    border-color: rgba(255, 255, 255, 0.32);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.19), rgba(255, 255, 255, 0.07));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 28px 58px rgba(0, 0, 0, 0.18);
    transform: translateY(-6px);
}

.process-step--selection {
    --route-accent: #f2b84b;
}

.process-step--clearance {
    --route-accent: #4ad0b5;
}

.process-step--visa {
    --route-accent: #ef6f4f;
}

.process-step--dispatch {
    --route-accent: #8fd4ff;
}

.process-step-number {
    display: grid;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: var(--deep);
    background: linear-gradient(135deg, #fff7d8, var(--route-accent));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
    font-size: 0.86rem;
    line-height: 1;
}

.process-step-copy {
    min-width: 0;
    padding-top: 4px;
}

.process-step-phase {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    color: var(--route-accent);
    font-size: 0.68rem;
    font-weight: 950;
    letter-spacing: 0.13em;
    line-height: 1;
    text-transform: uppercase;
}

.process-step-phase::before {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    content: "";
    background: currentColor;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.08);
}

.process-step h3 {
    margin: 14px 0 0;
    color: #ffffff;
    font-size: 1.08rem;
    line-height: 1.35;
    text-wrap: balance;
}

@media (max-width: 1180px) {
    .process-route {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .process-step:nth-child(4n + 1)::before {
        display: block;
    }

    .process-step:nth-child(3n + 1)::before {
        display: none;
    }
}

.markets-section {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.95fr);
}

.market-media {
    overflow: hidden;
    height: 600px;
    border-radius: var(--radius);
    background: var(--mist);
    box-shadow: var(--shadow);
}

.market-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.leadership-section {
    padding-top: 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.leader-card {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 24px;
}

.leader-card span {
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    border-radius: var(--radius);
    color: #ffffff;
    background: linear-gradient(135deg, var(--coral), var(--accent));
    font-size: 1.8rem;
    font-weight: 950;
}

.leader-card h3 {
    margin: 0 0 5px;
}

.leader-card p {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.cta-section {
    position: relative;
    overflow: hidden;
    min-height: 640px;
    isolation: isolate;
}

.cta-bg,
.cta-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.cta-bg {
    z-index: -3;
}

.cta-overlay {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 28, 37, 0.9), rgba(7, 28, 37, 0.68) 55%, rgba(7, 28, 37, 0.2)),
        linear-gradient(0deg, rgba(7, 28, 37, 0.5), transparent 45%);
}

.cta-content {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    padding: 104px 0;
    color: #ffffff;
}

.cta-content h2 {
    max-width: 820px;
    color: #ffffff;
}

.cta-content > p {
    max-width: 680px;
    color: rgba(255, 255, 255, 0.75);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 860px;
    gap: 12px;
    margin-top: 34px;
}

.contact-grid a {
    min-height: 104px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    padding: 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transition: transform 260ms var(--ease), border-color 260ms ease, background 260ms ease;
}

.contact-grid a:hover {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-4px);
}

.contact-grid span {
    color: var(--gold);
}

.contact-grid strong {
    display: block;
    margin-top: 8px;
    color: #ffffff;
    line-height: 1.35;
    word-break: break-word;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    padding: 38px 0;
    color: var(--muted);
}

.footer-brand {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--deep);
}

.footer-logo {
    display: block;
    width: min(280px, 100%);
    height: auto;
}

.site-footer p {
    margin: 0;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    color: #3b4c45;
    font-weight: 850;
}

.copyright {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    font-size: 0.92rem;
}

.page-header,
.content-page {
    width: min(1120px, calc(100% - 40px));
    margin-inline: auto;
}

.page-header {
    padding: 86px 0 36px;
}

.page-header h1 {
    max-width: 760px;
    margin: 0;
    color: var(--deep);
    font-size: 4rem;
    line-height: 1;
}

.page-header p,
.content-page {
    color: var(--muted);
    line-height: 1.75;
}

.content-page {
    max-width: 780px;
    padding-bottom: 72px;
}

.about-page-hero {
    position: relative;
    display: grid;
    min-height: clamp(560px, calc(100svh - 150px), 740px);
    align-items: end;
    overflow: hidden;
    color: #ffffff;
    background: var(--deep);
    isolation: isolate;
}

.about-page-hero-media,
.about-page-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-page-hero-media {
    z-index: -3;
    object-fit: cover;
}

.about-page-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 28, 37, 0.92), rgba(7, 28, 37, 0.68) 52%, rgba(7, 28, 37, 0.22)),
        linear-gradient(0deg, rgba(7, 28, 37, 0.72), rgba(7, 28, 37, 0.1) 62%);
}

.about-page-hero-inner {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    padding: 86px 0 116px;
}

.about-page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.about-page-hero p:not(.eyebrow) {
    max-width: 690px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.75;
}

.about-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 36px;
}

.about-page-stat-band {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    width: min(1180px, calc(100% - 40px));
    margin: -54px auto 0;
    overflow: hidden;
    border: 1px solid rgba(221, 231, 225, 0.82);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: 0 24px 70px rgba(7, 28, 37, 0.14);
    gap: 1px;
}

.about-page-stat-band div {
    min-height: 122px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.95);
}

.about-page-stat-band span,
.about-page-pillar span,
.about-page-timeline-list span,
.about-page-workflow-grid span {
    display: block;
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-page-stat-band strong {
    display: block;
    margin-top: 9px;
    color: var(--deep);
    font-size: 2rem;
    line-height: 1.1;
}

.about-page-story,
.about-page-network,
.about-page-people {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
    width: min(1180px, calc(100% - 40px));
    align-items: center;
    gap: clamp(46px, 6vw, 82px);
    margin-inline: auto;
}

.about-page-copy h2,
.about-page-timeline-intro h2,
.about-page-values-panel h2,
.about-page-network-copy h2,
.about-page-people-copy h2,
.about-page-cta h2 {
    margin: 0;
    color: var(--ink);
    font-size: 3.25rem;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.about-page-copy p,
.about-page-timeline-intro p,
.about-page-network-copy p,
.about-page-people-copy p {
    max-width: 680px;
    color: var(--muted);
    line-height: 1.78;
}

.about-page-story-media,
.about-page-network-media {
    position: relative;
    overflow: hidden;
    height: 560px;
    margin: 0;
    border-radius: var(--radius);
    background: var(--mist);
    box-shadow: var(--shadow);
}

.about-page-story-media img,
.about-page-network-media img,
.about-page-people-stack img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page-story-media figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    border-radius: var(--radius);
    padding: 18px;
    color: #ffffff;
    background: rgba(7, 28, 37, 0.74);
    backdrop-filter: blur(14px);
}

.about-page-story-media span {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-page-story-media strong {
    display: block;
    margin-top: 7px;
    line-height: 1.35;
}

.about-page-pillars,
.about-page-workflow {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
    border-top: 1px solid var(--line);
}

.about-page-pillar-grid,
.about-page-workflow-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.about-page-pillar,
.about-page-workflow-grid article {
    min-height: 242px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    background:
        linear-gradient(140deg, rgba(231, 245, 241, 0.68), rgba(255, 255, 255, 0) 48%),
        #ffffff;
    transition: transform 300ms var(--ease), box-shadow 300ms ease, border-color 300ms ease;
}

.about-page-pillar:hover,
.about-page-workflow-grid article:hover {
    border-color: rgba(13, 148, 120, 0.38);
    box-shadow: 0 22px 58px rgba(7, 28, 37, 0.1);
    transform: translateY(-6px);
}

.about-page-pillar h3,
.about-page-workflow-grid h3,
.about-page-timeline-list h3 {
    margin: 20px 0 12px;
    color: var(--deep);
    font-size: 1.35rem;
    line-height: 1.25;
}

.about-page-pillar p,
.about-page-workflow-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.about-page-timeline {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: none;
    color: #ffffff;
    background: var(--deep);
}

.about-page-timeline::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(120deg, rgba(13, 148, 120, 0.24), transparent 42%),
        linear-gradient(310deg, rgba(239, 111, 79, 0.14), transparent 44%);
    background-size: 78px 78px, 78px 78px, auto, auto;
    pointer-events: none;
}

.about-page-timeline-intro,
.about-page-timeline-list {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.about-page-timeline-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(260px, 0.42fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 44px;
}

.about-page-timeline-intro h2,
.about-page-cta h2 {
    color: #ffffff;
}

.about-page-timeline-intro p {
    color: rgba(255, 255, 255, 0.74);
}

.about-page-timeline-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    padding: 0;
    list-style: none;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
}

.about-page-timeline-list li {
    min-height: 210px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(15px);
}

.about-page-timeline-list span {
    color: var(--gold);
}

.about-page-timeline-list h3 {
    color: #ffffff;
}

.about-page-values {
    width: 100%;
    max-width: none;
    padding: 0;
    background: linear-gradient(135deg, var(--accent-dark), var(--deep));
}

.about-page-values-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
    width: min(1180px, calc(100% - 40px));
    align-items: center;
    gap: 48px;
    margin-inline: auto;
    padding: 72px 0;
    color: #ffffff;
}

.about-page-values-panel h2 {
    color: #ffffff;
}

.about-page-value-list,
.about-page-market-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-page-value-list span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 11px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 850;
}

.about-page-workflow-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-page-workflow-grid article {
    min-height: 220px;
}

.about-page-network {
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.95fr);
}

.about-page-market-list {
    margin-top: 28px;
}

.about-page-market-list span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    color: #33433c;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 850;
}

.about-page-people {
    align-items: stretch;
    border-top: 1px solid var(--line);
}

.about-page-people-copy {
    align-self: center;
}

.about-page-people-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-height: 430px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-page-people-stack img:nth-child(2) {
    transform: scale(1.04);
}

.about-page-cta {
    width: 100%;
    max-width: none;
    padding: 84px 0;
    background: var(--deep);
}

.about-page-cta-inner {
    display: flex;
    width: min(1180px, calc(100% - 40px));
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-inline: auto;
    color: #ffffff;
}

.about-page-cta h2 {
    max-width: 760px;
}

.management-page-hero {
    position: relative;
    display: grid;
    min-height: clamp(540px, calc(100svh - 150px), 700px);
    align-items: end;
    overflow: hidden;
    color: #ffffff;
    background: var(--deep);
    isolation: isolate;
}

.management-page-hero-media,
.management-page-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.management-page-hero-media {
    z-index: -3;
    object-fit: cover;
}

.management-page-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 28, 37, 0.94), rgba(7, 28, 37, 0.72) 54%, rgba(7, 28, 37, 0.34)),
        linear-gradient(0deg, rgba(7, 28, 37, 0.68), transparent 58%);
}

.management-page-hero-inner,
.management-page-owners,
.management-page-direction-intro,
.management-page-direction-grid,
.management-page-principles-inner {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.management-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(250px, 0.32fr);
    gap: 42px;
    align-items: end;
    padding: 90px 0 112px;
}

.management-page-hero h1 {
    max-width: 890px;
    margin: 0;
    font-size: clamp(3.2rem, 5.7vw, 5.65rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.management-page-hero p:not(.eyebrow) {
    max-width: 690px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.75;
}

.management-page-hero-note {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.management-page-hero-note span {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.management-page-hero-note strong {
    display: block;
    margin-top: 10px;
    color: #ffffff;
    font-size: 2.35rem;
    line-height: 1;
}

.management-page-owner-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.management-page-owner-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 18px 60px rgba(7, 28, 37, 0.08);
    transition: transform 300ms var(--ease), box-shadow 300ms ease, border-color 300ms ease;
}

.management-page-owner-card:hover {
    border-color: rgba(13, 148, 120, 0.38);
    box-shadow: 0 26px 70px rgba(7, 28, 37, 0.12);
    transform: translateY(-7px);
}

.management-page-owner-card figure {
    overflow: hidden;
    height: 310px;
    margin: 0;
    background: var(--mist);
}

.management-page-owner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.management-page-owner-card > div {
    padding: 26px;
}

.management-page-owner-card span,
.management-page-direction-grid span {
    display: block;
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.management-page-owner-card h3,
.management-page-direction-grid h3 {
    margin: 12px 0 12px;
    color: var(--deep);
    font-size: 1.5rem;
    line-height: 1.2;
}

.management-page-owner-card p,
.management-page-direction-grid p,
.management-page-principles-inner p {
    color: var(--muted);
    line-height: 1.72;
}

.management-page-focus-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.management-page-focus-list em {
    border-radius: 999px;
    padding: 8px 10px;
    color: var(--accent-dark);
    background: rgba(13, 148, 120, 0.1);
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 900;
}

.management-page-direction {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: none;
    color: #ffffff;
    background: var(--deep);
}

.management-page-direction::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(120deg, rgba(13, 148, 120, 0.25), transparent 42%),
        linear-gradient(310deg, rgba(242, 184, 75, 0.16), transparent 44%);
    background-size: 78px 78px, 78px 78px, auto, auto;
    pointer-events: none;
}

.management-page-direction-intro,
.management-page-direction-grid {
    position: relative;
    z-index: 1;
}

.management-page-direction-intro {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.42fr);
    gap: 48px;
    align-items: end;
    margin-bottom: 42px;
}

.management-page-direction-intro h2,
.management-page-principles-inner h2 {
    margin: 0;
    color: #ffffff;
    font-size: 3.25rem;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.management-page-direction-intro p {
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.management-page-direction-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.14);
}

.management-page-direction-grid article {
    min-height: 282px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.075);
    backdrop-filter: blur(16px);
}

.management-page-direction-grid span {
    color: var(--gold);
}

.management-page-direction-grid h3 {
    color: #ffffff;
}

.management-page-direction-grid p {
    color: rgba(255, 255, 255, 0.74);
}

.management-page-principles {
    width: 100%;
    max-width: none;
    padding: 0;
    background: linear-gradient(135deg, var(--accent-dark), var(--deep));
}

.management-page-principles-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.88fr);
    gap: 42px;
    align-items: center;
    padding: 78px 0;
    color: #ffffff;
}

.management-page-principles-inner p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.74);
}

.management-page-principle-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.management-page-principle-list span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 11px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 850;
}

.management-page-cta {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 4px;
}

.company-page-hero {
    position: relative;
    display: grid;
    min-height: clamp(560px, calc(100svh - 150px), 720px);
    align-items: end;
    overflow: hidden;
    color: #ffffff;
    background: var(--deep);
    isolation: isolate;
}

.company-page-hero-media,
.company-page-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.company-page-hero-media {
    z-index: -3;
    object-fit: cover;
}

.company-page-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 28, 37, 0.95), rgba(7, 28, 37, 0.72) 54%, rgba(7, 28, 37, 0.22)),
        linear-gradient(0deg, rgba(7, 28, 37, 0.72), transparent 58%);
}

.company-page-hero-inner,
.company-page-stat-band,
.company-page-overview,
.company-page-capabilities,
.company-page-reach {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.company-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.36fr);
    gap: 44px;
    align-items: end;
    padding: 88px 0 112px;
}

.company-page-hero h1 {
    max-width: 940px;
    margin: 0;
    font-size: clamp(3.15rem, 5.75vw, 5.7rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.company-page-hero p:not(.eyebrow) {
    max-width: 700px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.75;
}

.company-page-hero-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.company-page-hero-card span,
.company-page-stat-band span,
.company-page-capability-grid span,
.company-page-overview-media span {
    display: block;
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.company-page-hero-card span {
    color: var(--gold);
}

.company-page-hero-card strong {
    display: block;
    margin-top: 10px;
    color: #ffffff;
    font-size: 2.45rem;
    line-height: 1;
}

.company-page-hero-card p {
    margin-top: 16px !important;
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
}

.company-page-stat-band {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: -54px;
    overflow: hidden;
    border: 1px solid rgba(221, 231, 225, 0.82);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: 0 24px 70px rgba(7, 28, 37, 0.14);
    gap: 1px;
}

.company-page-stat-band div {
    min-height: 120px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.95);
}

.company-page-stat-band strong {
    display: block;
    margin-top: 9px;
    color: var(--deep);
    font-size: 2rem;
    line-height: 1.1;
}

.company-page-overview,
.company-page-reach {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
    align-items: center;
    gap: clamp(46px, 6vw, 82px);
}

.company-page-overview-copy h2,
.company-page-reach-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: 3.25rem;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.company-page-overview-copy p,
.company-page-reach-copy p {
    max-width: 680px;
    color: var(--muted);
    line-height: 1.78;
}

.company-page-identity-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.company-page-identity-list span {
    border-left: 3px solid var(--accent);
    padding: 14px 18px;
    color: #33433c;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(7, 28, 37, 0.07);
    font-weight: 820;
    line-height: 1.55;
}

.company-page-overview-media,
.company-page-reach-media {
    position: relative;
    overflow: hidden;
    height: 560px;
    margin: 0;
    border-radius: var(--radius);
    background: var(--mist);
    box-shadow: var(--shadow);
}

.company-page-overview-media img,
.company-page-reach-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.company-page-overview-media figcaption {
    position: absolute;
    right: 18px;
    bottom: 18px;
    left: 18px;
    border-radius: var(--radius);
    padding: 18px;
    color: #ffffff;
    background: rgba(7, 28, 37, 0.74);
    backdrop-filter: blur(14px);
}

.company-page-overview-media span {
    color: var(--gold);
}

.company-page-overview-media strong {
    display: block;
    margin-top: 7px;
    line-height: 1.35;
}

.company-page-capabilities {
    border-top: 1px solid var(--line);
}

.company-page-capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.company-page-capability-grid article {
    min-height: 260px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    background:
        linear-gradient(140deg, rgba(231, 245, 241, 0.68), rgba(255, 255, 255, 0) 48%),
        #ffffff;
    transition: transform 300ms var(--ease), box-shadow 300ms ease, border-color 300ms ease;
}

.company-page-capability-grid article:hover {
    border-color: rgba(13, 148, 120, 0.38);
    box-shadow: 0 22px 58px rgba(7, 28, 37, 0.1);
    transform: translateY(-6px);
}

.company-page-capability-grid h3 {
    margin: 20px 0 12px;
    color: var(--deep);
    font-size: 1.28rem;
    line-height: 1.25;
}

.company-page-capability-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.company-page-reach {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.95fr);
    padding-right: max(20px, calc((100vw - 1180px) / 2));
    padding-left: max(20px, calc((100vw - 1180px) / 2));
    color: #ffffff;
    background: var(--deep);
}

.company-page-reach-copy h2 {
    color: #ffffff;
}

.company-page-reach-copy p {
    color: rgba(255, 255, 255, 0.74);
}

.company-page-market-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.company-page-market-list span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.9rem;
    font-weight: 850;
}

.company-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.documents-page-hero {
    position: relative;
    display: grid;
    min-height: clamp(520px, calc(100svh - 150px), 680px);
    align-items: end;
    overflow: hidden;
    color: #ffffff;
    background: var(--deep);
    isolation: isolate;
}

.documents-page-hero-media,
.documents-page-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.documents-page-hero-media {
    z-index: -3;
    object-fit: cover;
}

.documents-page-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 28, 37, 0.94), rgba(7, 28, 37, 0.7) 54%, rgba(7, 28, 37, 0.28)),
        linear-gradient(0deg, rgba(7, 28, 37, 0.68), transparent 58%);
}

.documents-page-hero-inner,
.documents-page-registry,
.documents-page-note-inner {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.documents-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.36fr);
    gap: 44px;
    align-items: end;
    padding: 88px 0 110px;
}

.documents-page-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(3.1rem, 5.6vw, 5.55rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.documents-page-hero p:not(.eyebrow) {
    max-width: 700px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.75;
}

.documents-page-hero-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.documents-page-hero-card span {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.documents-page-hero-card strong {
    display: block;
    margin-top: 10px;
    color: #ffffff;
    font-size: 2.45rem;
    line-height: 1;
}

.documents-page-hero-card p {
    margin-top: 16px !important;
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
}

.documents-page-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 38px;
}

.documents-page-heading h2,
.documents-page-note-inner h2 {
    max-width: 820px;
    margin: 0;
    color: var(--ink);
    font-size: 3.25rem;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.documents-page-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.documents-page-grid .document-card {
    min-height: 210px;
}

.documents-page-note {
    width: 100%;
    max-width: none;
    padding: 0;
    background: linear-gradient(135deg, var(--accent-dark), var(--deep));
}

.documents-page-note-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 72px 0;
    color: #ffffff;
}

.documents-page-note-inner h2 {
    color: #ffffff;
}

.documents-page-note-inner p {
    max-width: 660px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.75;
}

.accreditation-page-hero {
    position: relative;
    display: grid;
    min-height: clamp(520px, calc(100svh - 150px), 680px);
    align-items: end;
    overflow: hidden;
    color: #ffffff;
    background: var(--deep);
    isolation: isolate;
}

.accreditation-page-hero-media,
.accreditation-page-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.accreditation-page-hero-media {
    z-index: -3;
    object-fit: cover;
}

.accreditation-page-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 28, 37, 0.95), rgba(7, 28, 37, 0.72) 54%, rgba(7, 28, 37, 0.26)),
        linear-gradient(0deg, rgba(7, 28, 37, 0.68), transparent 58%);
}

.accreditation-page-hero-inner,
.accreditation-page-proof,
.accreditation-page-cta-inner {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.accreditation-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(280px, 0.36fr);
    gap: 44px;
    align-items: end;
    padding: 88px 0 110px;
}

.accreditation-page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: clamp(3.1rem, 5.65vw, 5.55rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.accreditation-page-hero p:not(.eyebrow) {
    max-width: 700px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.75;
}

.accreditation-page-hero-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.accreditation-page-hero-card span,
.accreditation-page-ledger-grid span {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.accreditation-page-hero-card strong {
    display: block;
    margin-top: 10px;
    color: #ffffff;
    font-size: 2.45rem;
    line-height: 1;
}

.accreditation-page-hero-card p {
    margin-top: 16px !important;
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
}

.accreditation-page-proof-main {
    display: grid;
    grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(46px, 6vw, 82px);
}

.accreditation-page-proof-media {
    overflow: hidden;
    height: 540px;
    margin: 0;
    border-radius: var(--radius);
    background: var(--mist);
    box-shadow: var(--shadow);
}

.accreditation-page-proof-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.accreditation-page-proof-copy h2,
.accreditation-page-ledger h2,
.accreditation-page-cta h2 {
    margin: 0;
    color: var(--ink);
    font-size: 3.25rem;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.accreditation-page-proof-copy p,
.accreditation-page-cta p {
    max-width: 680px;
    color: var(--muted);
    line-height: 1.78;
}

.accreditation-page-standard-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.accreditation-page-standard-list span {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    color: #33433c;
    background: #ffffff;
    font-size: 0.9rem;
    font-weight: 850;
}

.accreditation-page-ledger {
    margin-top: 72px;
    border-top: 1px solid var(--line);
    padding-top: 58px;
}

.accreditation-page-ledger-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.accreditation-page-ledger-grid article {
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    background:
        linear-gradient(140deg, rgba(231, 245, 241, 0.68), rgba(255, 255, 255, 0) 48%),
        #ffffff;
    transition: transform 300ms var(--ease), box-shadow 300ms ease, border-color 300ms ease;
}

.accreditation-page-ledger-grid article:hover {
    border-color: rgba(13, 148, 120, 0.38);
    box-shadow: 0 22px 58px rgba(7, 28, 37, 0.1);
    transform: translateY(-6px);
}

.accreditation-page-ledger-grid strong {
    display: block;
    margin-top: 14px;
    color: var(--deep);
    font-size: 2.05rem;
    line-height: 1.1;
}

.accreditation-page-ledger-grid p {
    margin: 16px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

.accreditation-page-cta {
    width: 100%;
    max-width: none;
    padding: 0;
    background: linear-gradient(135deg, var(--accent-dark), var(--deep));
}

.accreditation-page-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 72px 0;
    color: #ffffff;
}

.accreditation-page-cta h2 {
    max-width: 720px;
    color: #ffffff;
}

.accreditation-page-cta p {
    color: rgba(255, 255, 255, 0.74);
}

.accreditation-page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 300px;
    gap: 12px;
}

.profile-page-hero {
    position: relative;
    display: grid;
    min-height: clamp(520px, calc(100svh - 150px), 680px);
    align-items: end;
    overflow: hidden;
    color: #ffffff;
    background: var(--deep);
    isolation: isolate;
}

.profile-page-hero-media,
.profile-page-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.profile-page-hero-media {
    z-index: -3;
    object-fit: cover;
}

.profile-page-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 28, 37, 0.95), rgba(7, 28, 37, 0.72) 54%, rgba(7, 28, 37, 0.24)),
        linear-gradient(0deg, rgba(7, 28, 37, 0.68), transparent 58%);
}

.profile-page-hero-inner,
.profile-page-viewer,
.profile-page-snapshot,
.profile-page-cta-inner {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.profile-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.36fr);
    gap: 44px;
    align-items: end;
    padding: 88px 0 110px;
}

.profile-page-hero h1 {
    max-width: 920px;
    margin: 0;
    font-size: clamp(3.1rem, 5.65vw, 5.55rem);
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.profile-page-hero p:not(.eyebrow) {
    max-width: 700px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
    line-height: 1.75;
}

.profile-page-hero-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.profile-page-hero-card span,
.profile-page-stat-band span {
    display: block;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.profile-page-hero-card strong {
    display: block;
    margin-top: 10px;
    color: #ffffff;
    font-size: 2.45rem;
    line-height: 1;
}

.profile-page-hero-card p {
    margin-top: 16px !important;
    font-size: 0.98rem !important;
    line-height: 1.6 !important;
}

.profile-page-viewer-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 24px;
    margin-bottom: 36px;
}

.profile-page-viewer-header h2,
.profile-page-cta h2 {
    max-width: 820px;
    margin: 0;
    color: var(--ink);
    font-size: 3.25rem;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.profile-page-pdf-frame {
    overflow: hidden;
    height: min(82vh, 860px);
    min-height: 640px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #edf4f1;
    box-shadow: 0 28px 90px rgba(7, 28, 37, 0.13);
}

.profile-page-pdf-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    background: #ffffff;
}

.profile-page-snapshot {
    padding-top: 0;
}

.profile-page-stat-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(221, 231, 225, 0.82);
    border-radius: var(--radius);
    background: var(--line);
    box-shadow: 0 24px 70px rgba(7, 28, 37, 0.12);
    gap: 1px;
}

.profile-page-stat-band div {
    min-height: 118px;
    padding: 26px;
    background: rgba(255, 255, 255, 0.96);
}

.profile-page-stat-band span {
    color: var(--coral);
}

.profile-page-stat-band strong {
    display: block;
    margin-top: 9px;
    color: var(--deep);
    font-size: 2rem;
    line-height: 1.1;
}

.profile-page-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.profile-page-snapshot-grid article {
    min-height: 208px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    background:
        linear-gradient(140deg, rgba(231, 245, 241, 0.68), rgba(255, 255, 255, 0) 48%),
        #ffffff;
}

.profile-page-snapshot-grid h3 {
    margin: 0 0 12px;
    color: var(--deep);
    font-size: 1.35rem;
}

.profile-page-snapshot-grid p {
    margin: 0;
    color: var(--muted);
    line-height: 1.72;
}

.profile-page-cta {
    width: 100%;
    max-width: none;
    padding: 0;
    background: linear-gradient(135deg, var(--accent-dark), var(--deep));
}

.profile-page-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) auto;
    gap: 34px;
    align-items: center;
    padding: 72px 0;
    color: #ffffff;
}

.profile-page-cta h2 {
    color: #ffffff;
}

.profile-page-point-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

.profile-page-point-list span {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 10px 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font-weight: 850;
}

.profile-page-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-width: 310px;
    gap: 12px;
}

.gallery-page-hero {
    position: relative;
    display: grid;
    min-height: 680px;
    align-items: end;
    overflow: hidden;
    color: #ffffff;
    background: var(--deep);
    isolation: isolate;
}

.gallery-page-hero-media,
.gallery-page-hero-shade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gallery-page-hero-media {
    z-index: -3;
    object-fit: cover;
}

.gallery-page-hero-shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(7, 28, 37, 0.94), rgba(7, 28, 37, 0.76) 48%, rgba(7, 28, 37, 0.22)),
        linear-gradient(0deg, rgba(7, 28, 37, 0.72), transparent 58%);
}

.gallery-page-hero-inner,
.gallery-page-featured,
.gallery-page-stories-inner,
.gallery-page-people,
.gallery-page-cta-inner {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.gallery-page-hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.64fr);
    gap: 54px;
    align-items: end;
    padding: 88px 0 110px;
}

.gallery-page-hero h1 {
    max-width: 900px;
    margin: 0;
    font-size: 5rem;
    line-height: 0.98;
    letter-spacing: 0;
    text-wrap: balance;
}

.gallery-page-hero p:not(.eyebrow) {
    max-width: 690px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.1rem;
    line-height: 1.75;
}

.gallery-page-hero-stack {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, minmax(160px, 1fr));
    gap: 12px;
}

.gallery-page-hero-thumb {
    position: relative;
    overflow: hidden;
    min-height: 160px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius);
    padding: 0;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.gallery-page-hero-thumb:first-child {
    grid-row: 1 / span 2;
}

.gallery-page-hero-thumb img,
.gallery-page-tile img,
.gallery-page-story-media img,
.gallery-page-person img,
.gallery-page-cta-rail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-page-hero-thumb img,
.gallery-page-tile img,
.gallery-page-person img {
    position: absolute;
    inset: 0;
}

.gallery-page-hero-thumb::after,
.gallery-page-tile::after,
.gallery-page-person::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(7, 28, 37, 0.74), transparent 58%);
    pointer-events: none;
}

.gallery-page-hero-thumb span {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 1;
    font-weight: 950;
    text-align: left;
}

.gallery-page-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(260px, 0.36fr);
    align-items: end;
    gap: 34px;
    margin-bottom: 38px;
}

.gallery-page-heading h2,
.gallery-page-stories-intro h2,
.gallery-page-cta h2,
.gallery-viewer-copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: 3.25rem;
    line-height: 1.04;
    letter-spacing: 0;
    text-wrap: balance;
}

.gallery-page-heading p:not(.eyebrow),
.gallery-page-story-card p,
.gallery-page-cta p,
.gallery-viewer-copy p:not(.eyebrow) {
    color: var(--muted);
    line-height: 1.75;
}

.gallery-page-mosaic {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 228px;
    gap: 16px;
}

.gallery-page-tile {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: var(--radius);
    padding: 0;
    color: #ffffff;
    background: var(--deep);
    box-shadow: 0 22px 70px rgba(7, 28, 37, 0.12);
    cursor: pointer;
    text-align: left;
    transition: transform 300ms var(--ease), box-shadow 300ms ease;
}

.gallery-page-tile:hover,
.gallery-page-hero-thumb:hover,
.gallery-page-person:hover,
.gallery-page-story-media:hover {
    box-shadow: 0 28px 78px rgba(7, 28, 37, 0.18);
    transform: translateY(-5px);
}

.gallery-page-tile.is-large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-page-tile.is-wide {
    grid-column: span 2;
}

.gallery-page-tile:last-child {
    grid-column: span 4;
}

.gallery-page-tile-content,
.gallery-page-person span {
    position: absolute;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 1;
    display: grid;
    gap: 7px;
}

.gallery-page-tile-content strong,
.gallery-page-person strong {
    color: #ffffff;
    font-size: 1.12rem;
    line-height: 1.18;
}

.gallery-page-tile-content small,
.gallery-page-person small {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.84rem;
    font-weight: 750;
    line-height: 1.45;
}

.gallery-page-stories {
    width: 100%;
    max-width: none;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(231, 245, 241, 0.58)),
        #ffffff;
}

.gallery-page-stories-inner {
    display: grid;
    grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
    gap: 58px;
}

.gallery-page-stories-intro {
    position: sticky;
    top: 128px;
    align-self: start;
}

.gallery-page-story-list {
    display: grid;
    gap: 20px;
}

.gallery-page-story-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    gap: 28px;
    align-items: center;
    border: 1px solid rgba(221, 231, 225, 0.9);
    border-radius: var(--radius);
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 58px rgba(7, 28, 37, 0.08);
}

.gallery-page-story-media {
    overflow: hidden;
    height: 236px;
    border: 0;
    border-radius: var(--radius);
    padding: 0;
    background: var(--deep);
    cursor: pointer;
    transition: transform 300ms var(--ease), box-shadow 300ms ease;
}

.gallery-page-story-card span {
    display: block;
    color: var(--coral);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.gallery-page-story-card h3 {
    margin: 12px 0 10px;
    color: var(--deep);
    font-size: 1.65rem;
    line-height: 1.12;
}

.gallery-page-story-card p {
    margin: 0;
}

.gallery-page-people-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.gallery-page-person {
    position: relative;
    overflow: hidden;
    min-height: 330px;
    border: 0;
    border-radius: var(--radius);
    padding: 0;
    color: #ffffff;
    background: var(--deep);
    box-shadow: 0 20px 62px rgba(7, 28, 37, 0.1);
    cursor: pointer;
    text-align: left;
    transition: transform 300ms var(--ease), box-shadow 300ms ease;
}

.gallery-page-person img {
    object-position: center top;
}

.gallery-page-cta {
    width: 100%;
    max-width: none;
    padding: 0;
    background: linear-gradient(135deg, var(--accent-dark), var(--deep));
}

.gallery-page-cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.42fr);
    gap: 42px;
    align-items: center;
    padding: 72px 0;
    color: #ffffff;
}

.gallery-page-cta h2 {
    max-width: 760px;
    color: #ffffff;
}

.gallery-page-cta p {
    max-width: 650px;
    color: rgba(255, 255, 255, 0.74);
}

.gallery-page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.gallery-page-cta-rail {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gallery-page-cta-rail img {
    aspect-ratio: 3 / 4;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    box-shadow: 0 26px 66px rgba(0, 0, 0, 0.22);
}

.gallery-page-cta-rail img:nth-child(2) {
    margin-top: 34px;
}

.gallery-viewer[hidden] {
    display: none;
}

.gallery-viewer {
    position: fixed;
    inset: 0;
    z-index: 70;
    display: grid;
    place-items: center;
    padding: 22px;
}

.gallery-viewer-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(7, 28, 37, 0.76);
    cursor: pointer;
}

.gallery-viewer-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
    overflow: hidden;
    width: min(1120px, calc(100vw - 36px));
    max-height: calc(100vh - 36px);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 34px 110px rgba(0, 0, 0, 0.34);
}

.gallery-viewer-media {
    display: grid;
    min-height: 560px;
    place-items: center;
    background: var(--deep);
}

.gallery-viewer-media img {
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 36px);
    object-fit: contain;
}

.gallery-viewer-copy {
    padding: 42px 34px;
}

.gallery-viewer-copy p:not(.eyebrow) {
    margin-bottom: 0;
}

.gallery-viewer-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    padding: 10px 14px;
    color: #ffffff;
    background: rgba(7, 28, 37, 0.72);
    cursor: pointer;
    font-weight: 900;
    backdrop-filter: blur(12px);
}

body.is-gallery-viewer-open {
    overflow: hidden;
}

.lazy-media {
    opacity: 0;
    filter: blur(12px);
    transform: scale(1.02);
    transition: opacity 900ms var(--ease), filter 900ms var(--ease), transform 900ms var(--ease);
}

.lazy-media.is-loaded {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

[data-reveal],
.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 760ms var(--ease), transform 760ms var(--ease);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible,
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes sliderProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

@media (max-width: 1080px) {
    .site-header-inner {
        align-items: flex-start;
        flex-wrap: wrap;
        justify-content: space-between;
        position: relative;
    }

    .site-header-inner .brand {
        max-width: calc(100% - 58px);
        min-width: 0;
    }

    .site-header-inner > .menu-toggle {
        position: absolute;
        top: 14px;
        right: 0;
        display: inline-grid !important;
        box-shadow: 0 12px 30px rgba(7, 28, 37, 0.18);
    }

    .site-nav {
        position: static;
        left: auto;
        order: 3;
        display: none;
        width: 100%;
        max-width: none;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 6px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        padding: 10px;
        background: #ffffff;
        box-shadow: 0 18px 50px rgba(7, 28, 37, 0.08);
        transform: none;
    }

    .site-header.is-menu-open .site-nav {
        display: flex;
    }

    .site-nav > a {
        width: 100%;
        border-radius: 6px;
        padding: 12px;
        text-align: left;
    }

    .site-nav > a:hover {
        background: var(--mist);
    }

    .site-nav a::after {
        display: none;
    }

    .hero-copy h1 {
        font-size: 4.1rem;
    }

    .section-copy h2,
    .section-heading h2,
    .process-intro h2,
    .market-copy h2,
    .cta-content h2 {
        font-size: 2.7rem;
    }

    .about-section,
    .overview-section,
    .markets-section,
    .accreditation-section,
    .contact-section,
    .about-page-story,
    .about-page-network,
    .about-page-people,
    .about-page-values-panel,
    .about-page-timeline-intro,
    .management-page-hero-inner,
    .management-page-direction-intro,
    .management-page-principles-inner,
    .company-page-hero-inner,
    .company-page-overview,
    .company-page-reach,
    .documents-page-hero-inner,
    .documents-page-heading,
    .accreditation-page-hero-inner,
    .accreditation-page-proof-main,
    .profile-page-hero-inner,
    .profile-page-viewer-header,
    .profile-page-cta-inner,
    .process-intro,
    .section-heading {
        grid-template-columns: 1fr;
    }

    .about-page-stat-band,
    .about-page-timeline-list,
    .about-page-workflow-grid,
    .management-page-owner-grid,
    .management-page-direction-grid,
    .company-page-stat-band,
    .company-page-capability-grid,
    .documents-page-grid,
    .accreditation-page-ledger-grid,
    .profile-page-stat-band,
    .profile-page-snapshot-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-page-cta-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .image-stack,
    .market-media,
    .about-page-story-media,
    .about-page-network-media,
    .company-page-overview-media,
    .company-page-reach-media,
    .accreditation-page-proof-media {
        min-height: 460px;
        height: 460px;
    }
}

@media (max-width: 820px) {
    .about-section,
    .about-sitemap,
    .management-section,
    .overview-section,
    .services-section,
    .documents-section,
    .agents-section,
    .accreditation-section,
    .profile-section,
    .gallery-section,
    .team-section,
    .concern-section,
    .contact-section,
    .process-shell,
    .about-page-hero-inner,
    .about-page-stat-band,
    .about-page-story,
    .about-page-pillars,
    .about-page-timeline-intro,
    .about-page-timeline-list,
    .about-page-values-panel,
    .about-page-workflow,
    .about-page-network,
    .about-page-people,
    .about-page-cta-inner,
    .management-page-hero-inner,
    .management-page-owners,
    .management-page-direction-intro,
    .management-page-direction-grid,
    .management-page-principles-inner,
    .company-page-hero-inner,
    .company-page-stat-band,
    .company-page-overview,
    .company-page-capabilities,
    .documents-page-hero-inner,
    .documents-page-registry,
    .documents-page-note-inner,
    .accreditation-page-hero-inner,
    .accreditation-page-proof,
    .accreditation-page-cta-inner,
    .profile-page-hero-inner,
    .profile-page-viewer,
    .profile-page-snapshot,
    .profile-page-cta-inner,
    .markets-section,
    .leadership-section,
    .site-footer,
    .cta-content {
        width: min(100% - 28px, 1180px);
    }

    .header-cta {
        display: none;
    }

    .top-strip-inner {
        flex-wrap: wrap;
        gap: 6px 14px;
        padding-block: 8px;
    }

    .hero-slider {
        height: 720px;
        min-height: 720px;
    }

    .hero-slide-inner {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
        padding: 64px 0 106px;
        margin-inline: auto;
    }

    .hero-copy {
        width: min(100%, 560px);
    }

    .hero-copy h1 {
        font-size: 3.05rem;
    }

    .hero-lede {
        font-size: 1rem;
    }

    .service-grid,
    .about-card-grid,
    .management-grid,
    .document-grid,
    .process-route,
    .about-page-stat-band,
    .about-page-pillar-grid,
    .about-page-timeline-list,
    .about-page-workflow-grid,
    .management-page-owner-grid,
    .management-page-direction-grid,
    .company-page-stat-band,
    .company-page-capability-grid,
    .documents-page-grid,
    .accreditation-page-ledger-grid,
    .profile-page-stat-band,
    .profile-page-snapshot-grid,
    .leadership-grid,
    .contact-grid,
    .gallery-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    .section-pad {
        padding: 76px 0;
    }

    .about-page-hero {
        min-height: 660px;
    }

    .management-page-hero {
        min-height: 620px;
    }

    .company-page-hero {
        min-height: 650px;
    }

    .documents-page-hero {
        min-height: 620px;
    }

    .accreditation-page-hero {
        min-height: 620px;
    }

    .profile-page-hero {
        min-height: 620px;
    }

    .about-page-hero-inner {
        padding: 72px 0 94px;
    }

    .management-page-hero-inner {
        padding: 72px 0 92px;
    }

    .company-page-hero-inner {
        padding: 72px 0 94px;
    }

    .documents-page-hero-inner {
        padding: 72px 0 94px;
    }

    .accreditation-page-hero-inner {
        padding: 72px 0 94px;
    }

    .profile-page-hero-inner {
        padding: 72px 0 94px;
    }

    .about-page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .management-page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .company-page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .documents-page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .accreditation-page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .profile-page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .about-page-stat-band {
        margin-top: -42px;
    }

    .company-page-stat-band {
        margin-top: -42px;
    }

    .about-page-stat-band div {
        min-height: 108px;
        padding: 22px;
    }

    .company-page-stat-band div {
        min-height: 108px;
        padding: 22px;
    }

    .about-page-copy h2,
    .about-page-timeline-intro h2,
    .about-page-values-panel h2,
    .about-page-network-copy h2,
    .about-page-people-copy h2,
    .about-page-cta h2,
    .management-page-direction-intro h2,
    .management-page-principles-inner h2,
    .company-page-overview-copy h2,
    .company-page-reach-copy h2,
    .documents-page-heading h2,
    .documents-page-note-inner h2,
    .accreditation-page-proof-copy h2,
    .accreditation-page-ledger h2,
    .accreditation-page-cta h2,
    .profile-page-viewer-header h2,
    .profile-page-cta h2 {
        font-size: 2.18rem;
    }

    .profile-page-pdf-frame {
        height: 640px;
        min-height: 520px;
    }

    .about-page-story-media,
    .about-page-network-media,
    .about-page-people-stack {
        min-height: 360px;
        height: 360px;
    }

    .company-page-overview-media,
    .company-page-reach-media {
        min-height: 360px;
        height: 360px;
    }

    .accreditation-page-proof-media {
        min-height: 360px;
        height: 360px;
    }

    .about-page-pillar,
    .about-page-workflow-grid article {
        min-height: auto;
        padding: 24px;
    }

    .about-page-values-panel {
        padding: 56px 0;
    }

    .management-page-principles-inner {
        padding: 58px 0;
    }

    .management-page-owner-card figure {
        height: 280px;
    }

    .company-page-reach {
        width: 100%;
        max-width: none;
        padding-right: 14px;
        padding-left: 14px;
    }

    .documents-page-note-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 56px 0;
    }

    .accreditation-page-ledger {
        margin-top: 54px;
        padding-top: 42px;
    }

    .accreditation-page-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 56px 0;
    }

    .profile-page-cta-inner {
        padding: 56px 0;
    }

    .about-page-cta {
        padding: 64px 0;
    }

    .about-page-cta-inner .button {
        width: 100%;
    }

    .process-section {
        padding: 78px 0;
    }

    .process-intro {
        gap: 24px;
        margin-bottom: 34px;
    }

    .process-summary {
        padding: 20px;
    }

    .process-step {
        min-height: auto;
        padding: 20px;
    }

    .process-step:nth-child(n)::before {
        display: none;
    }

    .document-viewer {
        padding: 14px;
    }

    .document-viewer-panel {
        height: min(720px, 84vh);
    }

    .document-viewer-header {
        align-items: flex-start;
        padding: 16px;
    }

    .document-viewer-footer {
        padding: 12px 16px;
    }

    .document-viewer-footer .button {
        width: 100%;
    }

    .section-copy h2,
    .section-heading h2,
    .process-intro h2,
    .market-copy h2,
    .cta-content h2,
    .agents-panel h2,
    .accreditation-copy h2,
    .profile-card h2,
    .concern-card h2,
    .contact-copy h2 {
        font-size: 2.18rem;
    }

    .image-stack,
    .market-media {
        min-height: 390px;
        height: 390px;
    }

    .image-frame-large {
        inset: 0 0 58px 22px;
    }

    .floating-badge {
        width: min(242px, 84%);
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .agents-panel,
    .profile-card,
    .concern-card {
        padding: 28px;
    }

    .profile-card {
        align-items: flex-start;
        flex-direction: column;
    }

    .accreditation-media,
    .gallery-card {
        height: 340px;
    }

    .map-panel {
        height: 300px;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (max-width: 520px) {
    .brand {
        min-width: 0;
    }

    .brand-logo {
        width: min(238px, calc(100vw - 104px));
    }

    .brand-mark {
        width: 42px;
        height: 42px;
    }

    .site-nav {
        gap: 16px;
        font-size: 0.88rem;
    }

    .hero-slider {
        height: 710px;
        min-height: 710px;
    }

    .hero-copy h1 {
        max-width: 350px;
        font-size: 2.18rem;
        line-height: 1.05;
    }

    .about-page-hero h1 {
        font-size: 2.55rem;
    }

    .management-page-hero h1 {
        font-size: 2.45rem;
    }

    .company-page-hero h1 {
        font-size: 2.42rem;
    }

    .documents-page-hero h1 {
        font-size: 2.42rem;
    }

    .accreditation-page-hero h1 {
        font-size: 2.42rem;
    }

    .profile-page-hero h1 {
        font-size: 2.42rem;
    }

    .about-page-actions {
        width: 100%;
    }

    .company-page-actions {
        width: 100%;
    }

    .documents-page-heading .button,
    .documents-page-note-inner .button {
        width: 100%;
    }

    .accreditation-page-actions {
        width: 100%;
        min-width: 0;
    }

    .accreditation-page-actions .button {
        width: 100%;
    }

    .profile-page-actions {
        width: 100%;
        min-width: 0;
    }

    .profile-page-actions .button,
    .profile-page-viewer-header .button {
        width: 100%;
    }

    .hero-lede {
        max-width: 340px;
        line-height: 1.65;
    }

    .hero-slider-ui {
        right: 14px;
        bottom: 22px;
        left: 14px;
        grid-template-columns: auto auto;
        justify-content: space-between;
        gap: 12px;
    }

    .hero-progress {
        grid-column: 1 / -1;
    }

    .hero-dots {
        justify-content: flex-start;
    }

    .hero-arrows {
        display: none;
    }

    .button {
        width: 100%;
    }

    .hero-proof {
        width: 100%;
    }

    .stat-item {
        min-height: 104px;
        padding: 20px;
    }

    .stat-ribbon {
        grid-template-columns: 1fr;
    }

    .about-page-stat-band {
        grid-template-columns: 1fr;
    }

    .company-page-stat-band {
        grid-template-columns: 1fr;
    }

    .documents-page-grid {
        grid-template-columns: 1fr;
    }

    .accreditation-page-ledger-grid {
        grid-template-columns: 1fr;
    }

    .profile-page-stat-band,
    .profile-page-snapshot-grid {
        grid-template-columns: 1fr;
    }

    .profile-page-pdf-frame {
        height: 520px;
        min-height: 520px;
    }

    .process-intro {
        margin-bottom: 28px;
    }

    .process-summary span {
        font-size: 0.96rem;
    }

    .process-step {
        gap: 14px;
        padding: 18px 16px;
    }

    .process-step-number {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 0.78rem;
    }

    .process-step-phase {
        font-size: 0.63rem;
        letter-spacing: 0.1em;
    }

    .process-step h3 {
        font-size: 1rem;
    }

    .management-page-hero-note,
    .management-page-owner-card > div,
    .management-page-direction-grid article {
        padding: 20px;
    }

    .management-page-cta .button {
        width: 100%;
    }

    .company-page-actions .button {
        width: 100%;
    }

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

    .contact-grid a {
        min-height: 118px;
    }

    .page-header h1 {
        font-size: 2.6rem;
    }
}

@media (max-width: 820px) {
    .services-section {
        width: 100%;
        max-width: none;
        padding: 78px 0 84px;
    }

    .services-section .section-heading,
    .services-section .service-grid {
        width: min(100% - 28px, 1180px);
    }

    .service-heading {
        margin-bottom: 30px;
    }

    .service-heading h2 {
        font-size: 2.45rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .service-card {
        border-radius: 22px;
        padding: 14px 14px 24px;
    }

    .service-media {
        height: 230px;
    }

    .service-body {
        padding: 26px 8px 0;
    }
}

@media (max-width: 1080px) {
    .gallery-page-hero-inner,
    .gallery-page-heading,
    .gallery-page-stories-inner,
    .gallery-page-story-card,
    .gallery-page-cta-inner,
    .gallery-viewer-panel {
        grid-template-columns: 1fr;
    }

    .gallery-page-hero h1 {
        font-size: 4.1rem;
    }

    .gallery-page-hero-stack {
        max-width: 760px;
    }

    .gallery-page-mosaic,
    .gallery-page-people-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-page-tile:last-child {
        grid-column: span 2;
    }

    .gallery-page-stories-intro {
        position: static;
    }

    .gallery-viewer-media {
        min-height: 420px;
    }
}

@media (max-width: 820px) {
    .gallery-page-hero-inner,
    .gallery-page-featured,
    .gallery-page-stories-inner,
    .gallery-page-people,
    .gallery-page-cta-inner {
        width: min(100% - 28px, 1180px);
    }

    .gallery-page-hero {
        min-height: 650px;
    }

    .gallery-page-hero-inner {
        gap: 30px;
        padding: 72px 0 94px;
    }

    .gallery-page-hero h1 {
        font-size: 3.05rem;
        line-height: 1.03;
    }

    .gallery-page-hero p:not(.eyebrow) {
        font-size: 1rem;
    }

    .gallery-page-heading h2,
    .gallery-page-stories-intro h2,
    .gallery-page-cta h2,
    .gallery-viewer-copy h2 {
        font-size: 2.18rem;
    }

    .gallery-page-mosaic {
        grid-auto-rows: 220px;
    }

    .gallery-page-story-card {
        gap: 20px;
        padding: 14px;
    }

    .gallery-page-story-media {
        height: 280px;
    }

    .gallery-page-cta-inner {
        padding: 56px 0;
    }

    .gallery-page-cta-rail {
        max-width: 520px;
    }

    .gallery-viewer {
        padding: 14px;
    }

    .gallery-viewer-panel {
        width: min(100%, calc(100vw - 28px));
        overflow: auto;
    }

    .gallery-viewer-media {
        min-height: 320px;
    }

    .gallery-viewer-media img {
        max-height: 58vh;
    }

    .gallery-viewer-copy {
        padding: 30px 24px;
    }
}

@media (max-width: 520px) {
    .gallery-page-hero h1 {
        font-size: 2.42rem;
    }

    .gallery-page-hero-stack,
    .gallery-page-mosaic,
    .gallery-page-people-grid {
        grid-template-columns: 1fr;
    }

    .gallery-page-hero-thumb:first-child,
    .gallery-page-tile.is-large,
    .gallery-page-tile.is-wide,
    .gallery-page-tile:last-child {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-page-hero-thumb {
        min-height: 178px;
    }

    .gallery-page-mosaic {
        grid-auto-rows: auto;
    }

    .gallery-page-tile {
        min-height: 300px;
    }

    .gallery-page-person {
        min-height: 350px;
    }

    .gallery-page-actions,
    .gallery-page-actions .button {
        width: 100%;
    }

    .gallery-page-cta-rail {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .gallery-page-cta-rail img:nth-child(2) {
        margin-top: 18px;
    }

    .gallery-viewer-media {
        min-height: 260px;
    }

    .gallery-viewer-copy h2 {
        font-size: 1.9rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
    }

    [data-reveal],
    .reveal-up,
    .lazy-media {
        opacity: 1;
        filter: none;
        transform: none;
    }
}
