/* ============ FONTS ============ */
@font-face {
    font-family: 'Thmanyah';
    src: url('fonts/Thmanyah.woff2') format('woff2');
    font-weight: 100 900;
    font-display: swap;
}
@font-face {
    font-family: 'Aam Al-Ibil';
    src: url('fonts/AamAlIbil-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'Aam Al-Ibil';
    src: url('fonts/AamAlIbil-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'Aam Al-Ibil';
    src: url('fonts/AamAlIbil-Bold.woff2') format('woff2');
    font-weight: 600 700;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('fonts/IBM-Plex-Sans-Arabic-Light.woff2') format('woff2');
    font-weight: 300;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('fonts/IBM-Plex-Sans-Arabic-Regular.woff2') format('woff2');
    font-weight: 400;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('fonts/IBM-Plex-Sans-Arabic-Medium.woff2') format('woff2');
    font-weight: 500;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('fonts/IBM-Plex-Sans-Arabic-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-display: swap;
}
@font-face {
    font-family: 'IBM Plex Sans Arabic';
    src: url('fonts/IBM-Plex-Sans-Arabic-Bold.woff2') format('woff2');
    font-weight: 700;
    font-display: swap;
}

/* ============ TOKENS ============ */
:root {
    --green-900: #08402b;
    --green-700: #0c5c3d;
    --green-500: #178a5a;
    --green-100: #dbede4;
    --brass-600: #b68a3e;
    --brass-300: #e7d2a0;
    --ink: #14201a;
    --slate: #56615b;
    --paper: #f5f4ef;
    --white: #ffffff;
    --border: #e3e6e0;
    --error: #b3261e;
    --nav-h: 82px;

    --font: 'Aam Al-Ibil', 'Thmanyah', 'IBM Plex Sans Arabic', sans-serif;

    --shadow-1: 0 2px 8px rgba(20, 32, 26, 0.06);
    --shadow-2: 0 8px 24px rgba(20, 32, 26, 0.1);

    --radius-card: 14px;
    --radius-btn: 10px;
    --maxw: 1200px;
}

/* ============ RESET ============ */
[hidden] {
    display: none !important;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,
h2,
h3,
p {
    margin: 0;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
}
button {
    font-family: inherit;
}
::selection {
    background: var(--green-100);
}

::placeholder {
    color: var(--slate);
    opacity: 0.7;
}
:focus-visible {
    outline: 2px solid var(--green-500);
    outline-offset: 2px;
}

.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: 32px;
}
.section {
    padding-block: 88px;
}
.eyebrow {
    font-size: 15px;
    font-weight: 600;
    color: var(--green-700);
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}
.h2 {
    font-size: 38px;
    line-height: 50px;
    font-weight: 700;
}

/* ============ SCROLL REVEAL ============ */
@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.reveal {
    animation: revealUp 1s linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

/* ============ NAV ============ */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 244, 239, 0.88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.nav__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.nav__logo {
    height: 44px;
    width: auto;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 17px;
    color: var(--slate);
}
.nav__links a {
    transition: color 0.15s;
}
.nav__links a:hover,
.nav__links a.is-active {
    color: var(--green-700);
}
.nav__links a.is-active {
    font-weight: 600;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: var(--radius-btn);
    transition:
        background 0.18s,
        transform 0.18s;
}
.btn--primary {
    background: var(--green-700);
    color: #fff;
    padding: 11px 22px;
    font-size: 17px;
}
.btn--primary:hover {
    background: var(--green-500);
}
.btn--lg {
    padding: 16px 34px;
    font-size: 19px;
}
.btn--ghost {
    background: transparent;
    color: var(--green-700);
    padding: 15px 14px;
    font-size: 19px;
}
.btn--ghost:hover {
    background: var(--green-100);
}
.nav__toggle {
    display: none;
}

/* ============ HERO ============ */
.hero {
    position: relative;
    overflow: hidden;
    max-width: 1320px;
    margin: 0 auto;
    padding: 72px 32px 108px;
    min-height: calc(100dvh - var(--nav-h));
    display: flex;
    align-items: center;
}
.hero__grid {
    display: flex;
    align-items: center;
    gap: 64px;
}
.hero__text {
    flex: 1;
    min-width: 0;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green-100);
    color: var(--green-700);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 26px;
}
.hero__title {
    font-size: 58px;
    line-height: 76px;
    font-weight: 700;
    margin-bottom: 22px;
    text-wrap: pretty;
}
.hero__title--sm {
    font-size: 42px;
    line-height: 60px;
}
.hero__title span {
    color: var(--green-700);
}
.hero__lead {
    font-size: 20px;
    line-height: 34px;
    color: var(--slate);
    max-width: 480px;
    margin-bottom: 34px;
}
.hero__cta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 44px;
}

.hero__media {
    flex: none;
    width: 600px;
    position: relative;
    margin-inline-end: -56px;
    animation: heroShotIn 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.scrollcue {
    position: absolute;
    inset-inline: 0;
    bottom: 30px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--slate);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.scrollcue:hover {
    color: var(--green-700);
}
.scrollcue__ring {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cueBob 2.2s ease-in-out infinite;
}
.scrollcue:hover .scrollcue__ring {
    border-color: var(--green-500);
}
@keyframes cueBob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(7px);
    }
}
@media (prefers-reduced-motion: reduce) {
    .scrollcue__ring {
        animation: none;
    }
}

.hero__glow {
    position: absolute;
    inset: -40px;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at 50% 45%,
        rgba(12, 92, 61, 0.35),
        rgba(182, 138, 62, 0.14) 55%,
        transparent 72%
    );
    filter: blur(38px);
}
.hero__motif {
    position: absolute;
    top: -38px;
    left: -38px;
    width: 150px;
    height: 150px;
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
}
.hero__shot {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow:
        0 30px 70px rgba(8, 64, 43, 0.28),
        0 8px 24px rgba(20, 32, 26, 0.12);
    -webkit-mask-image: radial-gradient(ellipse 62% 58% at 50% 52%, #000 50%, transparent 100%);
    mask-image: radial-gradient(ellipse 62% 58% at 50% 52%, #000 50%, transparent 100%);
}
@keyframes heroShotIn {
    from {
        opacity: 0;
        transform: scale(0.94) translateY(12px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
.caption {
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    color: var(--slate);
    display: none;
}

/* ============ ABOUT ============ */
.about {
    background: var(--white);
    border-block: 1px solid var(--border);
}
.about__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 88px 32px;
    display: flex;
    gap: 72px;
    align-items: flex-start;
}
.about__aside {
    flex: none;
    width: 300px;
}
.bignum {
    font-size: 92px;
    line-height: 1;
    font-weight: 700;
    color: var(--green-700);
}
.about__aside .rule {
    height: 1px;
    background: var(--border);
    margin: 26px 0;
}
.ministat-row {
    display: flex;
    gap: 28px;
}
.ministat b {
    font-size: 32px;
    font-weight: 700;
    color: var(--brass-600);
    display: block;
}
.ministat span {
    font-size: 15px;
    color: var(--slate);
}
.about__body {
    flex: 1;
    min-width: 0;
}
.about__body p {
    font-size: 20px;
    line-height: 36px;
    color: var(--slate);
    margin-bottom: 20px;
}
.about__body p:last-child {
    margin-bottom: 0;
}
.about__body strong {
    color: var(--green-700);
    font-weight: 600;
}

/* ============ DIVIDER ============ */
.divider {
    max-width: var(--maxw);
    margin: 0 auto;
    padding-inline: 32px;
}
.divider > div {
    height: 64px;
    opacity: 0.75;
}

/* ============ VALUES ============ */
.values {
    background: var(--green-100);
}
.center {
    text-align: center;
    margin-bottom: 56px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.card__list {
    margin: 14px 0 20px;
    padding-inline-start: 18px;
}
.card__list li {
    font-size: 15px;
    line-height: 26px;
    color: var(--slate);
    margin-bottom: 10px;
}
.card__list li:last-child {
    margin-bottom: 0;
}
.bento .card:nth-child(1) {
    grid-column: span 2;
}
.bento .card:nth-child(6) {
    grid-column: span 3;
}
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px;
    box-shadow: var(--shadow-1);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-2);
}
.card--tint {
    background: rgba(12, 92, 61, 0.04);
}
.card__icon {
    color: var(--green-700);
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}
.card--tint .card__icon {
    background: var(--green-700);
}
.card--tint .card__icon svg {
    stroke: #fff;
}
.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 16px 0 8px;
}
.card p {
    font-size: 16px;
    line-height: 28px;
    color: var(--slate);
}

/* ============ STATS ============ */
.stats-wrap {
    position: relative;
}
.stats {
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}
@media (prefers-reduced-motion: no-preference) {
    .stats-wrap {
        height: 190vh;
    }
    .stats {
        position: sticky;
        top: 0;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
}
.stats__motif {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
}
.stats__inner {
    position: relative;
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 80px 32px;
}
.stats__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
}
.stats__head .eyebrow {
    color: var(--brass-300);
}
.stats__head h2 {
    color: var(--paper);
}
.stats__anchors {
    display: flex;
    gap: 56px;
}
.anchor b {
    font-size: 56px;
    line-height: 1;
    font-weight: 700;
    color: var(--brass-300);
}
.anchor b small {
    font-size: 26px;
    margin-inline-start: 6px;
    font-weight: 700;
}
.anchor span {
    display: block;
    font-size: 16px;
    color: var(--green-100);
    margin-top: 8px;
}
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(231, 210, 160, 0.2);
    border: 1px solid rgba(231, 210, 160, 0.2);
    border-radius: var(--radius-card);
    overflow: hidden;
}
.stat {
    background: var(--green-900);
    padding: 26px 20px;
}
.stat b {
    font-size: 34px;
    font-weight: 700;
    color: var(--paper);
}
.stat span {
    display: block;
    font-size: 15px;
    color: var(--green-100);
    margin-top: 6px;
}

/* ============ WHY ============ */
.feat-strip {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.feat {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    padding: 0;
}
.feat__icon {
    color: var(--green-700);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.feat__body {
    flex: 1;
    min-width: 0;
}
.feat h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.feat p {
    font-size: 17px;
    line-height: 30px;
    color: var(--slate);
}

/* ============ SERVICES ============ */
.services {
    background: var(--white);
    border-block: 1px solid var(--border);
}
.services__head {
    margin-bottom: 40px;
}
.tablist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.tab {
    padding: 11px 22px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--ink);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.18s;
}
.tab:hover {
    border-color: var(--green-500);
}
.tab.is-active {
    color: #fff;
}
.panel {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 44px 44px;
}
.panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 32px;
}
.panel__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}
.panel__head h3 {
    font-size: 30px;
    font-weight: 700;
}
.panel__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
}
.panel__services h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 20px;
}
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px 40px;
}
.svc h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 6px;
}
.svc__ico {
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
}
.svc p {
    font-size: 15px;
    line-height: 26px;
    color: var(--slate);
    margin: 0;
}

/* ============ PROJECTS ============ */
.projects {
    background: var(--green-100);
}
.projects__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
}
.link-accent {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 17px;
    font-weight: 600;
    color: var(--green-700);
    white-space: nowrap;
}
.project-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    margin-bottom: 24px;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.project-featured:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
}
.project-featured__img {
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
}
.project-featured__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.project-featured__body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.project-featured__body h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
}
.project-featured__body p {
    font-size: 17px;
    line-height: 30px;
    color: var(--slate);
}
.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.pcard {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.pcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
}
.pcard__cover {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    overflow: hidden;
}
.pcard__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pcard__body {
    padding: 22px;
}
.pill {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-700);
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}
.pcard__body h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 6px;
}
.pcard__body p {
    font-size: 15px;
    line-height: 26px;
    color: var(--slate);
}

/* ============ TRUST ============ */
.trust__label {
    text-align: center;
    font-size: 16px;
    color: var(--slate);
    margin-bottom: 40px;
}
.trust__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}
.trust__cell {
    height: 108px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    padding: 12px 10px;
    font-size: 13px;
    font-weight: 600;
    color: #9aa59e;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.2s;
}
.trust__cell img {
    max-height: 52px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
}
.trust__cell:hover {
    filter: grayscale(0);
    opacity: 1;
    color: var(--green-700);
}

/* ============ CTA ============ */
.cta {
    background: var(--paper);
    padding-block: 56px;
}
.ctaband {
    display: flex;
    align-items: stretch;
    gap: 10px;
}
.ctaband__msg {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--green-700);
    color: var(--paper);
    padding: 26px 34px;
    border-radius: 12px;
    clip-path: polygon(18px 0, 100% 0, 100% 100%, 0 100%);
}
.ctaband__ico {
    flex: none;
    display: flex;
    align-items: center;
}
.ctaband__msg h2 {
    font-size: 23px;
    line-height: 34px;
    font-weight: 700;
}
.ctaband__action {
    flex: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 22px 30px;
    border-radius: 12px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 18px) 100%, 0 100%);
}
.btn--brass {
    background: var(--brass-600);
    color: var(--ink);
    padding: 13px 30px;
    font-size: 17px;
}
.btn--brass:hover {
    background: var(--brass-300);
}

/* ============ CONTACT ============ */
.contact {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 88px 32px;
    display: flex;
    gap: 72px;
    align-items: flex-start;
}
.contact__aside {
    flex: none;
    width: 320px;
}
.contact__aside > p {
    font-size: 18px;
    line-height: 32px;
    color: var(--slate);
    margin-bottom: 32px;
}
.contact__info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact__info dt {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 4px;
}
.contact__info dd {
    margin: 0;
    font-size: 17px;
    color: var(--ink);
    line-height: 26px;
}
.contact__info a {
    font-size: 18px;
    color: var(--green-700);
    font-weight: 600;
}
.mono-ltr {
    direction: ltr;
    display: inline-block;
}
.form {
    flex: 1;
    min-width: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-1);
}
.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.field label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}
.field label .req {
    color: var(--green-700);
}
.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 17px;
    background: var(--paper);
    color: var(--ink);
}
.field textarea {
    resize: vertical;
}
.field select option {
    background: var(--paper);
    color: var(--ink);
}
.field--full {
    margin-bottom: 24px;
}
.field__msg {
    display: none;
    font-size: 13px;
    color: var(--error);
    margin-top: 6px;
}
.field.has-error label,
.field.has-error legend {
    color: var(--error);
}
.field.has-error .check {
    border-color: var(--error);
}
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
    border-color: var(--error);
}
.field.has-error input:focus-visible,
.field.has-error select:focus-visible,
.field.has-error textarea:focus-visible {
    outline-color: var(--error);
}
.field.has-error .field__msg {
    display: block;
}
.form__success {
    display: none;
    text-align: center;
    padding: 40px 0;
}
/* honeypot: out of sight for people, still in the DOM for bots */
.form__hp {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
.form__err {
    margin-bottom: 18px;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid var(--error);
    color: var(--error);
    background: rgba(179, 38, 30, 0.06);
    font-size: 15px;
    line-height: 24px;
}

.form__success .check {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green-100);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.form__success h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}
.form__success p {
    font-size: 16px;
    color: var(--slate);
}
.form.is-sent .form__fields {
    display: none;
}
.form.is-sent .form__success {
    display: block;
}

/* ============ FOOTER ============ */
.footer {
    background: var(--green-900);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.footer__motif {
    position: absolute;
    inset: 0;
    opacity: 0.13;
    pointer-events: none;
}
.footer__inner {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 64px 32px 40px;
}
.footer__top {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.footer__brand {
    flex: 1;
    min-width: 240px;
}
.footer__brand img {
    height: 48px;
    width: auto;
    margin-bottom: 20px;
}
.footer__brand p {
    font-size: 16px;
    line-height: 28px;
    color: var(--green-100);
    max-width: 320px;
}
.footer__col h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--brass-300);
    margin-bottom: 16px;
}
.footer__col div {
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: 16px;
}
.footer__col a {
    transition: color 0.15s;
}
.footer__col a:hover {
    color: var(--brass-300);
}
.footer__bottom {
    border-top: 1px solid rgba(231, 210, 160, 0.2);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 15px;
    color: #9aa59e;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1280px) {
    .container {
        max-width: 1100px;
    }
}
@media (max-width: 1024px) {
    .bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .iconlist {
        grid-template-columns: repeat(2, 1fr);
    }
    .intro__media {
        width: 300px;
    }
    .activities {
        grid-template-columns: repeat(2, 1fr);
        gap: 34px 12px;
    }
    .activities--six {
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento .card:nth-child(1) {
        grid-column: span 1;
    }
    .bento .card:nth-child(6) {
        grid-column: span 2;
    }
    .project-featured {
        grid-template-columns: 1fr;
    }
    .project-featured__img {
        height: 260px;
    }
    .hero__media {
        width: 480px;
    }
    .stats__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .section {
        padding-block: 60px;
    }
    .nav__links {
        display: none;
    }
    .hero {
        padding: 44px 24px 84px;
    }
    :root {
        --nav-h: 69px;
    }
    .scrollcue {
        bottom: 18px;
    }
    .ctaband {
        flex-direction: column;
        gap: 8px;
    }
    .ctaband__msg,
    .ctaband__action {
        clip-path: none;
        padding: 22px 24px;
    }
    .ctaband__msg h2 {
        font-size: 20px;
        line-height: 30px;
    }
    .ctaband__action {
        justify-content: flex-start;
    }
    .gradations {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero__grid {
        flex-direction: column-reverse;
        gap: 40px;
        align-items: stretch;
    }
    .hero__media {
        width: 100%;
        margin-inline-end: 0;
        animation: none;
    }
    .hero__title {
        font-size: 40px;
        line-height: 56px;
    }
    .container {
        padding-inline: 24px;
    }
    .about__inner,
    .contact {
        flex-direction: column;
        gap: 40px;
        padding-inline: 24px;
    }
    .about__aside,
    .contact__aside {
        width: 100%;
    }
    .bento {
        grid-template-columns: 1fr;
    }
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    .svc-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats__anchors {
        gap: 32px;
    }
    .trust__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .panel {
        padding: 30px 24px 32px;
    }
    .panel__head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .project-grid {
        grid-template-columns: 1fr;
    }
    .form__row {
        grid-template-columns: 1fr;
    }
    .h2,
    .stats__head h2 {
        font-size: 30px;
        line-height: 40px;
    }
    .bignum {
        font-size: 68px;
    }
    .cta h2 {
        font-size: 32px;
        line-height: 44px;
    }
    .feat {
        flex-direction: column;
        gap: 16px;
    }
}
@media (max-width: 640px) {
    .hero__title {
        font-size: 34px;
        line-height: 46px;
    }
    .hero__lead {
        font-size: 18px;
        line-height: 30px;
    }
    .stats__anchors {
        flex-direction: column;
        gap: 24px;
    }
    .anchor b {
        font-size: 42px;
    }
    .trust__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer__top {
        flex-direction: column;
        gap: 40px;
    }
}
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
    }
}
@keyframes drawOn {
    to {
        stroke-dashoffset: 0;
    }
}

/* ============ GRAIN ============ */
.grain {
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
    filter: url(#grainFilter);
}

/* ============ NAV · DROPDOWN + MOBILE ============ */
.nav__has-sub {
    position: relative;
}
.nav__has-sub > button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font: inherit;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.nav__has-sub > button:hover,
.nav__has-sub.is-current > button {
    color: var(--green-700);
}
.nav__has-sub.is-current > button {
    font-weight: 600;
}
.nav__sub {
    position: absolute;
    top: calc(100% + 14px);
    inset-inline-end: 0;
    z-index: 60;
    min-width: 230px;
    padding: 10px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-2);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
        opacity 0.16s,
        transform 0.16s,
        visibility 0.16s;
}
.nav__has-sub:hover .nav__sub,
.nav__has-sub:focus-within .nav__sub {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.nav__sub a {
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--ink);
}
.nav__sub a:hover {
    background: var(--green-100);
    color: var(--green-700);
}
.nav__toggle {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
}
.nav__toggle svg {
    stroke: var(--ink);
}
.nav__inner > .btn {
    white-space: nowrap;
}

/* ============ PAGE HERO ============ */
.phero {
    position: relative;
    background: var(--green-900);
    overflow: hidden;
}
.phero__motif {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    pointer-events: none;
}
.phero__inner {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 46px 32px 54px;
}
.crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--brass-300);
    margin-bottom: 22px;
}
.crumbs a {
    color: var(--green-100);
}
.crumbs a:hover {
    color: var(--brass-300);
}
.phero h1 {
    font-size: 46px;
    line-height: 60px;
    font-weight: 700;
    color: var(--paper);
    margin: 0;
}

/* ============ INTRO SPLIT ============ */
.split {
    display: flex;
    gap: 64px;
    align-items: flex-start;
}
.split__aside {
    flex: none;
    width: 340px;
}
.split__body {
    flex: 1;
    min-width: 0;
}
.split__body p {
    font-size: 19px;
    line-height: 34px;
    color: var(--slate);
    margin-bottom: 18px;
}
.split__body p:last-child {
    margin-bottom: 0;
}
.split__body strong {
    color: var(--green-700);
    font-weight: 600;
}
.mark {
    width: 88px;
    height: 88px;
    border-radius: 20px;
    background: var(--green-900);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    margin-bottom: 22px;
}

/* ============ CHIPS ============ */
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.chip {
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--border);
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
}
.chip--tint {
    background: var(--green-100);
    color: var(--green-700);
    border-color: transparent;
    font-weight: 600;
}
.chip--ltr {
    direction: ltr;
}

/* ============ CAPABILITY BLOCKS ============ */
.capblocks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.capblock {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 32px 36px;
    box-shadow: var(--shadow-1);
}
.capblock__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}
.capblock__head h3 {
    font-size: 24px;
    font-weight: 700;
}
.capblock > p {
    font-size: 17px;
    line-height: 30px;
    color: var(--slate);
    margin-bottom: 20px;
    max-width: 720px;
}
.capblock__icon {
    color: var(--green-700);
    flex: none;
    display: flex;
    align-items: center;
}

/* ============ RINGED STAGES (legacy gradation) ============ */
.gradations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 54px 40px;
}
.gradation {
    text-align: center;
}
.gradation h3 {
    font-size: 21px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}
.gradation p {
    font-size: 16px;
    line-height: 28px;
    color: var(--slate);
}

/* ============ NUMBERED STEPS ============ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    counter-reset: step;
}
.step {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 30px 28px 28px;
    box-shadow: var(--shadow-1);
}
.step__num {
    font-size: 15px;
    font-weight: 700;
    color: var(--brass-600);
    letter-spacing: 0.08em;
    direction: ltr;
    display: block;
    margin-bottom: 12px;
}
.step h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step p {
    font-size: 16px;
    line-height: 28px;
    color: var(--slate);
}

/* ============ POLICY CARDS ============ */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.policy {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: var(--shadow-1);
    display: flex;
    flex-direction: column;
}
.policy h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 8px;
}
.policy__meta {
    font-size: 14px;
    color: var(--brass-600);
    font-weight: 600;
    margin-bottom: 14px;
}
.policy p {
    font-size: 16px;
    line-height: 28px;
    color: var(--slate);
    margin-bottom: 20px;
    flex: 1;
}

/* ============ TEAM CARDS ============ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.team {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: var(--shadow-1);
}
.team__num {
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
    color: var(--green-100);
    direction: ltr;
}
.team h3 {
    font-size: 21px;
    font-weight: 700;
    margin: 10px 0 6px;
}
.team__mail {
    display: inline-block;
    font-size: 15px;
    font-weight: 600;
    color: var(--green-700);
    direction: ltr;
    margin-bottom: 14px;
}
.team ul {
    margin: 0;
    padding-inline-start: 20px;
}
.team li {
    font-size: 16px;
    line-height: 28px;
    color: var(--slate);
    margin-bottom: 6px;
}

/* ============ FILTER BAR ============ */
.filterbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.filterbar .tab.is-active {
    background: var(--green-700);
    border-color: var(--green-700);
    color: #fff;
}
.pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.pgrid .pcard__cover {
    height: 210px;
    background: var(--green-100);
}

/* ============ LOGO WALL ============ */
.logo-wall {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-1);
}
.logo-wall img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* ============ SECTION HEADING (smaller than .h2) ============ */
.h3 {
    font-size: 27px;
    line-height: 38px;
    font-weight: 700;
}

/* ============ ICON LIST (legacy icon + label rows) ============ */
.iconlist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 26px;
}
.iconlist--2 {
    grid-template-columns: repeat(2, 1fr);
}
.iconlist--1 {
    grid-template-columns: 1fr;
}
.iconrow {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}
.iconrow__ico {
    flex: none;
    width: 26px;
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}
.iconrow__txt {
    flex: 1;
    min-width: 0;
}
.iconrow__txt b {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
    line-height: 26px;
}
.iconrow__txt span {
    display: block;
    font-size: 15px;
    line-height: 25px;
    color: var(--slate);
    margin-top: 4px;
}
.iconrow--ltr .iconrow__txt b {
    direction: ltr;
    text-align: right;
}

/* ============ ARROW LIST (legacy arrow bullets) ============ */
.arrowlist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 26px;
}
.arrowlist--1 {
    grid-template-columns: 1fr;
}
.arrowrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    color: var(--ink);
}
.arrowrow::before {
    content: '›';
    flex: none;
    color: var(--green-700);
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.arrowrow--ltr {
    direction: ltr;
    justify-content: flex-end;
}

/* ============ INTRO (icon+title | prose | illustration) ============ */
.intro {
    display: flex;
    gap: 56px;
    align-items: center;
}
.intro__body {
    flex: 1;
    min-width: 0;
}
.intro__head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.intro__head h2 {
    color: var(--green-700);
}
.intro__head .sector-mark {
    width: 54px;
    height: 54px;
    margin: 0;
}
.intro__body p {
    font-size: 18px;
    line-height: 32px;
    color: var(--slate);
    margin-bottom: 16px;
}
.intro__body p:last-of-type {
    margin-bottom: 0;
}
.intro__media {
    flex: none;
    width: 380px;
}
.intro__media img {
    width: 100%;
    height: auto;
}

/* ============ ACTIVITY ROW (legacy circle icons joined by a rule) ============ */
.h2--rule {
    position: relative;
    padding-bottom: 18px;
}
.h2--rule::after {
    content: '';
    position: absolute;
    bottom: 0;
    inset-inline-start: 50%;
    transform: translateX(50%);
    width: 84px;
    height: 2px;
    background: var(--green-500);
}
.activities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 12px;
}
.activities--six {
    grid-template-columns: repeat(6, 1fr);
    gap: 0 8px;
}
.activity {
    position: relative;
    padding-top: 0;
    text-align: center;
}
.activity:not(:last-child)::after,
.activity:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 43px;
    height: 1px;
    background: var(--border);
}
.activity:not(:last-child)::after {
    inset-inline-start: 50%;
    inset-inline-end: 0;
}
.activity:not(:first-child)::before {
    inset-inline-start: 0;
    inset-inline-end: 50%;
}
.activities--plain .activity::after,
.activities--plain .activity::before {
    content: none;
}
.activity__ring,
.gradation__ring {
    position: relative;
    z-index: 1;
    border: 2px solid var(--green-500);
    border-radius: 50%;
    background: var(--paper);
    color: var(--green-700);
    display: flex;
    align-items: center;
    justify-content: center;
}
.activity__ring {
    width: 86px;
    height: 86px;
    margin: 0 auto 18px;
}
.gradation__ring {
    width: 96px;
    height: 96px;
    margin: 0 auto 20px;
}
.activity h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 16px;
}
.activity h3.activity__title--last {
    margin-bottom: 0;
}
.activity__list {
    text-align: start;
}
.activity__list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 16px;
    line-height: 26px;
    color: var(--ink);
}
.activity__list div::after {
    content: '←';
    color: var(--green-500);
    font-size: 17px;
    flex: none;
}

/* ============ SECTOR MARK (legacy sector icon) ============ */
.sector-mark {
    width: 84px;
    height: 84px;
    margin-bottom: 18px;
}
.sector-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============ BACK TO TOP ============ */
.to-top {
    position: fixed;
    inset-block-end: 26px;
    inset-inline-end: 26px;
    z-index: 70;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-700);
    color: var(--paper);
    box-shadow: var(--shadow-2);
    border: 1px solid rgba(255, 255, 255, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition:
        opacity 0.2s,
        transform 0.2s,
        visibility 0.2s,
        background 0.15s;
}
.to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}
.to-top:hover {
    background: var(--green-900);
}
.to-top:focus-visible {
    outline: 2px solid var(--brass-300);
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    .to-top {
        transition: none;
    }
}

/* ============ FACT BAND ============ */
.factband {
    background: var(--green-900);
    position: relative;
    overflow: hidden;
}
.factband__motif {
    position: absolute;
    inset: 0;
    opacity: 0.14;
    pointer-events: none;
}
.factband__inner {
    position: relative;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 64px 32px;
    display: flex;
    align-items: center;
    gap: 56px;
}
.factband__media {
    flex: 1;
    min-width: 0;
}
.factband__media img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    display: block;
}
.factband__body {
    flex: 1;
    min-width: 0;
}
.factband__num {
    font-size: 78px;
    line-height: 1;
    font-weight: 700;
    color: var(--brass-300);
}
.factband__title {
    font-size: 25px;
    line-height: 36px;
    font-weight: 600;
    color: var(--paper);
    margin-top: 14px;
}
.factband__sub {
    font-size: 18px;
    line-height: 30px;
    color: var(--green-100);
    margin-top: 12px;
}
.factband__rule {
    height: 1px;
    background: rgba(231, 210, 160, 0.25);
    margin: 26px 0 22px;
}
.factband__body h2 {
    font-size: 30px;
    line-height: 42px;
    font-weight: 700;
    color: var(--paper);
}
.factband__body h2 + p {
    font-size: 17px;
    line-height: 30px;
    color: var(--green-100);
    margin-top: 12px;
}
.factband--center .factband__inner {
    justify-content: center;
    text-align: center;
}
.factband--center .factband__body {
    flex: none;
    max-width: 620px;
}

/* legacy media band: two service columns beside the counter */
.factband__services {
    flex: 1;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 34px;
}
.factband__list div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 11px 2px;
    border-bottom: 1px solid rgba(231, 210, 160, 0.22);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    color: var(--paper);
}
.factband__list div::after {
    content: '←';
    color: var(--brass-300);
    font-size: 17px;
    flex: none;
}

/* ============ TAB PANEL ICON (when legacy had no illustration) ============ */
.tabpanel__icon {
    flex: none;
    width: 96px;
    color: var(--green-700);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.checks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.check {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-btn);
    background: var(--paper);
    font-size: 16px;
    cursor: pointer;
    transition:
        border-color 0.15s,
        background 0.15s;
}
.check:hover {
    border-color: var(--green-500);
}
.check input {
    width: 18px;
    height: 18px;
    accent-color: var(--green-700);
    flex: none;
    margin: 0;
    cursor: pointer;
}
.check:has(input:checked) {
    border-color: var(--green-700);
    background: var(--green-100);
}

/* ============ GENERIC TABS ============ */
.tabbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}
.tabbar .tab.is-active {
    background: var(--green-700);
    border-color: var(--green-700);
    color: #fff;
}
.tabpanel {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
}
.tabpanel__media {
    flex: none;
    width: 260px;
}
.tabpanel__media img {
    width: 100%;
    height: auto;
}
.tabpanel__body {
    flex: 1;
    min-width: 0;
}
.tabpanel__body > p {
    font-size: 18px;
    line-height: 32px;
    color: var(--ink);
    margin-bottom: 20px;
}
.tabpanel__body > p:last-child {
    margin-bottom: 0;
}

/* ============ REQUEST FORM TABS ============ */
.reqbar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}
.reqbar .tab.is-active {
    background: var(--green-700);
    border-color: var(--green-700);
    color: #fff;
}

/* ============ MAP / OFFICE CARDS ============ */
.office-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.office {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    padding: 30px;
    box-shadow: var(--shadow-1);
}
.office h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 12px;
}
.office p {
    font-size: 17px;
    line-height: 30px;
    color: var(--slate);
}

/* ============ ADDITIONS · RESPONSIVE ============ */
@media (max-width: 1024px) {
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .gradations {
        grid-template-columns: repeat(2, 1fr);
        gap: 44px 32px;
    }
    .pgrid {
        grid-template-columns: repeat(2, 1fr);
    }
    .split {
        gap: 40px;
    }
    .split__aside {
        width: 280px;
    }
}
@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
        order: -1;
    }
    .nav__inner {
        padding: 12px 20px;
        gap: 12px;
    }
    .nav__inner > .btn {
        padding: 10px 16px;
        font-size: 15px;
    }
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        inset-inline: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        background: var(--white);
        border-bottom: 1px solid var(--border);
        padding: 12px 24px 20px;
        font-size: 17px;
    }
    .nav__links.is-open {
        display: flex;
    }
    .nav__links > a,
    .nav__has-sub > button {
        padding: 10px 0;
    }
    .nav__has-sub {
        position: static;
    }
    .nav__sub {
        display: none;
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0 0 0 14px;
        min-width: 0;
    }
    .nav__has-sub.is-open .nav__sub {
        display: flex;
    }
    .nav__has-sub > button svg {
        transition: transform 0.18s;
    }
    .nav__has-sub.is-open > button svg {
        transform: rotate(180deg);
    }
    .to-top {
        inset-block-end: 18px;
        inset-inline-end: 18px;
        width: 42px;
        height: 42px;
    }
    .phero__inner {
        padding: 34px 24px 40px;
    }
    .phero h1 {
        font-size: 32px;
        line-height: 44px;
    }
    .split {
        flex-direction: column;
    }
    .split__aside {
        width: 100%;
    }
    .steps,
    .policy-grid,
    .team-grid,
    .pgrid,
    .office-grid {
        grid-template-columns: 1fr;
    }
    .capblock {
        padding: 26px 22px;
    }
    .intro {
        flex-direction: column-reverse;
        gap: 30px;
    }
    .intro__media {
        width: 100%;
        max-width: 320px;
        align-self: center;
    }
    .activities {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .activities--six {
        grid-template-columns: repeat(2, 1fr);
    }
    .activity:not(:last-child)::after,
    .activity:not(:first-child)::before {
        display: none;
    }
    .iconlist,
    .iconlist--2 {
        grid-template-columns: 1fr;
    }
    .arrowlist {
        grid-template-columns: 1fr;
    }
    .checks {
        grid-template-columns: 1fr;
    }
    .tabpanel {
        flex-direction: column;
        gap: 26px;
        padding: 26px 22px;
    }
    .tabpanel__media {
        width: 60%;
        align-self: center;
    }
    .tabpanel__icon {
        align-self: flex-start;
    }
    .factband__inner {
        flex-direction: column;
        gap: 32px;
        padding: 44px 24px;
    }
    .factband__services {
        grid-template-columns: 1fr;
        gap: 0;
        width: 100%;
    }
    .factband__num {
        font-size: 56px;
    }
    .factband__title {
        font-size: 21px;
        line-height: 32px;
    }
    .h3 {
        font-size: 23px;
        line-height: 33px;
    }
}
