@font-face {
    font-family: "Helvetica neue";
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url("./fonts/HelveticaNeueMediumItalic.woff2") format("woff2");
}

@font-face {
    font-family: "Helvetica neue";
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url("./fonts/HelveticaNeueMedium.woff2") format("woff2");
}

@font-face {
    font-family: "Helvetica neue";
    font-style: normal;
    font-weight: 100;
    font-display: swap;
    src: url("./fonts/HelveticaNeueThin.woff2") format("woff2");
}

@font-face {
    font-family: "Helvetica neue";
    font-style: italic;
    font-weight: 100;
    font-display: swap;
    src: url("./fonts/HelveticaNeueThinItalic.woff2") format("woff2");
}

@font-face {
    font-family: "Helvetica neue";
    font-style: normal;
    font-weight: 200;
    font-display: swap;
    src: url("./fonts/HelveticaNeueUltraLight.woff2") format("woff2");
}

@font-face {
    font-family: "Helvetica neue";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("./fonts/HelveticaNeueBlack.woff2") format("woff2");
}

@font-face {
    font-family: "Helvetica neue";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("./fonts/HelveticaNeueBold.woff2") format("woff2");
}

@font-face {
    font-family: "Helvetica neue";
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url("./fonts/HelveticaNeueHeavy.woff2") format("woff2");
}

@font-face {
    font-family: "Helvetica neue";
    font-style: italic;
    font-weight: 800;
    font-display: swap;
    src: url("./fonts/HelveticaNeueHeavyItalic.woff2") format("woff2");
}

:root {
    --background-color: #fff;
    --body-text-color: #000;
    --body-font-size: 16px;
    --section-width: 1400px;
    --section-vertical-padding: 80px;
    --section-horizontal-padding: 3rem;
}

@media (max-width: 1119px) {

    :root {
        --section-vertical-padding: 50px;
        --section-horizontal-padding: 20px
    }
}

@media (max-width: 1023px) {
    :root {
        --section-vertical-padding: 40px;
        --section-horizontal-padding: 20px;
    }
}

*,
::before,
::after {
    box-sizing: border-box;
}

html {
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    background-color: var(--background-color);
    color: var(--body-text-color);
    font-size: var(--body-font-size);
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
div,
ul,
li {
    font-family: "Helvetica neue" !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

/* ===== header base ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--background-color);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    isolation: isolate;
}

/* Row A (utility + logo + search) */
.header .top_row {
    position: relative;
    width: 100%;
    border-bottom: 1px solid #0000001a;
}

.header .top {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: 4px 3rem;
}

.header .top .top__left {
    display: flex;
    align-items: center;
    min-width: 170px;
}

.header .top .top__email {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
}

.header .top .top__email:hover {
    color: #007937;
    text-decoration-color: #007f42;
    text-decoration: underline;
}

.header .logo {
    display: inline-flex;
    justify-self: center;
}

.header .logo img {
    display: block;
    transition: height 0.2s ease;
}

.header .top__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-width: 170px;
}

.header .search {
    width: 50px;
    height: 50px;
    border: 0;
    background: transparent;
    color: #57534e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    padding: 1px 6px;
    transition: background-color 0.15s ease, box-shadow 0.2s ease;
}

.header .search svg {
    font-size: inherit;
    min-width: 100%;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
    display: block;
}

/* Row B (nav) */
.header .navwrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: 4px 3rem;
}

.navwrap .logo,
.navwrap .search {
    display: none;
    /* hidden; only shows in mobile */
}

.header .nav {
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .nav .menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.header .nav .menu li {
    position: relative;
}

.header .nav .menu a {
    text-decoration: none;
    color: #1c1c1c;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.header .nav .menu a svg {
    transition: 0.3s transform ease, 0.3s background-color ease;
}

.header .nav .menu a:hover {
    color: #007937;
    text-decoration: underline;
}

.header .nav .menu .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e9e9e9;
    border-radius: 8px;
    padding: 10px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: none;
    /* hidden by default */
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    visibility: hidden;
    z-index: 1001;
}

.header .nav .menu .submenu li {
    list-style: none;
}

.header .nav .menu .submenu a {
    display: block;
    padding: 9px 12px;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    line-height: 1.5;
    white-space: nowrap;
    transition: 300ms background-color ease;
}

.header .nav .menu .submenu a:hover {
    color: #007937;
    text-decoration: underline;
}

/* Align dropdown under its parent; keep inside viewport on right-most items */
.menu>li:last-child .submenu {
    right: 0;
    left: auto;
}

/* Desktop hover/focus open */
@media (hover: hover) {

    .menu>li:hover>.submenu,
    .menu>li:focus-within>.submenu {
        display: block;
        opacity: 1;
        transform: translateY(0);
        visibility: visible;
    }
}

/* Open state via JS on touch devices */
.header .nav .menu>.has-sub:hover>a,
.header .nav .menu .has-sub.open>a {
    color: #007937;
    text-decoration: underline;
}

.header .nav .menu>.has-sub:hover svg,
.header .nav .menu .has-sub.open>svg {
    transform: rotate(180deg);
}

.header .nav .menu>.has-sub:hover .submenu,
.header .nav .menu .has-sub.open>.submenu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* ===== STICKY / SCROLLED STATE ===== */
/* When page is scrolled > threshold, JS toggles .is-stuck on header */
.header.is-stuck {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* hide top row  */
.header.is-stuck .top_row .top {
    display: none;
}

.header.is-stuck .navwrap {
    justify-content: space-between;
}

.header.is-stuck .navwrap .logo,
.header.is-stuck .navwrap .search {
    display: inline-flex;
}

.header.is-stuck .search {
    /* rounded pale background around the search icon (screenshot 2) */
    width: 32px;
    height: 32px;
    background: #ece9e6;
    /* light warm grey */
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
    border-radius: 4px;
}

/* keep nav line; subtle tighten */
.header.is-stuck .nav {
    height: 52px;
}

.mobile-top_row {
    display: none;
}

.mobile-top_row .top {
    z-index: 10000;
    background: #fff;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 0.8rem;
    padding-top: 0.8rem;
}

.mobile-top_row .top .top__left,
.mobile-top_row .top .top__right {
    min-width: auto;
    width: 50px;
}

/* ===== responsive ===== */
@media (max-width: 1100px) {
    .menu {
        gap: 22px;
    }
}

@media (max-width: 1120px) {

    .header .top_row,
    .header .navwrap {
        display: none;
    }

    .mobile-top_row {
        display: block;
    }
}

@media (max-width: 920px) {

    /* On the real site this collapses; for now keep it on one line lightly smaller */
    .menu a {
        font-size: 14px;
    }
}

@media (max-width: 768px) {

    /* You can replace with your own mobile menu later; this keeps layout readable */
    .top {
        grid-template-columns: auto 1fr auto;
    }

    .logo {
        justify-self: center;
    }

    .menu {
        gap: 16px;
    }

    .nav {
        overflow-x: auto;
    }
}

@media (max-width: 450px) {

    .header .logo img {
        width: 200px;
    }
}


/* ===== MOBILE NAVIGATION DRAWER ===== */

/* Burger */
.ar-burger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    background: none;
    cursor: pointer;
    position: relative;
    z-index: 10000;
    /* stays above menu */
}

.ar-burger__bar {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 1px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.ar-burger__bar:nth-child(1) {
    top: 13px;
}

.ar-burger__bar:nth-child(2) {
    top: 20px;
}

.ar-burger__bar:nth-child(3) {
    top: 27px;
}

/* Burger bar base for smoother X transform */
.ar-burger__bar {
    transform-origin: center;
    transition: transform 0.25s ease, opacity 0.2s ease;
}

/* When active (menu open) — make it an exact X */
.ar-burger.is-active .ar-burger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.ar-burger.is-active .ar-burger__bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.ar-burger.is-active .ar-burger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* Drawer root */
.ar-mnav {
    position: relative;
    inset: 0;
    z-index: 9999;
}

.ar-mnav[hidden] {
    display: none;
}

/* Backdrop */
.ar-mnav__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

/* Panel (slides from top) */
.ar-mnav__panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    transform: translateY(-100%);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
    height: 100vh;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

/* When open */
.ar-mnav.is-open .ar-mnav__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.ar-mnav.is-open .ar-mnav__panel {
    transform: translateY(0);
}

/* Panel header */
.ar-mnav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid #eee;
}

.ar-mnav__brand {
    font-weight: 800;
    color: #0f0f0f;
    text-decoration: none;
}

.ar-mnav__close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    background: #f2f2f2;
}

/* List */
.ar-mnav__list {
    list-style: none;
    margin: 0;
    padding: 8px 12px 18px;
    overflow: auto;
    flex: 1;
}

.ar-mnav__list>li {
    border-bottom: 1px solid #f0f0f0;
}

.ar-mnav__list>li>a,
.ar-mnav__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 8px;
    text-decoration: none;
    color: #0f0f0f;
    font-weight: 800;
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 15px;
}

.ar-mnav__toggle svg {
    transition: transform .2s ease;
}

/* Submenu */
.ar-mnav__sub {
    list-style: none;
    margin: 0;
    padding: 0 0 10px 8px;
    overflow: hidden;
}

.ar-mnav__sub li a {
    display: block;
    padding: 10px 8px 10px 16px;
    text-decoration: none;
    color: #333;
    font-weight: 700;
}

/* Expanded state (JS adds .is-open on parent li.has-sub) */
.has-sub.is-open .ar-mnav__toggle {
    color: #007937;
}

.has-sub.is-open .ar-mnav__toggle svg {
    transform: rotate(180deg);
}


/* ===== FULLSCREEN SEARCH OVERLAY ===== */
/* Overlay root */
.ar-search {
    position: fixed;
    inset: 0;
    z-index: 9998;
}

.ar-search[hidden] {
    display: none;
}

/* Backdrop */
.ar-search__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

/* Panel */
.ar-search__panel {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: .25s ease;
}

/* Open state (JS toggles .is-open) */
.ar-search.is-open .ar-search__backdrop {
    opacity: 1;
    pointer-events: auto;
}

.ar-search.is-open .ar-search__panel {
    opacity: 1;
    transform: translateY(0);
}

/* Close (X) */
.ar-search__close {
    position: absolute;
    top: 14px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
}

/* Form & field */
.ar-search__form {
    width: min(820px, calc(100% - 32px));
    padding: 0 8px;
}

.ar-search__field {
    position: relative;
    display: block;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

.ar-search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #6a6a6a;
}

.ar-search__field input {
    width: 100%;
    height: 48px;
    border: 0;
    outline: 0;
    padding: 0 14px 0 44px;
    border-radius: 10px;
    font-size: 16px;
    color: #111;
}

.ar-search__field input:focus {
    box-shadow: 0 0 0 3px rgba(0, 121, 55, .25);
    /* #007937 focus ring */
}

/* Hide submit on large screens; keep for accessibility */
.ar-search__submit {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ===== HERO SWIPER ===== */
:root {
    --ar-green: #19753a;
    --ar-green-dark: #0f5e2e;
    --ar-ring: #d0d0d0;
    --ar-hero-overlay: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.55));
}

/* Container */
.ar-hero--swiper {
    height: 70vh;
    min-height: 560px;
    color: #fff;
    position: relative;
    isolation: isolate;
}

.ar-swiper,
.ar-swiper .swiper-wrapper,
.ar-swiper .swiper-slide {
    height: 100%;
}

/* Background layers */
.ar-slide {
    position: relative;
    overflow: hidden;
}

.ar-slide .ar-bg {
    position: absolute;
    inset: 0;
}

.ar-slide[data-type="image"] .ar-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--ar-img);
    background-size: cover;
    background-position: center;
}

.ar-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ar-overlay {
    position: absolute;
    inset: 0;
    background: var(--ar-hero-overlay);
    mix-blend-mode: multiply;
}

/* Content center */
.ar-content {
    position: relative;
    z-index: 2;
    height: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.ar-title {
    font-size: clamp(40px, 7vw, 55px);
    font-weight: 800;
    line-height: 1.05;
    margin: 0 0 14px;
    text-align: center;
    text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
}

.ar-desc {
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 26px;
    text-align: center;
    text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
}

/* Buttons */
.ar-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 9999px;
    padding: 14px 24px;
    text-align: center;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    transition-timing-function: ease-in-out;
    transition-property: all;
    transition-duration: 300ms;
    overflow: hidden;
    font-size: 16px;
    line-height: 1;
}

.ar-btn--pill-main {
    padding: 0.6rem 0.6rem 0.6rem 0.6rem;
    border: 1px solid #ffffff57;
    border-radius: 100px;
    margin-top: 1rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.6rem;
    background-color: #ffffff42;
}

.ar-btn--pill {
    color: #fff;
    background: var(--ar-green);
    /* box-shadow: 0 0 0 3px var(--ar-green-dark) inset, 0 0 0 6px var(--ar-ring); */
}

.ar-btn--pill:hover {
    background: #2d8e58;
    text-decoration-line: underline;
}

.ar-cta-wrap {
    display: inline-flex;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: #ffffff42;
}

.ar-btn--green {
    color: #fff;
    background: var(--ar-green);
    border-color: transparent;
    /* box-shadow: inset 0 0 0 2px var(--ar-green-dark); */
}

.ar-btn--green:hover {
    background: #2d8e58;
    text-decoration-line: underline;
}

.ar-cta-wrap .ar-btn--light {
    color: #000;
    background: #fff;
    border-color: #fff;
}

.ar-btn--light {
    color: #000;
    background: #642eda00;
    border-color: #000;
}

.ar-btn--light:hover {
    color: #fff;
    background: #007937;
    border-color: #007937;
    text-decoration-line: underline;
}

.ar-cta-wrap .ar-btn--light:hover {
    color: #000;
    background: #ffffffba;
    border-color: #ffffffba;
    text-decoration-line: underline;
}

/* Swiper dots styled like reference */
.ar-dots {
    bottom: 18px !important;
}

.ar-dots .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    opacity: 1;
    background: rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(3px);
}

.ar-dots .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
    .ar-hero--swiper {
        min-height: 520px;
    }
}

@media (max-width: 600px) {
    .ar-hero--swiper {
        min-height: 500px;
    }
}

/* ===== ABOUT / INTRO ===== */

.ar-about {
    background: #f5f5f5;
}

.ar-about__inner {
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    /* text a bit wider */
    gap: clamp(28px, 5vw, 48px);
    align-items: center;
}

.ar-about__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

.ar-eyebrow {
    color: #007937;
    font-weight: 700;
    margin: 0;
    font-size: 22px;
}

.ar-section__title {
    font-size: clamp(28px, 3.6vw, 32px);
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.ar-section__lead {
    font-size: clamp(15px, 1.3vw, 20px);
    color: #374151;
    margin: 0 0 10px;
    text-wrap: balance;
}

.ar-section__ctas {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.6rem;
}

/* Media (image) */
.ar-about__media {
    margin: 0;
    /* reset figure */
}

.ar-about__media img {
    width: 100% !important;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

/* Responsiveness */
@media (max-width: 960px) {
    .ar-about__inner {
        grid-template-columns: 1fr;
    }

    .ar-about__media {
        order: 2;
    }

    /* keep text first, image second */
}

/* SERVICES */

:root {
    --ar-green: #19753a;
    --ar-text: #0f0f0f;
    --ar-border: #e6e6e6;
}

.ar-services-band {
    position: relative;
    width: 100%;
    background: #fff;
}

.ar-srv__container {
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
}

.ar-srv__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #b5b5b5;
    margin-bottom: clamp(18px, 4vw, 28px);
}

.ar-srv__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ar-srv__flex {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ar-srv__flex .ar-srv__item {
    width: 48%;
}

.ar-srv__flex .ar-srv__media img {
    width: 100%;
    height: 350px;
}

.ar-srv__card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ar-srv__media {
    margin: 0;
    position: relative;
    border-radius: 14px;
    overflow: hidden;
}

.ar-srv__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.ar-srv__badge {
    position: absolute;
    right: 14px;
    top: 14px;
    width: 68px;
    height: 68px;
    border-radius: 12px;
    background: var(--ar-green);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
}

.ar-srv__badge svg {
    width: 36px;
    height: 36px;
}

.ar-srv__body {
    padding: 2px 6px;
}

.ar-srv__name {
    color: #111827;
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    line-height: 1em;
    margin-top: 22px;
}

.ar-srv__link:before {
    content: "";
    display: block;
    background-color: currentColor;
    width: 0.9em;
    height: 0.9em;
    mask-repeat: no-repeat;
    mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M438.6%20278.6c12.5-12.5%2012.5-32.8%200-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3L338.8%20224%2032%20224c-17.7%200-32%2014.3-32%2032s14.3%2032%2032%2032l306.7%200L233.4%20393.4c-12.5%2012.5-12.5%2032.8%200%2045.3s32.8%2012.5%2045.3%200l160-160z%22%2F%3E%3C%2Fsvg%3E);
    -webkit-mask-image: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20448%20512%22%3E%3Cpath%20d%3D%22M438.6%20278.6c12.5-12.5%2012.5-32.8%200-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3%200s-12.5%2032.8%200%2045.3L338.8%20224%2032%20224c-17.7%200-32%2014.3-32%2032s14.3%2032%2032%2032l306.7%200L233.4%20393.4c-12.5%2012.5-12.5%2032.8%200%2045.3s32.8%2012.5%2045.3%200l160-160z%22%2F%3E%3C%2Fsvg%3E);
    mask-position: 0 0;
    -webkit-mask-position: 0 0;
    mask-size: 100% 100%;
    -webkit-mask-size: 100% 100%;
    transition-timing-function: ease-in-out;
    transition-property: transform, background-color;
    transition-duration: var(--transition-duration);
}

.ar-srv__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #007937;
    margin-top: 10px;
    font-size: 18px;
    text-decoration: none;
}

.ar-srv__link:hover {
    text-decoration: underline;
}

.ar-srv__card:hover .ar-srv__media img {
    transform: scale(1.03);
}

@media (max-width: 1024px) {
    .ar-srv__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ar-srv__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== KOMPETENS & INNOVATION ===== */

.ar-innovation {
    background: #e5f1eb;
    position: relative;
    width: 100%;
}

.ar-innovation__inner {
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(32px, 6vw, 60px);
    align-items: center;
}

/* image */
.ar-innovation__media {
    margin: 0;
}

.ar-innovation__media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

/* responsive */
@media (max-width: 960px) {
    .ar-innovation__inner {
        grid-template-columns: 1fr;
    }

    .ar-innovation__media {
        order: 1;
    }

    .ar-innovation__content {
        order: 2;
    }
}

/* ===== NYHETER ===== */

.ar-news {
    position: relative;
    width: 100%;
    background: #fff;
}

.ar-news__inner {
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    text-align: center;
}

.ar-news__head {
    margin-bottom: clamp(18px, 4vw, 28px);
}

/* grid */
.ar-news__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

/* card */
.ar-news__card {
    text-decoration: none;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    border: 1px solid #22222240;
}

.ar-news__media {
    position: relative;
    margin: 0;
}

.ar-news__media img {
    width: 100%;
    object-fit: cover;
    display: block;
    min-height: 235px;
    border-radius: 10px;
}

.ar-news__date {
    position: absolute;
    right: 12px;
    top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #54545461;
    color: #fff;
    padding: 10px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    backdrop-filter: blur(2px);
}

/* body */
.ar-news__body {
    max-width: 100%;
    margin: 0;
    margin-top: 1rem;
}

.ar-news__name {
    font-size: 20px;
    color: #111827;
    margin: 0;
}

/* chips */
.ar-news__chips {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ar-chip {
    display: inline-block;
    padding: 8px;
    font-weight: 600;
    font-size: 18px;
    background: #ededed;
    color: #007937;
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px #cfe4d6;
}

/* CTA button centered */
.ar-news__cta {
    margin-top: clamp(28px, 4vw, 40px);
}

/* responsive */
@media (max-width: 1024px) {
    .ar-news__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .ar-news__grid {
        grid-template-columns: 1fr;
    }

    .ar-news__inner {
        text-align: left;
    }

    .ar-news__head {
        text-align: center;
    }
}

/* CTA VIDEO */

:root {
    --ar-green: #19753a;
    --ar-green-dark: #0f5e2e;
    --ar-ring: #d0d0d0;
}

.ar-cta-video {
    position: relative;
    width: 100%;
}

.ar-cta__frame {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    padding-bottom: 40px;
    padding-top: 0px;
}

.ar-cta__frame_inner {
    position: relative;
    background-image: url("../webImages/competence_Innovation.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    background-size: cover;
    background-position: center bottom;
    width: 100%;
    min-height: 500px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    overflow: hidden;
}

.ar-cta__overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    opacity: 0.5;
    z-index: 0;
    background: linear-gradient(0deg,
            rgba(9, 64, 34, 1) 0%,
            rgba(16, 30, 26, 1) 0%,
            rgba(9, 64, 34, 1) 95.8974358974359%);
}

.ar-cta__content {
    position: absolute;
    inset: 0;
    margin: 0 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1;
    gap: 1rem;
}

.ar-cta__title {
    font-size: clamp(28px, 4.6vw, 55px);
    margin: 0;
}

/* ===== FOOTER ===== */
:root {
    --ar-light: #eaf3ed;
    --ar-ink: #0f0f0f;
    --ar-muted: #5f6a63;
    --ar-link: #0f5e2e;
    --ar-border: #d8e5dd;
}

.ar-footer {
    background: #e5f1eb;
    position: relative;
    width: 100%;
}

.ar-footer__main {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    padding-bottom: 30px;
    padding-top: 80px;
}

.ar-footer__inner {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 25px;
}

/* brand */

.ar-foot-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 30%;
    padding-right: 60px;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    position: relative;
    background-size: cover;
}

.ar-foot-logo img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    max-width: 100%;
}

.ar-foot-tag {
    margin: 0;
    color: #374151;
    max-width: 100%;
    font-size: 16px;
}

.ar-foot-social {
    max-width: 100%;
    width: max-content;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
}

.ar-foot-social .ar-social {
    display: flex;
    justify-content: center;
    align-items: center;
    transition-property: background-color, transform, opacity;
    transition-duration: 300ms;
    transition-timing-function: ease;
    border-radius: 2px;
    background-color: #007937;
    padding: 5px;
    opacity: 1;
}

.ar-foot-social .ar-social svg {
    fill: #fff;
    width: 16px;
    height: 16px;
    transition-property: fill;
    transition-duration: 300ms;
    transition-timing-function: ease;
}

/* columns */
.ar-foot-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    position: relative;
    background-size: cover;
    width: 15%;
}

.ar-foot-title {
    color: #868686;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
    margin-bottom: 40px;
    max-width: 100%;
}

.ar-foot-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}

.ar-foot-list a {
    color: #000;
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0;
}

.ar-foot-list a:hover {
    color: #007937;
}

/* divider & bottom bar */
.ar-foot-divider {
    margin-top: 40px;
    margin-bottom: 40px;
    border: 0;
    border-top: 2px solid #d2d2d2;
}

.ar-foot-bottom {
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ar-foot-copy {
    margin: 0;
    color: #374151;
    font-size: 16px;
}

.ar-foot-legal {
    display: flex;
    gap: 30px;
}

.ar-foot-legal a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}

.ar-foot-legal a:hover {
    color: #007937;
}

/* responsive */
@media (max-width: 1024px) {
    .ar-footer__inner {
        grid-template-columns: 1fr 1fr;
    }

    .ar-foot-brand {
        width: auto;
        min-width: 30%;
    }

    .ar-foot-col {
        width: auto;
        min-width: 15%;
    }
}

@media (max-width: 640px) {
    .ar-footer__inner {
        flex-direction: column;
    }

    .ar-foot-logo svg {
        width: 220px;
    }

    .ar-foot-bottom {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .ar-foot-divider {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .ar-foot-legal {
        display: none;
    }
}

/* Contact page styles */

/* ===== CONTACT: WE ARE HERE FOR YOU ===== */

.ar-contact-cards {
    position: relative;
    background: #ccc;
    background-image: var(--ar-contact-bg);
    background-size: cover;
    background-position: center center;
    color: #fff;
    padding: clamp(60px, 10vw, 120px) 0;
    overflow: hidden;
}

.ar-contact-overlay {
    position: absolute;
    inset: 0;
    background-color: #000;
    transition: background-color 0.3s ease-in-out;
    opacity: 0.3;
}

.ar-contact-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: 0;
}

.ar-contact-title {
    font-size: clamp(28px, 4vw, 55px);
    font-weight: 800;
}

/* cards flex */
.ar-contact-flex {
    max-width: 100%;
    position: relative;
    width: auto;
    padding: 0.7rem;
    border: 1px solid #ffffff57;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    background-color: #ffffff42;
}

.ar-card {
    max-width: 100%;
    position: relative;
    width: 300px;
    padding: 30px 30px 30px 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background-color: #fff;
}

.ar-card h4 {
    font-size: 27px;
    font-weight: 800;
    margin: 0;
    color: #111827;
    text-align: left;
}

.ar-card p {
    margin: 0;
    text-align: left;
    font-weight: 500;
    color: #1c1c1c;
}

/* contact link */
.ar-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #007937;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.ar-contact-link:hover {
    text-decoration: underline;
    transform: translateY(-1px);
}

/* responsive tweaks */
@media (max-width: 640px) {
    .ar-card {
        text-align: center;
    }

    .ar-contact-link {
        justify-content: center;
    }
}

/* ===== INFO STRIP ===== */

.ar-info-strip {
    background: #e4f0ea;
    position: relative;
    width: 100%;
}

.ar-info__inner {
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding-bottom: 50px;
    padding-top: 50px;
}

.ar-info__icon {
    font-size: 33px;
}

.ar-info__icon svg {
    font-size: inherit;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    fill: #007937;
}

.ar-info__text {
    margin: 0 0 6px;
    font-weight: 700;
    line-height: 1.6;
    font-size: 18px;
    color: #374151;
}

.ar-info__tel {
    color: #008000;
    text-decoration: none;
}

.ar-info__tel:hover {
    text-decoration-line: underline;
}

.ar-info__link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #007937;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.ar-info__link .ext {
    width: 18px;
    height: 18px;
}

.ar-info__link:hover {
    text-decoration: underline;
}

/* ===== CONTACT FORM & MAP ===== */

.ar-contact-form {
    background: #fff;
    position: relative;
    width: 100%;
    background-position: center center;
    background-size: cover;
}

.ar-contact-container {
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    background-size: cover;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
    text-align: left;
    margin: 0 auto;
    width: 100%;
    gap: 3rem;
}

.ar-contact-left,
.ar-contact-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    align-items: flex-start;
    width: calc(50% - 3rem * ((2 - 1) / 2));
    position: relative;
    background-size: cover;
}

/* LEFT SIDE */

.ar-contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    position: relative;
    background-size: cover;
}

.ar-contact-left h2 {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 700;
    margin: 0;
    color: #111827;
}

.ar-contact-sub {
    font-weight: 700;
    color: #007937;
    margin-top: 0.5rem;
    font-size: 22px;
}

.ar-contact-address strong {
    font-size: 20px;
    max-width: 100%;
    margin: 0;
    font-weight: 700;
    margin-top: 0.5rem;
}

.ar-contact-address {
    font-style: normal;
    font-size: 20px;
    max-width: 100%;
    margin: 0;
    color: #1c1c1c;
    margin-top: 0px;
    margin-bottom: 10px;
}

.ar-contact-map {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 100%;
    position: relative;
    background-size: cover;
    width: 100%;
    border-radius: 20px;
}

.ar-contact-map iframe {
    width: 100%;
    height: 200px;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* RIGHT SIDE: FORM */
.ar-contact-right form {
    width: 100%;
    max-width: 100%;
    background-color: #fff;
    padding: 20px 20px 20px 20px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px #b7b7b725;
}

.ar-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #888;
    margin-bottom: 12px;
}

.ar-form input,
.ar-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    background-color: #f5f5f5;
    border-radius: 10px;
    color: #969696;
    font-size: 14px;
    font-weight: 500;
    margin-top: 6px;
    margin-bottom: 16px;
    font-family: inherit;
    resize: vertical;
}

.ar-form input:focus,
.ar-form textarea:focus {
    outline: none;
    border-color: #007937;
    box-shadow: 0 0 0 2px rgba(25, 117, 58, 0.15);
}

.ar-btn-submit {
    display: block;
    width: 100%;
    padding: 14px;
    background: #007937;
    color: #fff;
    font-weight: 800;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    transition: 0.2s ease;
}

.ar-btn-submit:hover {
    background: #505050;
}

.req {
    color: #d00;
}

/* Responsive */

@media (max-width: 768px) {

    .ar-contact-container,
    .ar-srv__flex {
        flex-direction: column;
    }

    .ar-contact-left,
    .ar-contact-right,
    .ar-srv__item {
        width: 100% !important;
    }
}

/* ===== PAGE HERO ===== */

.ar-banner-hero {
    position: relative;
    background: #ccc;
    background-image: var(--ar-banner-img);
    background-size: cover;
    background-position: center center;
    color: #fff;
    overflow: hidden;
}

.ar-banner-hero__overlay {
    position: absolute;
    inset: 0;
    background-color: #000;
    transition: background-color 0.3s ease-in-out;
    opacity: 0.3;
}

.ar-banner-hero__inner {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    min-height: 500px;
}

.ar-banner-hero__title {
    font-size: clamp(35px, 6vw, 55px);
    font-weight: 800;
    margin: 0;
    color: #fff;
    text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
}

.ar-banner-hero__kicker {
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 700;
    margin: 0;
    color: #fff;
    text-shadow: 4px 4px 2px rgba(0,0,0,0.6);
}

/* About */

/* ===== KPI BAND ===== */

.ar-kpi {
    background: #fff;
    position: relative;
    width: 100%;
}

.ar-kpi__inner {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.ar-kpi__item {
    max-width: 100%;
    position: relative;
    width: 24%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.ar-kpi__num {
    font-size: clamp(30px, 4.4vw, 50px);
    color: #007937;
    font-weight: 700;
    max-width: 100%;
    margin: 0;
}

.ar-kpi__label {
    font-weight: 700;
    font-size: clamp(14px, 1.4vw, 25px);
    max-width: 100%;
    margin: 0;
}


@media (max-width: 500px) {
    .ar-kpi__inner{
        flex-wrap: wrap;
    }
    
    .ar-kpi__item {
    width: 50%;
    }
    
}
/* ===== ORGANISATION: COMPETENCE & INNOVATION ===== */

/* SECTION WRAPPER: only background/position/width as requested */
.ar-org-offer {
    background: #f5f5f5;
    position: relative;
    width: 100%;
}

/* INNER CONTAINER: uses your global section variables */
.ar-org-offer__inner {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    /* text a touch wider */
    gap: 40px;
    align-items: center;
}

/* TEXT */
.ar-eyebrow {
    color: #007937;
    font-weight: 800;
    margin: 0 0 8px;
}

.ar-org-offer__title {
    margin: 0 0 14px;
    font-weight: 800;
    font-size: clamp(24px, 3.2vw, 34px);
    line-height: 1.2;
    color: #0f0f0f;
}

.ar-org-offer__content p {
    margin: 0 0 14px;
    color: #333;
    line-height: 1.65;
    font-size: 16px;
}

.ar-bullet {
    margin: 6px 0 16px;
    padding-left: 20px;
}

.ar-bullet li {
    margin: 6px 0;
}

/* CTA link */
.ar-linkcta {
    display: inline-block;
    color: #007937;
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.ar-linkcta:hover {
    border-color: #007937;
}

/* IMAGE */
.ar-org-offer__media {
    margin: 0;
}

.ar-org-offer__media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 960px) {
    .ar-org-offer__inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* keep text first, image second on mobile */
}

/* ===== ORG: BAKGRUND ===== */
.ar-org-background {
    background: #f6f7f6;
    position: relative;
    width: 100%;
}

.ar-org-background__inner {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
}

/* TEXT */
.ar-eyebrow {
    color: #007937;
    font-weight: 800;
    margin-bottom: 8px;
}

.ar-org-background__title {
    font-weight: 800;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
    margin-bottom: 16px;
}

.ar-org-background__content p {
    color: #333;
    line-height: 1.65;
    margin-bottom: 14px;
    font-size: 16px;
}

/* LOGOS GRID */
.ar-org-background__logos ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-items: center;
}

.ar-org-background__logos svg {
    width: 120px;
    height: auto;
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .ar-org-background__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ar-org-background__logos ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 500px) {
    .ar-org-background__logos ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* SECTION WRAPPER (only these) */
.ar-leads {
    background: #ffffff;
    position: relative;
    width: 100%;
}

/* INNER CONTAINER (your tokens) */
.ar-leads__inner {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
}

/* Grid */
.ar-leads__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Item */
.ar-leads__media {
    margin: 0 0 12px;
}

.ar-leads__media img {
    display: block;
    width: 100%;
    height: 360px;
    /* tall portrait like reference */
    object-fit: cover;
    border-radius: 10px;
    /* soft corners like screenshot */
}

.ar-leads__name {
    margin: 0 0 4px;
    font-weight: 800;
    font-size: 18px;
    color: #0f0f0f;
}

.ar-leads__role {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #666;
}

/* Responsive */
@media (max-width: 1080px) {
    .ar-leads__media img {
        height: 320px;
    }
}

@media (max-width: 900px) {
    .ar-leads__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .ar-leads__grid {
        grid-template-columns: 1fr;
    }

    .ar-leads__media img {
        height: 300px;
    }
}

/* Project */

/* ===== CASE GRID ===== */
.ar-project-cases {
    background: #fff;
    position: relative;
    width: 100%;
}

.ar-project-cases__inner {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
}

/* Grid layout */
.ar-case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ar-case {
    border: 1px solid #22222240;
    padding: 15px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    transition: box-shadow 0.3s ease;
}

.ar-case:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

/* Image */
.ar-case__img {
    margin: 0;
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.ar-case__img img {
    width: 100%;
    height: 275px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.ar-case:hover img {
    transform: scale(1.03);
}

/* Content */
.ar-case__body {
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    text-align: left;
    max-width: 100%;
    position: relative;
}

.ar-case__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    margin-top: 20px;
}

.ar-case__link {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    color: #007937;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.ar-case__link::before {
    content: "→";
    display: inline-block;
    margin-right: 8px;
    font-size: 16px;
}

/* Button */
.ar-case__btnwrap {
    font-size: 16px;
    gap: 20px;
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ar-case__load {
    background: #111827;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 3px;
    font-size: 16px;
    padding: 14px 24px;
    border: 1px solid #111827;
    cursor: pointer;
    transition: background 0.3s ease;
}

.ar-case__load:hover {
    background: #374151;
}

/* Responsive */
@media (max-width: 1024px) {
    .ar-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .ar-case-grid {
        grid-template-columns: 1fr;
    }
}

/* wrapper */
.ar-news-list {
    background: #fff;
    position: relative;
    width: 100%;
}

.ar-news-list__inner {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
}

/* item row */
.ar-news-item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 20px;
    padding: 10px;
    border-top: 1px solid #D3D3D3;
    border-bottom: 1px solid #D3D3D3;
}

/* thumbnail */
.ar-news-thumb {
    display: block;
    aspect-ratio: 4 / 3;
    /* same feel as ref */
    overflow: hidden;
    width: 20%;
    min-height: 150px;
    border-radius: 10px;
}

.ar-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
}

.ar-news-thumb:hover img {
    transform: scale(1.03);
}

/* main content */
.ar-news-main {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.ar-news-main-inner {
    width: 55%;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.6rem;
}

/* allow text to wrap nicely */
.ar-news-title {
    color: #000;
    font-size: 22px;
    font-weight: 700;
    text-decoration-color: #000;
    text-decoration-line: none;
}

.ar-news-title:hover {
    color: #007937;
    text-decoration: underline;
}

.ar-news-date {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* right-aligned tags on desktop */
.ar-news-meta {
    display: flex;
    justify-content: flex-end;
    /* push tags to the right */
}

.ar-news-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ar-badge {
    background: #F7F7F7;
    padding: 6px 10px;
    border-radius: 5px;
    color: #007937;
    font-size: 16px;
    font-weight: 600;
    padding-top: 10px;
    white-space: nowrap;
}

/* responsive: stack & move tags under date */
@media (max-width: 860px) {
    .ar-news-item {
        row-gap: 12px;
    }

    .ar-news-thumb {
        width: 40%;
    }
    
    .ar-news-main{
        width: 60%;
        flex-wrap: wrap;
    }
    
    .ar-news-main-inner {
    width: 100%;
    }
.ar-news-title {
    font-size: 20px;
}
    .ar-news-meta {
        justify-content: flex-start;
    }

}

@media (max-width: 500px) {
  .ar-news-title {
    font-size: 18px;
}  
}


.ar-news-more {
    text-align: center;
    padding-top: 32px;
}

.ar-news-btn {
    background: #0a0a0a;
    color: #fff;
    border: 0;
    border-radius: 6px;
    font-weight: 800;
    padding: 12px 28px;
    cursor: pointer;
    transition: background .25s ease;
}

.ar-news-btn:hover {
    background: #007937;
}

/* News Inner */

/* ========== HERO ========== */
.ar-article-hero {
    background: #e5f1eb;
    position: relative;
    width: 100%;
}

.ar-article-hero__inner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    /* centers text and media */
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.ar-article-meta {
    position: relative;
    display: flex;
    align-items: center;
    color: #007937;
    margin: 0;
    background-color: #DEE9E4;
    padding: 0.3rem 0.6rem 0.3rem 0.6rem;
    border-radius: 6px;
    gap: .5rem;
}

.ar-chip {
    padding: 6px 12px;
    border-radius: 6px;
    margin-right: 8px;
    background: transparent;
    font-size: 18px;
    box-shadow: none;
    margin: 0;
    padding: 0;
}

.ar-article-title {
    font-weight: 800;
    font-size: clamp(32px, 5vw, 45px);
    width: 800px;
    text-wrap: balance;
    color: #111827;
    margin: 0;
    max-width: 100%;
}

.ar-article-date {
    font-size: 20px;
    color: #656565;
    margin: 0;
}

.ar-article {
    background: #fff;
    position: relative;
    width: 100%;
}

.ar-article__inner {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    display: flex;
    gap: 6rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .ar-article__inner {
        flex-direction: column;
        gap: 3rem;
    }

    .ar-article__content,
    .ar-article-sidebar {
        width: 100% !important;
    }

    .ar-article-sidebar {
        padding: 0 !important;
    }
}

/* content */
.ar-article__content {
    font-size: 17px;
    line-height: 1.75;
    color: #202020;
    width: calc(70% - 6rem * (2 - 1) / 2);
}

.ar-lead {
    font-weight: 600;
    font-size: 19px;
    color: #0f0f0f;
}

.ar-article__content h2 {
    font-weight: 800;
    margin: 24px 0 10px;
    color: #0f0f0f;
}

.ar-article__content ul {
    padding-left: 20px;
}

.ar-figure {
    margin: 18px 0;
}

.ar-figure img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.ar-figure figcaption {
    color: #666;
    font-size: 14px;
    margin-top: 6px;
}

.ar-quote {
    margin: 18px 0;
    padding: 16px 18px;
    background: #f6f7f6;
    border-left: 4px solid #007937;
    font-weight: 700;
    font-style: italic;
}

/* ========== SIDEBAR ========== */
.ar-article-sidebar {
    position: sticky;
    top: 60px;
    /* Starts sticking after 100px of scroll */
    align-self: flex-start;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, .1); */
    flex-shrink: 0;
    width: calc(30% - 6rem * (2 - 1) / 2);
}

/* .ar-article-sidebar__inner {
    max-width: 320px;
} */

.ar-article-sidebar h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.ar-sidebar-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.ar-sidebar-list li {
    margin-bottom: 12px;
}

.ar-sidebar-list a {
    color: #007937;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
}

.ar-sidebar-list a:hover {
    text-decoration: underline;
}

.ar-sidebar-list span {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 12px;
}


/* PROJECT Inner */

/* ========== HERO ========== */
.ar-project-hero {
    background: linear-gradient(0deg, rgba(0, 91, 41, 1) 0%, rgba(0, 68, 31, 1) 93.84615384615384%);
    position: relative;
    width: 100%;
}

.ar-project-hero__inner {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    /* centers text and media */
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-align: center;
}

.ar-project-meta {
    position: relative;
    display: flex;
    align-items: center;
    color: #DEE9E4;
    margin: 0;
    padding: 0.3rem 0.6rem 0.3rem 0.6rem;
    border-radius: 6px;
    gap: .5rem;
    background: transparent;
}

/*.ar-chip {*/
/*    padding: 6px 12px;*/
/*    border-radius: 6px;*/
/*    margin-right: 8px;*/
/*    background: transparent;*/
/*    font-size: 18px;*/
/*    box-shadow: none;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    color: #DEE9E4;*/
/*}*/

.ar-project-title {
    font-weight: 800;
    font-size: clamp(32px, 5vw, 45px);
    width: 800px;
    text-wrap: balance;
    color: #fff;
    margin: 0;
    max-width: 100%;
}

/* ========== PROJECT DETAIL ========== */
.ar-project-detail {
    background: #f9f9f9;
}

.ar-project-detail__inner {
    display: flex;
    justify-content: space-between;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
}

.ar-project-detail__text {
    flex: 1;
    max-width: 60%;
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
}

.ar-project-detail__text h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f0f0f;
}

.ar-project-meta {
    margin-bottom: 30px;
    align-items: flex-start;
    flex-direction: column;
}

.ar-project-meta__client,
.ar-project-meta__period {
    font-size: 22px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    color: #374151;
}

.ar-project-meta strong {
    color: #007937;
}

.ar-project-detail__text h3 {
    font-weight: 600;
    font-size: 22px;
    margin-top: 20px;
}

.ar-project-detail__text p {
    line-height: 1.6;
    font-size: 20px;
}

.ar-project-detail__image {
    flex: 1;
    max-width: 35%;
    padding-left: 20px;
}

.ar-project-detail__image figure {
    margin: 0;
}

.ar-project-detail__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.ar-project-detail__image figcaption {
    text-align: center;
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* ========== MOBILE RESPONSIVENESS ========== */
@media (max-width: 768px) {
    .ar-project-detail__inner {
        flex-direction: column;
        /* Stack text and image vertically */
        padding: 20px;
    }

    .ar-project-detail__text {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .ar-project-detail__image {
        max-width: 100%;
        padding-left: 0;
    }

    .ar-project-detail__image img {
        max-width: 100%;
        height: auto;
    }

    .ar-project-detail__text h2 {
        font-size: 24px;
        /* Slightly smaller title on mobile */
    }

    .ar-project-detail__text h3 {
        font-size: 16px;
        /* Smaller headings on mobile */
    }

    .ar-project-meta__client,
    .ar-project-meta__period {
        font-size: 14px;
        /* Smaller font for meta info */
    }
}

@media (max-width: 480px) {
    .ar-project-detail__inner {
        padding: 10px;
        /* More compact padding on very small screens */
    }

    .ar-project-detail__text h2 {
        font-size: 22px;
        /* Adjust title for smaller screens */
    }

    .ar-project-detail__text h3 {
        font-size: 14px;
    }

    .ar-project-meta__client,
    .ar-project-meta__period {
        font-size: 12px;
        /* Further reduce font size */
    }

    .ar-project-detail__image img {
        max-height: 200px;
        /* Adjust image size on very small screens */
    }
}


/* ===== Services Inner Section wrapper (follow your rules) ===== */

/* Section wrapper (unchanged) */
.ar-ts-hero {
    background: #fff;
    position: relative;
    width: 100%;
}

/* ✨ FLEX instead of Grid */
.ar-ts-hero__inner {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
    display: flex;
    gap: 28px;
    align-items: stretch;
    /* match heights nicely */
}

/* columns */
.ar-ts-hero__left {
    flex: 1.1 1 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ar-ts-hero__right {
    flex: 1 1 0;
    min-width: 0;
}

/* min-width:0 prevents overflow */

/* Mobile: stack */
@media (max-width:980px) {
    .ar-ts-hero__inner {
        flex-direction: column;
    }
}

/* Icon + text styles (unchanged) */
.ar-ts-ico {
    font-size: 65px;
    border: 4px solid #3b82f6;
    padding: 12px;
    border-radius: 10px;
    background: #007937;
    border-width: 0px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ar-ts-ico svg {
    font-size: inherit;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: #3b82f6;
    fill: #fff;
}

/* CTA under slider */
.ar-ts-cta {
    margin-top: 14px;
    display: flex;
    justify-content: flex-start;
}

/* Swiper box */
.ar-ts-swiper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 28px rgba(0, 0, 0, .12);
}

.ar-ts-swiper .swiper-slide {
    height: 420px;
}

@media (max-width:980px) {
    .ar-ts-swiper .swiper-slide {
        height: 320px;
    }
}

.ar-ts-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Swiper UI */
.ar-ts-swiper .swiper-pagination-bullet {
    background: #fff;
    opacity: .6;
}

.ar-ts-swiper .swiper-pagination-bullet-active {
    background: #007937;
    opacity: 1;
}

.ar-ts-swiper .swiper-button-prev,
.ar-ts-swiper .swiper-button-next {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .45);
}

.ar-ts-services {
    background: #fff;
    position: relative;
    width: 100%;
}

.ar-ts-services__inner {
    position: relative;
    max-width: var(--section-width);
    margin: 0 auto;
    padding: var(--section-vertical-padding) var(--section-horizontal-padding);
}

.ar-ts-services__inner_content {
    background: #e5f1eb;
    border: 2px solid #e5f1eb;
    border-radius: 10px;
    padding: 40px;
}

.ar-ts-services__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.ar-ts-services__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
}

.ar-ts-services__icon svg {
    font-size: inherit;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: #007937;
    fill: #007937;
}

.ar-ts-services__header h2 {
    font-weight: 800;
    color: #14202b;
    font-size: clamp(16px, 2.5vw, 26px);
    margin: 0;
}

.ar-ts-services__cols {
    display: flex;
    gap: 48px;
}

.ar-ts-services__cols ul {
    flex: 1;
    list-style: disc;
    padding-left: 20px;
    color: #0f1e2b;
    margin: 0;
}

.ar-ts-services__cols li {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 20px;
    color: #374151;
}

@media (max-width: 800px) {
    .ar-ts-services__cols {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 600px){
    .ar-ts-services__inner_content {
    padding: 20px;
}
}

.ar-srv__badge img {
    width: 100%;
    height: 100%;
    object-fit: none;
}

/* wrapper */
.ar-iso{
  background:#fff;
  position:relative;
  width:100%;
}

/* inner container */
.ar-iso__inner{
  position:relative;
  max-width:var(--section-width);
  margin:0 auto;
  padding:var(--section-vertical-padding) var(--section-horizontal-padding);
}

/* heading block */
.ar-iso__head h2{
  margin:0 0 6px;
  font-weight:800;
  font-size:clamp(24px,3.2vw,32px);
  color:#0f1e2b;
}
.ar-eyebrow{
  color:#007937;
  font-weight:800;
  margin:0 0 6px;
}

/* cards grid */
.ar-iso__grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:24px;
  margin-top:18px;
}
@media (max-width: 900px){
  .ar-iso__grid{ grid-template-columns:1fr; }
}

/* card */
.ar-iso-card{
  background:#fff;
  border:1px solid #d9e8df;
  border-radius:10px;
  padding:24px;
  box-shadow:0 1px 0 rgba(0,0,0,.02);
}
.ar-iso-card__icon{
  width:44px; height:44px;
  display:grid; place-items:center;
  border-radius:10px;
  background:#eef6f1;
  margin-bottom:10px;
}
.ar-iso-card h3{
  margin:0 0 10px;
  font-weight:800;
  color:#0f1e2b;
  font-size: clamp(18px, 2.6vw, 24px);
}
.ar-iso-card__lead{
  margin:0 0 6px;
  font-weight:800;
  color:#0f1e2b;
}

/* button */
.ar-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
}
.ar-btn--pdf{
  background:#007937;
  color:#fff;
  border-radius:999px;
  padding:12px 16px;
  margin-top:10px;
  transition:background .2s ease, transform .12s ease;
}
.ar-btn--pdf:hover{ background:#066f36; transform:translateY(-1px); }
.ar-btn__ico{ display:grid; place-items:center; }
.ar-pp-body__inner {
    position: relative;
    max-width: var(--section-width, 1100px);
    margin: 0 auto;
    padding: var(--section-vertical-padding, 48px) var(--section-horizontal-padding, 20px);
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 3rem;
}

@media (max-width: 900px) {
    .ar-pp-body__inner {
        grid-template-columns: 1fr
    }
}

/* ===== Sidebar cards ===== */
.ar-pp-aside .ar-card {
    background: #fff;
    padding: 0;
    margin-bottom: 1rem;
    width: 100%;
}

.ar-pp-aside .ar-card p {
    color: #374151;
    font-size: 16px;
}

/* ===== Accordion ===== */
.ar-accordion {
    margin-top: 1rem
}

.ar-acc-item {
        background-color: #F5F5F5;
    border-radius: 10px;
    margin-bottom: .75rem;
    box-shadow: 0 0 0 1px #e4efe9 inset;
}

.ar-acc-header {
    margin: 0
}

.ar-acc-trigger {
    all: unset;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: -webkit-fill-available;
    padding: 25px;
    cursor: pointer;
    color: #007937;
    font-weight: 500;
    font-size: 20px;
}

.ar-acc-trigger:focus-visible {
    outline: 2px solid #007937;
    outline-offset: 2px;
    border-radius: 8px;
}

.ar-acc-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 50%;
    background: #007937;
    position: relative;
}

.ar-acc-icon:before,
.ar-acc-icon:after {
    content: "";
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ar-acc-icon:before {
    width: 12px;
    height: 2px;
}

.ar-acc-icon:after {
    width: 2px;
    height: 12px;
    transition: opacity .2s ease
}

/* when expanded -> minus */
.ar-acc-trigger[aria-expanded="true"] .ar-acc-icon:after {
    opacity: 0
}

.ar-acc-panel {
    padding: 0 25px 25px;
    color: #374151;
}

  .ar-career__inner {
    position: relative;
    max-width: var(--section-width, 1120px);
    margin: 0 auto;
    padding: var(--section-vertical-padding, 56px) var(--section-horizontal-padding, 20px);
  }

  /* Intro */
  .ar-eyebrow {
    color: #007937;
    font-weight: 700;
    margin: 0 0 .25rem;
  }

  .ar-career__intro {
    text-align: center;
    margin: 0 auto;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .ar-career__intro h1 {
    margin: .1rem 0 .5rem;
    font-size: clamp(1.6rem, 2.6vw, 2.125rem);
    font-weight: 800;
    color: #0f1f17;
  }

  .ar-lead {
    color: #374151;
    max-width: 62ch
  }

  /* Grid */
  .ar-career__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    margin-top: 1.75rem;
  }

  @media (max-width: 980px) {
    .ar-career__grid {
      grid-template-columns: 1fr;
    }
  }

  /* Left column */
  .ar-career__content {
    min-width: 0
  }

  .ar-story {
    margin: 1.5rem 0;
    font-size: 20px;
  }

  .ar-story .ar-tag {
    color: #007937;
    font-weight: 700;
    margin: 0 0 .25rem;
  }

  .ar-story h2 {
    margin: .25rem 0 .75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: #374151
  }

  .ar-story p {
    color: #374151
  }

  /* Quote */
  .ar-career__content .ar-quote {
    margin: 1rem 0;
    padding: .5rem 1rem .5rem 1rem;
    border-left: 4px solid #007937;
    color: #374151;
    background: #f3fbf7;
    border-radius: 8px;
    font-weight: 500;
    font-style: normal;
  }

  .ar-career__content .ar-quote p {
    margin: .35rem 0
  }

  /* Right sticky column */
  .ar-career__sticky {
    position: relative;
  }

  @media (min-width: 981px) {
    .ar-career__sticky {
      position: sticky;
      top: 24px;
      /* distance from top when stuck */
      height: fit-content;
    }
  }

  /* Media */
  .ar-career__media {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #eef5f2;
    box-shadow: 0 1px 0 1px #e7f0ec inset;
  }

  .ar-career__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }

  .ar-career__media figcaption {
    padding: .6rem .9rem;
    color: #375047;
    font-size: .95rem;
    background: #f7fbf9;
    border-top: 1px solid #e6f1ec;
  }