@import url('https://fonts.googleapis.com/css2?family=Mulish:wght@400;600;700&family=Noto+Sans:wght@500;600;700&display=swap');

:root {
    --gold: #00a86b;
    --gold-light: #34c88a;
    --ink: #171717;
    --muted: #626262;
    --soft: #f6f3ed;
    --white: #fff;
    --max: 1200px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Mulish, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7
}

h1,
h2,
h3 {
    font-family: "Noto Sans", sans-serif;
    line-height: 1.15;
    margin: 0 0 20px
}

h1 {
    font-size: clamp(2.7rem, 6vw, 5.2rem);
    max-width: 900px
}

h2 {
    font-size: clamp(2rem, 4vw, 3.25rem)
}

h3 {
    font-size: 1.35rem
}

a {
    color: inherit
}

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: auto
}

.skip-link {
    position: absolute;
    left: -9999px
}

.skip-link:focus {
    left: 15px;
    top: 15px;
    z-index: 20;
    background: #fff;
    padding: 10px
}

.topbar {
    background: var(--ink);
    color: #eee;
    font-size: .85rem;
    padding: 8px 0
}

.topbar .container {
    display: flex;
    justify-content: flex-end;
    gap: 26px
}

.site-header {
    background: #fff;
    position: relative;
    z-index: 10
}

.nav-wrap {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px
}

.brand img {
    display: block;
    width: 190px;
    height: 60px;
    object-fit: contain
}

.nav-wrap nav {
    display: flex;
    gap: 23px;
    align-items: center
}

.nav-wrap nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: .88rem;
    padding: 36px 0;
    border-bottom: 3px solid transparent
}

.nav-wrap nav a:hover,
.nav-wrap nav a.active {
    color: #087f5b;
    border-color: var(--gold)
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid #aaa;
    padding: 8px 12px
}

.hero {
    min-height: 590px;
    display: grid;
    align-items: center;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 0, 0, .78), rgba(0, 0, 0, .18)), var(--hero-image) center/cover
}

.hero-content {
    padding: 100px 0
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 0 32px
}

.eyebrow {
    color: var(--gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .15em;
    font-size: .74rem;
    display: block;
    margin-bottom: 15px
}

.hero .eyebrow {
    color: var(--gold-light)
}

.button {
    display: inline-block;
    border: 0;
    background: var(--gold);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 800;
    font-size: .78rem;
    padding: 16px 24px;
    cursor: pointer
}

.button:hover {
    background: #07865f
}

.section {
    padding: 105px 0
}

.section.soft {
    background: var(--soft)
}

.section.dark {
    background: var(--ink);
    color: #fff
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px
}

.split>img {
    width: 100%;
    min-height: 460px;
    object-fit: cover
}

.text-link {
    font-weight: 800;
    color: #087f5b
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center
}

.stats div {
    padding: 25px;
    border-right: 1px solid #444
}

.stats div:last-child {
    border: 0
}

.stats strong {
    display: block;
    color: var(--gold-light);
    font: 700 3rem "Noto Sans"
}

.stats span {
    color: #ccc
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px
}

.card {
    background: #fff;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .08);
    overflow: hidden
}

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

.card-body {
    padding: 30px
}

.card p {
    color: var(--muted)
}

.cta {
    background: linear-gradient(90deg, rgba(163, 101, 22, .92), rgba(29, 25, 20, .88)), url('../images/community.jpg') center/cover;
    color: #fff;
    padding: 80px 0
}

.cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.cta h2 {
    margin: 0
}

.cta .button {
    background: #fff;
    color: #086348
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px
}

.steps article {
    border-top: 3px solid var(--gold);
    padding-top: 25px
}

.steps b {
    color: var(--gold);
    font-size: 2.2rem
}

.checks {
    list-style: none;
    padding: 0
}

.checks li {
    padding: 9px 0
}

.checks li:before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    margin-right: 10px
}

.enquiry-form {
    display: grid;
    gap: 17px
}

.enquiry-form label {
    display: grid;
    font-weight: 700
}

.enquiry-form input,
.enquiry-form textarea {
    font: inherit;
    border: 1px solid #d6d1c8;
    padding: 13px;
    margin-top: 6px;
    background: #fff
}

.enquiry-form label span {
    color: #a31b1b;
    font-size: .82rem
}

.honeypot {
    position: absolute;
    left: -9999px
}

.notice {
    padding: 16px 18px;
    background: var(--soft);
    border-left: 4px solid var(--gold);
    margin: 20px 0
}

.notice.success {
    border-color: #2c7a45
}

.notice.error {
    border-color: #a31b1b
}

.narrow {
    max-width: 850px
}

.prose h2 {
    font-size: 1.7rem;
    margin-top: 35px
}

footer {
    background: #202020;
    color: #bbb;
    padding-top: 80px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .7fr 1fr;
    gap: 80px
}

.footer-grid a {
    display: block;
    color: #ddd;
    margin: 7px 0
}

.footer-grid h3 {
    color: #fff
}

.footer-logo {
    width: 220px;
    filter: brightness(0) invert(1)
}

.copyright {
    text-align: center;
    border-top: 1px solid #3a3a3a;
    margin-top: 65px;
    padding: 22px;
    font-size: .85rem
}

@media(max-width:900px) {
    .menu-toggle {
        display: block
    }

    .nav-wrap nav {
        display: none;
        position: absolute;
        top: 92px;
        left: 0;
        right: 0;
        background: #fff;
        padding: 15px 25px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, .12)
    }

    .nav-wrap nav.open {
        display: grid
    }

    .nav-wrap nav a {
        padding: 10px
    }

    .split {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .cards {
        grid-template-columns: 1fr 1fr
    }

    .stats,
    .steps {
        grid-template-columns: 1fr 1fr
    }

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

    .hero {
        min-height: 520px
    }
}

@media(max-width:600px) {
    .topbar {
        display: none
    }

    .nav-wrap {
        min-height: 76px
    }

    .brand img {
        width: 150px
    }

    .nav-wrap nav {
        top: 76px
    }

    .hero {
        min-height: 500px
    }

    .section {
        padding: 70px 0
    }

    .cards,
    .stats,
    .steps,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .stats div {
        border-right: 0;
        border-bottom: 1px solid #444
    }

    .split>img {
        min-height: 300px
    }

    .cta .container {
        display: block
    }

    .cta .button {
        margin-top: 20px
    }
}

.carousel {
    position: relative
}

.carousel-track {
    overflow: hidden
}

.carousel-slides {
    display: flex;
    transition: transform .75s cubic-bezier(.22, .61, .36, 1);
    will-change: transform
}

.carousel-slide {
    flex: 0 0:100%
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px
}

.carousel-controls button {
    width: 42px;
    height: 42px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    font-weight: 800
}

.carousel-controls [data-dots] {
    display: flex;
    gap: 8px
}

.carousel-controls [data-dots] button {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 50%;
    padding: 0;
    background: #bbb
}

.carousel-controls [data-dots] button.active {
    background: var(--gold)
}

.hero-carousel .carousel-controls {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 20px;
    margin: 0
}

.hero-carousel .carousel-controls>button {
    background: rgba(0, 0, 0, .35);
    border-color: rgba(255, 255, 255, .6);
    color: #fff
}

.hero-slide {
    min-height: 600px;
    display: grid;
    align-items: end;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, .88), rgba(0, 127, 95, .25)), var(--slide-image) center/cover
}

.hero-slide .container {
    padding-bottom: 105px
}

.hero-slide span {
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700
}

.hero-slide h1 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    margin-top: 15px
}

.hero-actions {
    display: flex;
    gap: 15px
}

.outline-button {
    display: inline-block;
    color: inherit;
    border: 1px solid currentColor;
    border-radius: 30px;
    text-decoration: none;
    padding: 11px 22px;
    font-weight: 700
}

.about-collage {
    position: relative;
    min-height: 560px
}

.about-collage>img {
    position: absolute;
    object-fit: cover
}

.about-collage>img:first-child {
    width: 80%;
    height: 78%;
    right: 0;
    top: 0
}

.about-collage>img:nth-child(2) {
    width: 48%;
    height: 50%;
    left: 0;
    bottom: 0;
    border: 10px solid #fff
}

.video-play {
    border: 0;
    background: transparent;
    cursor: pointer
}

.video-play span {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--gold);
    color: #fff;
    box-shadow: 0 0 0 12px rgba(0, 168, 107, .25);
    font-size: 1.35rem
}

.about-collage .video-play {
    position: absolute;
    left: 43%;
    top: 43%;
    z-index: 2
}

.impact-strip {
    background: #1c1c1c;
    color: #fff;
    padding: 80px 0
}

.impact-strip>.container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center
}

.impact-values {
    display: grid;
    grid-template-columns: 1fr 1fr
}

.impact-counter {
    padding: 30px;
    border-left: 1px solid #555
}

.impact-counter span {
    display: block;
    color: #ccc
}

.impact-counter strong,
.impact-counter b {
    color: var(--gold-light);
    font: 700 3.7rem "Noto Sans"
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between
}

.project-carousel .carousel-slide {
    flex-basis: 33.333%
}

.project-card {
    position: relative;
    padding: 0 10px;
    height: 520px
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.project-card>div {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 20px;
    background: rgba(20, 20, 20, .92);
    color: #fff;
    padding: 25px
}

.project-card span {
    color: var(--gold-light);
    font-size: .8rem
}

.project-card h3 {
    margin: 6px 30px 0 0
}

.project-card a {
    position: absolute;
    right: 25px;
    bottom: 25px;
    color: var(--gold-light);
    font-size: 1.6rem
}

.responsibility-video {
    min-height: 580px;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .65)), var(--video-poster) center/cover;
    background-attachment: fixed
}

.responsibility-video .video-play {
    margin: auto auto 35px
}

.responsibility-video span {
    text-transform: uppercase;
    letter-spacing: .15em
}

.responsibility-video h2 {
    font-size: clamp(2.3rem, 5vw, 4.5rem)
}

.safety-art {
    position: relative
}

.safety-art img {
    width: 100%;
    height: 530px;
    object-fit: cover
}

.safety-art span {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: var(--gold);
    color: #fff;
    padding: 20px 30px;
    font-weight: 800;
    text-transform: uppercase
}

.news-section {
    background: var(--soft)
}

.news-carousel .carousel-slide {
    flex-basis: 33.333%
}

.news-card {
    padding: 0 12px
}

.news-card>a:first-of-type {
    text-decoration: none
}

.news-image {
    position: relative
}

.news-image img {
    width: 100%;
    height: 245px;
    object-fit: cover
}

.news-image time {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: #fff;
    padding: 8px 12px;
    text-align: center;
    text-transform: uppercase
}

.news-image time b {
    display: block;
    font-size: 1.4rem
}

.news-card h3 {
    font-size: 1.18rem;
    margin-top: 20px
}

.news-card p {
    color: var(--muted)
}

.integrity {
    background: var(--gold);
    color: #fff;
    padding: 60px 0
}

.integrity .container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.integrity h2 {
    margin: 0
}

.integrity .button {
    background: #191919
}

.video-dialog {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, .92);
    display: grid;
    place-items: center;
    padding: 8vw
}

.video-dialog[hidden] {
    display: none
}

.video-dialog [data-video-frame] {
    width: min(100%, 1000px);
    aspect-ratio: 16/9
}

.video-dialog iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.video-dialog [data-video-close] {
    position: absolute;
    right: 30px;
    top: 20px;
    border: 0;
    background: none;
    color: #fff;
    font-size: 3rem;
    cursor: pointer
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.gallery-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover
}

.article-hero {
    background: #1c1c1c;
    color: #fff;
    padding: 120px 0 80px
}

.article-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.3rem)
}

.article-image {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin-bottom: 30px
}

.footer-grid {
    grid-template-columns: 1.3fr .65fr .75fr 1fr
}

.social-links {
    display: flex;
    gap: 8px;
    margin-top: 22px
}

.social-links a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #333;
    text-decoration: none
}

@media(max-width:900px) {

    .project-carousel .carousel-slide,
    .news-carousel .carousel-slide {
        flex-basis: 50%
    }

    .impact-strip>.container {
        grid-template-columns: 1fr
    }

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

    .responsibility-video {
        background-attachment: scroll
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {

    .project-carousel .carousel-slide,
    .news-carousel .carousel-slide {
        flex-basis: 100%
    }

    .impact-values {
        grid-template-columns: 1fr
    }

    .impact-counter {
        border-left: 0;
        border-top: 1px solid #555
    }

    .section-heading,
    .integrity .container {
        display: block
    }

    .integrity .button {
        margin-top: 20px
    }

    .about-collage {
        min-height: 420px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .project-card {
        height: 440px
    }
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important
    }

    .carousel-slides {
        transition: none
    }
}

html,
body {
    overflow-x: hidden
}

/* Reference-specific slideshow treatments */
.hero-carousel .carousel-arrow {
    display: none
}

.hero-carousel .carousel-controls {
    bottom: 26px;
    gap: 14px
}

.hero-carousel .carousel-dots {
    gap: 10px
}

.hero-carousel .carousel-controls [data-dots] button {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, .5);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .16)
}

.hero-carousel .carousel-controls [data-dots] button.active {
    background: #fff
}

.hero-carousel .carousel-pause {
    width: 30px;
    height: 30px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: .75rem
}

.hero-slide {
    align-items: center
}

.hero-slide .container {
    padding: 270px 60px 90px
}

.hero-slide h1 {
    font-size: clamp(1.35rem, 2.1vw, 1.6rem);
    font-family: Roboto, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.5;
    max-width: 630px;
    margin: 14px 0 22px
}

.hero-slide span {
    font: 600 clamp(1.8rem, 3.1vw, 2.5rem) "Noto Sans", sans-serif;
    text-transform: none;
    letter-spacing: 0
}

.hero-slide .outline-button {
    border-radius: 50px;
    padding: 9px 20px;
    font-weight: 400
}

.hero-slide .button {
    border-radius: 50px;
    padding: 11px 22px
}

.project-carousel .carousel-controls {
    display: none
}

.project-carousel .carousel-track {
    overflow: visible
}

.project-card {
    height: 570px;
    padding: 0 7px
}

.project-card>div {
    left: 27px;
    right: 27px;
    bottom: 22px;
    padding: 21px 25px;
    background: rgba(20, 20, 20, .88);
    border-left: 3px solid var(--gold)
}

.project-card h3 {
    font-size: 1.05rem;
    line-height: 1.45
}

.news-carousel {
    padding: 0 54px
}

.news-carousel .carousel-controls {
    position: absolute;
    inset: 0;
    pointer-events: none;
    margin: 0;
    justify-content: space-between
}

.news-carousel .carousel-arrow {
    pointer-events: auto;
    position: absolute;
    top: 122px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .13);
    color: #222
}

.news-carousel .carousel-arrow.prev {
    left: 0
}

.news-carousel .carousel-arrow.next {
    right: 0
}

.news-carousel .carousel-dots {
    position: absolute;
    bottom: -35px;
    left: 0;
    right: 0;
    justify-content: center;
    pointer-events: auto
}

.news-card h3 {
    min-height: 80px
}

.news-image {
    overflow: hidden
}

.news-image img {
    transition: transform .5s
}

.news-card:hover .news-image img {
    transform: scale(1.045)
}

@media(max-width:900px) {
    .hero-slide .container {
        padding: 190px 25px 80px
    }

    .project-carousel .carousel-track {
        overflow: hidden
    }

    .project-carousel .carousel-controls {
        display: flex
    }

    .project-card {
        height: 500px
    }

    .news-carousel {
        padding: 0 48px
    }
}

@media(max-width:600px) {
    .hero-slide {
        min-height: 460px
    }

    .hero-slide .container {
        padding: 145px 25px 75px
    }

    .hero-slide span {
        font-size: 1.65rem
    }

    .hero-slide h1 {
        font-size: 1rem
    }

    .hero-actions .button {
        display: none
    }

    .project-card {
        height: 430px
    }

    .news-carousel {
        padding: 0 40px
    }

    .news-carousel .carousel-arrow {
        top: 100px
    }

    .news-image img {
        height: 205px
    }

    .news-card h3 {
        min-height: 0
    }
}

.hero-slide {
    height: 600px;
    min-height: 600px;
    align-items: end
}

.hero-slide .container {
    padding: 0 60px 76px
}

.project-card {
    height: 365px
}

.hero-slide .container {
    transform: translateY(72px)
}

@media(max-width:900px) {
    .hero-slide {
        height: 350px;
        min-height: 350px
    }

    .hero-slide .container {
        padding: 0 25px 55px;
        transform: translateY(45px)
    }

    .project-card {
        height: 365px
    }
}

@media(max-width:600px) {
    .hero-slide {
        height: 300px;
        min-height: 300px
    }

    .hero-slide .container {
        padding: 0 25px 50px;
        transform: translateY(38px)
    }

    .hero-slide span {
        font-size: 1.45rem
    }

    .hero-slide h1 {
        font-size: .9rem;
        margin: 8px 0 12px
    }

    .project-card {
        height: 365px
    }
}

.hero-carousel .carousel-slide {
    flex: 0 0 100%
}

.project-carousel .carousel-slide,
.news-carousel .carousel-slide {
    flex-shrink: 0
}
