/*
 * Blossom Minds custom UIkit overrides.
 * All project styling lives here; HTML stays structural and UIkit-based.
 */

:root {
    --brand-green: #07843e;
    --brand-green-dark: #056331;
    --brand-mint: #7fc99c;
    --brand-blue: #1884c0;
    --ink: #101827;
    --ink-soft: #475569;
    --line: #dfe7e3;
    --surface: #ffffff;
    --surface-soft: #f6faf8;
    --warm-accent: #f7b267;
    --font-body: "Nunito Sans", Arial, Helvetica, sans-serif;
    --font-heading: "Libre Baskerville", Georgia, "Times New Roman", serif;
    --shadow-soft: 0 18px 45px rgba(16, 24, 39, 0.08);
    --shadow-lift: 0 24px 55px rgba(16, 24, 39, 0.12);
    --pattern-image: url("../images/pattern.png");
    --pattern-opacity: 0.4;
}

* {
    box-sizing: border-box;
    letter-spacing: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: var(--brand-green);
}

a:hover {
    color: var(--brand-green-dark);
    text-decoration: none;
}

p {
    color: var(--ink-soft);
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6 {
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 700;
}

.uk-section {
    padding-top: 82px;
    padding-bottom: 82px;
}

.uk-container-large {
    max-width: 1280px;
}

.uk-button {
    min-height: 48px;
    padding: 0 28px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 800;
    line-height: 46px;
    text-transform: uppercase;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.uk-button:hover {
    transform: translateY(-2px);
}

.btn-primary {
    border: 2px solid var(--brand-green);
    background: var(--brand-green);
    color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
    border-color: var(--brand-green-dark);
    background: var(--brand-green-dark);
    color: #fff;
    box-shadow: 0 14px 30px rgba(7, 132, 62, 0.22);
}

.btn-outline {
    border: 2px solid var(--brand-blue);
    background: transparent;
    color: var(--brand-blue);
}

.btn-outline:hover,
.btn-outline:focus {
    border-color: var(--brand-blue);
    background: rgba(24, 132, 192, 0.1);
    color: var(--brand-blue);
    box-shadow: 0 14px 28px rgba(24, 132, 192, 0.16);
}

.btn-white {
    border: 2px solid #fff;
    background: #fff;
    color: var(--brand-blue);
}

.btn-white:hover,
.btn-white:focus {
    background: var(--surface-soft);
    color: var(--brand-blue);
}

.copy-contact-button {
    min-width: 132px;
    text-align: center;
}

.copy-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100vw - 48px);
    min-height: 48px;
    padding: 12px 18px 12px 16px;
    border: 1px solid rgba(7, 132, 62, 0.18);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(16, 24, 39, 0.18);
    color: var(--brand-green-dark);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}

.copy-toast::before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    border-radius: 50%;
    background: var(--brand-green);
}

.copy-toast::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 22px;
    width: 8px;
    height: 4px;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translateY(-65%) rotate(-45deg);
}

.copy-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: transparent;
    color: #fff;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.eyebrow {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 18px;
    color: var(--brand-green);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.5;
    text-transform: uppercase;
    overflow-wrap: break-word;
}

.eyebrow::before {
    content: "";
    display: inline-block;
    width: 34px;
    height: 2px;
    margin-right: 16px;
    background: var(--brand-green);
    vertical-align: middle;
}

.hero-eyebrow-break {
    display: inline;
}

.section-title {
    max-width: 760px;
    margin: 0;
    font-size: 2.65rem;
    line-height: 1.11;
    overflow-wrap: anywhere;
}

.section-heading .section-title {
    margin-right: auto;
    margin-left: auto;
}

.services-section .section-heading .section-title {
    max-width: 1120px;
    font-size: clamp(2.05rem, 3vw, 2.65rem);
}

.services-section .eyebrow,
.story-panel .eyebrow,
.impact-section .eyebrow {
    color: var(--brand-blue);
}

.services-section .eyebrow::before,
.story-panel .eyebrow::before,
.impact-section .eyebrow::before {
    background: var(--brand-blue);
}

.top-wrapper {
    position: relative;
    z-index: 3;
    background: var(--surface);
    overflow: visible;
}

.top-wrapper::before,
.top-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 31%;
    height: 674px;
    z-index: 0;
}

.top-wrapper::before {
    background-color: var(--brand-green);
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 22px);
}

.top-wrapper::after {
    background-image: var(--pattern-image);
    background-size: 360px auto;
    background-repeat: repeat;
    mix-blend-mode: screen;
    opacity: var(--pattern-opacity);
    pointer-events: none;
}

.site-header {
    position: relative;
    z-index: 20;
}

.site-header__bar {
    position: relative;
    min-height: 96px;
    background: transparent;
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header__bar > .uk-container {
    position: relative;
    z-index: 1;
}

.site-header .uk-navbar-container,
.site-header .uk-navbar {
    min-height: 96px;
}

.brand-logo {
    min-height: 96px;
    padding-left: 0;
}

.brand-logo__image {
    width: 220px;
    height: auto;
}

.brand-logo__image--inverse {
    display: none;
}

.nav-links > li > a {
    min-height: 96px;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.nav-links > li.uk-active > a,
.nav-links > li > a:hover {
    color: var(--brand-green);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
    color: #fff;
    box-shadow: 0 12px 26px rgba(5, 99, 49, 0.16);
}

@media (min-width: 1200px) {
    .nav-contact.uk-visible\@l {
        display: flex !important;
    }
}

.nav-contact__icon {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 50%;
    color: #fff;
}

.nav-contact__copy {
    display: flex;
    min-width: 132px;
    flex-direction: column;
    line-height: 1.25;
}

.nav-contact__copy span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
}

.nav-contact__copy a {
    color: #fff;
    font-size: 0.84rem;
    font-weight: 900;
}

.nav-contact__copy a:hover {
    color: #dff6e9;
}

.header-talk-button {
    display: inline-flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    gap: 9px;
    height: 46px;
    min-height: 46px;
    padding: 0 22px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-green);
    white-space: nowrap;
    box-shadow: 0 16px 28px rgba(5, 99, 49, 0.18);
}

.header-talk-button:hover,
.header-talk-button:focus {
    border-color: #fff;
    background: var(--surface-soft);
    color: var(--brand-green-dark);
}

.mobile-toggle {
    align-self: center;
    color: var(--ink);
}

.site-header.site-header--sticky {
    background: var(--brand-green);
    box-shadow: 0 16px 38px rgba(5, 99, 49, 0.24);
}

.site-header.site-header--sticky .site-header__bar,
.site-header.site-header--sticky .uk-navbar-container {
    background: var(--brand-green);
}

.site-header.site-header--sticky .site-header__bar::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--pattern-image);
    background-size: 300px auto;
    background-repeat: repeat;
    mix-blend-mode: screen;
    opacity: 0.16;
    pointer-events: none;
}

.site-header.site-header--sticky .brand-logo__image--default {
    display: none;
}

.site-header.site-header--sticky .brand-logo__image--inverse {
    display: block;
}

.site-header.site-header--sticky .nav-links > li > a,
.site-header.site-header--sticky .mobile-toggle {
    color: #fff;
}

.site-header.site-header--sticky .nav-links > li.uk-active > a,
.site-header.site-header--sticky .nav-links > li > a:hover {
    color: #dff6e9;
}

.site-header.site-header--sticky .header-talk-button {
    border-color: #fff;
    background: #fff;
    color: var(--brand-green);
}

.site-header.site-header--sticky .nav-contact__icon {
    border-color: rgba(255, 255, 255, 0.42);
}

.mobile-nav-panel {
    width: min(88vw, 360px);
    background: var(--brand-green);
}

.mobile-nav-logo {
    width: 220px;
    margin: 28px 0 34px;
}

.mobile-nav-links {
    margin-bottom: 32px;
}

.mobile-nav-links > li > a {
    padding: 12px 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mobile-nav-links > li.uk-active > a,
.mobile-nav-links > li > a:hover {
    color: #e0f7ec;
}

.mobile-talk-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 0 22px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #fff;
    color: var(--brand-green) !important;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-decoration: none;
}

.mobile-talk-button span:not([uk-icon]) {
    display: inline-block;
}

.mobile-talk-button [uk-icon],
.mobile-talk-button svg {
    flex: 0 0 auto;
}

.mobile-talk-button:hover,
.mobile-talk-button:focus {
    background: var(--surface-soft);
    color: var(--brand-green-dark) !important;
}

.mobile-nav-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
}

.mobile-nav-contact > span {
    flex: 0 0 auto;
}

.mobile-nav-contact div {
    display: flex;
    flex-direction: column;
}

.mobile-nav-contact span {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.82rem;
    font-weight: 700;
}

.mobile-nav-contact a {
    color: #fff;
    font-size: 0.96rem;
    font-weight: 900;
}

.hero-section {
    position: relative;
    z-index: 1;
    padding-top: 18px;
    padding-bottom: 0;
}

.hero-container {
    position: relative;
}

.hero-socials {
    position: absolute;
    top: 48%;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
    transform: translateY(-50%);
    z-index: 8;
}

.hero-socials a {
    color: var(--ink);
    transition: color 160ms ease, transform 160ms ease;
}

.social-icon {
    display: inline-grid;
    place-items: center;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.hero-socials a:hover {
    color: var(--brand-green);
    transform: translateX(4px);
}

.hero-stage {
    position: relative;
    min-height: 620px;
    padding-left: 64px;
}

.hero-image-wrap {
    position: relative;
    width: 73%;
    height: 560px;
}

.hero-media,
.hero-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 22px;
    background: #e9f0ed;
    box-shadow: 0 26px 55px rgba(16, 24, 39, 0.16);
}

.hero-video,
.hero-cover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video {
    z-index: 1;
}

.hero-cover {
    z-index: 2;
    transform: translateX(0);
    opacity: 1;
    transition: transform 700ms ease, opacity 700ms ease;
}

.hero-image-wrap.is-video-ready .hero-cover {
    transform: translateX(-100%);
    opacity: 0;
}

.language-note {
    position: absolute;
    top: 24px;
    right: 58px;
    z-index: 7;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 226px;
    min-height: 42px;
    padding: 8px 15px 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 38px rgba(16, 24, 39, 0.12), 0 8px 18px rgba(7, 132, 62, 0.12);
    color: var(--brand-green-dark);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.language-toggle {
    font-family: var(--font-body);
    cursor: pointer;
    appearance: none;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.language-toggle:hover,
.language-toggle:focus-visible {
    border-color: var(--brand-blue);
    background: var(--brand-blue);
    box-shadow: 0 20px 44px rgba(16, 24, 39, 0.14), 0 10px 22px rgba(24, 132, 192, 0.22);
    color: #fff;
    transform: translateY(-2px);
}

.language-toggle:focus-visible {
    outline: 3px solid rgba(24, 132, 192, 0.28);
    outline-offset: 3px;
}

.language-toggle.is-translating {
    cursor: wait;
    opacity: 0.78;
}

.language-toggle:hover .language-note__icon,
.language-toggle:focus-visible .language-note__icon {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.language-note__icon {
    display: inline-grid;
    width: 28px;
    height: 28px;
    place-items: center;
    flex: 0 0 28px;
    border: 1px solid rgba(7, 132, 62, 0.18);
    border-radius: 50%;
    background: rgba(7, 132, 62, 0.09);
    color: var(--brand-green);
}

.language-note__rotator {
    display: block;
    height: 1rem;
    min-width: 148px;
    overflow: hidden;
}

.language-note__items {
    display: block;
    animation: language-note-rotate 5.2s cubic-bezier(0.72, 0, 0.24, 1) infinite;
}

.language-toggle .language-note__items {
    white-space: nowrap;
}

.language-note__items span {
    display: block;
    height: 1rem;
    line-height: 1rem;
    white-space: nowrap;
}

@keyframes language-note-rotate {
    0%,
    42% {
        transform: translateY(0);
    }

    50%,
    92% {
        transform: translateY(-1rem);
    }

    100% {
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .language-note__items {
        animation-duration: 8s;
    }
}

.hero-dot-field {
    position: absolute;
    left: -96px;
    bottom: -120px;
    width: 250px;
    height: 170px;
    background-image: radial-gradient(rgba(7, 132, 62, 0.2) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: 1;
}

.hero-panel {
    overflow: hidden;
    position: absolute;
    top: 54px;
    right: 0;
    z-index: 5;
    width: 47%;
    max-width: 520px;
    height: 565px;
    padding: 56px 48px;
    border: 1px solid rgba(223, 231, 227, 0.9);
    border-radius: 28px;
    background: var(--surface);
    box-shadow: 0 34px 80px rgba(16, 24, 39, 0.18), 0 12px 28px rgba(7, 132, 62, 0.1);
    transition: min-height 300ms ease;
}

.hero-panel-track {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-panel-pane {
    width: 100%;
    transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), opacity 260ms ease;
}

.hero-panel-copy {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    transform: translateX(0);
    opacity: 1;
}

.hero-form {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transform: translateX(110%);
    opacity: 0;
    pointer-events: none;
}

.hero-panel.is-form-open .hero-panel-copy {
    transform: translateX(-110%);
    opacity: 0;
    pointer-events: none;
}

.hero-panel.is-form-open .hero-form {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.blossom-contactform__form {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
}

.blossom-contactform__honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.hero-form.is-submitting .hero-form-submit {
    opacity: 0.78;
    pointer-events: none;
}

.hero-form__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.hero-form__top .eyebrow {
    margin-bottom: 8px;
}

.hero-form h2 {
    margin: 0;
    font-size: 1.55rem;
    line-height: 1.25;
}

.hero-form-back {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(7, 132, 62, 0.28);
    border-radius: 50%;
    background: #fff;
    color: var(--brand-green);
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease;
}

.hero-form-back:hover,
.hero-form-back:focus {
    background: var(--brand-green);
    color: #fff;
}

.hero-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 18px;
}

.hero-form-grid label {
    position: relative;
    display: grid;
    gap: 6px;
    margin: 0;
}

.hero-form-grid label span {
    color: var(--ink);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-form-grid__wide {
    grid-column: 1 / -1;
}

.hero-form .uk-input {
    height: 42px;
    border-color: var(--line);
    border-radius: 999px;
    background: var(--surface-soft);
    color: var(--ink);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.hero-form .uk-input:focus {
    border-color: var(--brand-green);
    background: #fff;
}

.hero-form-grid label.is-invalid .uk-input {
    border-color: #d94f43;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(217, 79, 67, 0.12);
}

.field-error {
    position: absolute;
    right: 14px;
    bottom: -10px;
    z-index: 2;
    max-width: calc(100% - 28px);
    padding: 2px 9px;
    border: 1px solid rgba(217, 79, 67, 0.22);
    border-radius: 999px;
    background: #fff;
    color: #b7362d;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(-2px);
    transition: opacity 160ms ease, transform 160ms ease;
    pointer-events: none;
}

.hero-form-grid label.is-invalid .field-error {
    opacity: 1;
    transform: translateY(0);
}

.hero-form-status {
    min-height: 18px;
    margin: 10px 0 0;
    color: var(--brand-green);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
}

.hero-form-status.is-error {
    color: #b7362d;
}

.hero-form-submit {
    width: 100%;
    margin-top: 10px;
}

.hero-title {
    margin: 0 0 22px;
    font-size: 3.25rem;
    line-height: 1.12;
    letter-spacing: -0.01em;
    overflow-wrap: anywhere;
}

.hero-copy {
    margin-bottom: 34px;
    font-size: 1rem;
    overflow-wrap: anywhere;
}

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

.stats-section {
    position: relative;
    z-index: 1;
    padding-top: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.stats-grid > div:not(:last-child) .stat-item {
    border-right: 1px solid var(--line);
}

.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 112px;
    gap: 24px;
    padding: 0 28px;
    transition: transform 180ms ease;
    will-change: transform;
}

.stat-item:hover {
    z-index: 2;
    transform: scale(1.035);
}

.stat-image {
    width: 92px;
    aspect-ratio: 1 / 1;
    flex: 0 0 92px;
    border: 4px solid #fff;
    border-radius: 14px;
    object-fit: cover;
    filter: grayscale(100%);
    box-shadow: 0 16px 30px rgba(16, 24, 39, 0.12);
}

.stat-item h2 {
    margin: 0 0 6px;
    font-family: var(--font-body);
    font-size: 1.85rem;
    font-weight: 800;
    transition: color 180ms ease;
}

.stat-subtitle {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-blue);
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.35;
    transition: color 180ms ease;
}

.stat-item:hover h2,
.stat-item:hover .stat-subtitle {
    color: var(--brand-green);
}

.stat-item p {
    max-width: 230px;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
}

.services-section,
.process-section {
    position: relative;
    overflow: hidden;
}

.services-section {
    padding-bottom: 118px;
    background: linear-gradient(180deg, var(--surface-soft) 0%, var(--surface-soft) 68%, var(--surface) 100%);
}

.process-section {
    background: var(--surface-soft);
}

.services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--pattern-image);
    background-size: 420px auto;
    background-repeat: repeat;
    mix-blend-mode: screen;
    opacity: 0.1;
    pointer-events: none;
}

.services-section::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    height: 210px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--surface) 78%);
    pointer-events: none;
}

.services-section > .uk-container {
    position: relative;
    z-index: 1;
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--pattern-image);
    background-size: 420px auto;
    background-repeat: repeat;
    mix-blend-mode: screen;
    opacity: 0.14;
    pointer-events: none;
}

.process-section > .uk-container {
    position: relative;
    z-index: 1;
}

.services-showcase.uk-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    gap: 16px;
    margin-left: 0;
    margin-top: 96px !important;
    padding: 28px 22px 22px;
    border: 1px solid rgba(7, 132, 62, 0.12);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 28px 80px rgba(16, 24, 39, 0.1);
}

.services-showcase.uk-grid > * {
    min-width: 0;
    padding-left: 0;
}

.service-card {
    isolation: isolate;
    position: relative;
    display: flex;
    min-height: 392px;
    overflow: hidden;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    border: 1px solid rgba(16, 24, 39, 0.08);
    border-radius: 24px;
    background: #fff;
    box-shadow: none;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card--featured {
    min-height: 474px;
    border-color: rgba(24, 132, 192, 0.3);
    transform: translateY(-86px);
    box-shadow: 0 34px 70px rgba(16, 24, 39, 0.2);
}

.service-card:hover,
.service-card:focus-within {
    z-index: 3;
    border-color: rgba(24, 132, 192, 0.36);
    box-shadow: 0 34px 76px rgba(16, 24, 39, 0.22);
    transform: translateY(-34px);
}

.service-card--featured:hover,
.service-card--featured:focus-within {
    transform: translateY(-94px);
}

.service-card__image,
.service-card__shade {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.service-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 220ms ease, transform 500ms ease;
}

.service-card__shade {
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(7, 132, 62, 0.24), rgba(5, 99, 49, 0.9)),
        linear-gradient(135deg, rgba(24, 132, 192, 0.42), rgba(7, 132, 62, 0.68));
    opacity: 0;
    transition: opacity 220ms ease;
}

.service-card__shade::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--pattern-image);
    background-size: 320px auto;
    background-repeat: repeat;
    mix-blend-mode: screen;
    opacity: 0.18;
}

.service-card--featured .service-card__image,
.service-card:hover .service-card__image,
.service-card:focus-within .service-card__image {
    opacity: 0.72;
    transform: scale(1);
}

.service-card--featured .service-card__shade,
.service-card:hover .service-card__shade,
.service-card:focus-within .service-card__shade {
    opacity: 1;
}

.service-card__content {
    position: relative;
    z-index: 1;
}

.service-card__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.service-card__number {
    color: var(--brand-green);
    font-family: var(--font-body);
    font-size: clamp(3.4rem, 6vw, 5.1rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 0.9;
    transition: color 180ms ease, transform 220ms ease;
}

.card-icon {
    display: inline-grid;
    width: 50px;
    height: 50px;
    place-items: center;
    flex: 0 0 auto;
    border: 1px solid rgba(7, 132, 62, 0.18);
    border-radius: 18px;
    background: rgba(7, 132, 62, 0.07);
    color: var(--brand-green);
    transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.service-card h3 {
    min-height: 0;
    margin: 0 0 18px;
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 900;
    line-height: 1.25;
    transition: color 180ms ease;
}

.service-list {
    margin: 0;
}

.service-list li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 18px;
    color: var(--ink-soft);
    font-size: 0.9rem;
    transition: color 180ms ease;
}

.service-list li::before {
    content: "";
    position: absolute;
    top: 0.7em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--brand-green);
    transition: background-color 180ms ease;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    margin-top: 22px;
    padding: 0 16px;
    border: 1px solid rgba(24, 132, 192, 0.44);
    border-radius: 999px;
    color: var(--brand-blue);
    font-size: 0.74rem;
    font-weight: 900;
    line-height: 34px;
    text-transform: uppercase;
    transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card__link:hover,
.service-card__link:focus {
    border-color: var(--brand-blue);
    background: rgba(24, 132, 192, 0.12);
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.service-card--featured .service-card__number,
.service-card:hover .service-card__number,
.service-card:focus-within .service-card__number,
.service-card--featured h3,
.service-card:hover h3,
.service-card:focus-within h3 {
    color: #fff;
}

.service-card--featured .card-icon,
.service-card:hover .card-icon,
.service-card:focus-within .card-icon {
    border-color: rgba(255, 255, 255, 0.38);
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
}

.service-card--featured .service-list li,
.service-card:hover .service-list li,
.service-card:focus-within .service-list li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card--featured .service-list li::before,
.service-card:hover .service-list li::before,
.service-card:focus-within .service-list li::before {
    background: #fff;
}

.service-card--featured .service-card__link,
.service-card:hover .service-card__link,
.service-card:focus-within .service-card__link {
    border-color: rgba(255, 255, 255, 0.72);
    color: #fff;
}

.service-card--featured .service-card__link:hover,
.service-card--featured .service-card__link:focus,
.service-card:hover .service-card__link:hover,
.service-card:hover .service-card__link:focus,
.service-card:focus-within .service-card__link:hover,
.service-card:focus-within .service-card__link:focus {
    background: #fff;
    color: var(--brand-green);
}

.story-section {
    padding-top: 58px;
    background: var(--surface);
    padding-bottom: 44px;
}

.story-layout {
    position: relative;
    min-height: 610px;
}

.story-image-wrap {
    width: 52%;
    height: 520px;
}

.story-image {
    border-radius: 24px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.story-image-wrap::after {
    content: "";
    position: absolute;
    top: 62px;
    left: 50.5%;
    width: 28px;
    height: 336px;
    background: var(--brand-green);
    z-index: 1;
}

.story-panel {
    position: absolute;
    top: 28px;
    right: 0;
    width: 48%;
    min-height: 480px;
    padding: 46px 0 46px 56px;
    border-radius: 28px;
    background: var(--surface);
}

.story-panel p {
    max-width: 560px;
}

.custom-quote {
    position: relative;
    margin: 34px 0 32px;
    padding-left: 44px;
    border-left: 0;
}

.custom-quote::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 0;
    color: var(--brand-green);
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
}

.custom-quote p {
    margin: 0 0 12px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.45;
}

.custom-quote footer {
    color: var(--ink-soft);
    font-size: 0.86rem;
}

.impact-section {
    padding-top: 34px;
    background: var(--surface);
}

.report-button {
    margin-top: 26px;
}

.impact-gallery {
    align-items: stretch;
}

.gallery-item {
    height: 100%;
    text-align: center;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 18px;
    border-radius: 12px;
    filter: grayscale(100%);
    transition: filter 220ms ease, transform 220ms ease;
}

.gallery-item:hover img {
    filter: grayscale(0%);
    transform: translateY(-3px);
}

.gallery-item h3 {
    margin: 0 0 6px;
    color: var(--brand-green);
    font-family: var(--font-body);
    font-size: 1.12rem;
    font-weight: 800;
}

.gallery-item p {
    max-width: 170px;
    margin: 0 auto;
    font-size: 0.86rem;
    line-height: 1.45;
    text-wrap: balance;
}

.process-heading {
    display: grid;
    grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
    align-items: center;
    gap: 24px;
    max-width: 560px;
    margin: 0 auto 18px;
}

.process-heading span {
    height: 1px;
    background: rgba(7, 132, 62, 0.42);
}

.process-heading h2 {
    margin: 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
}

.process-display {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
    align-items: stretch;
    min-height: 470px;
    overflow: hidden;
    margin: 0 auto 56px;
    border: 1px solid rgba(7, 132, 62, 0.16);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 34px 90px rgba(16, 24, 39, 0.11);
}

.process-display::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 16%, rgba(24, 132, 192, 0.12), transparent 30%),
        linear-gradient(135deg, rgba(246, 250, 248, 0.96), rgba(255, 255, 255, 0.72));
    pointer-events: none;
}

.process-display::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: var(--pattern-image);
    background-size: 360px auto;
    background-repeat: repeat;
    mix-blend-mode: screen;
    opacity: 0.18;
    pointer-events: none;
}

.process-display__copy,
.process-display__media {
    position: relative;
    z-index: 1;
}

.process-display__copy {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 58px 56px;
}

.process-display__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    color: var(--brand-green);
}

.process-display__brand > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(7, 132, 62, 0.24);
    border-radius: 14px;
    background: rgba(7, 132, 62, 0.08);
}

.process-display__brand strong,
.process-display__brand small {
    display: block;
}

.process-display__brand strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 1.14rem;
    line-height: 1.1;
}

.process-display__brand small {
    margin-top: 4px;
    color: var(--ink-soft);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.process-display__kicker {
    margin: 0 0 14px;
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.process-display h3 {
    max-width: 610px;
    margin: 0;
    color: var(--brand-blue);
    font-size: clamp(2.5rem, 4vw, 4.7rem);
    line-height: 1.03;
}

.process-title-accent {
    color: var(--brand-green);
}

.process-display__body {
    max-width: 560px;
    margin: 24px 0 0;
    font-size: 1.02rem;
    line-height: 1.65;
}

.process-display__actions {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 34px;
}

.process-display__actions span {
    max-width: 220px;
    color: var(--brand-blue);
    font-size: 0.86rem;
    font-weight: 800;
    line-height: 1.35;
}

.process-display__media {
    min-height: 470px;
}

.process-display__media img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
    filter: grayscale(100%);
}

.process-display__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(7, 132, 62, 0.1) 42%, rgba(7, 132, 62, 0.34));
}

.process-display__badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    width: min(280px, calc(100% - 56px));
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 18px;
    background: var(--brand-green);
    box-shadow: 0 18px 38px rgba(5, 99, 49, 0.26);
}

.process-display__badge span,
.process-display__badge strong {
    display: block;
    color: #fff;
}

.process-display__badge span {
    margin-bottom: 4px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.process-display__badge strong {
    font-family: var(--font-heading);
    font-size: 1.32rem;
    line-height: 1.25;
}

.process-grid {
    position: relative;
}

.process-step {
    position: relative;
    display: grid;
    grid-template-columns: 112px 1fr;
    align-items: center;
    gap: 28px;
}

.process-icon {
    position: relative;
    z-index: 2;
    display: grid;
    width: 104px;
    height: 104px;
    place-items: center;
    border: 1px solid rgba(7, 132, 62, 0.28);
    border-radius: 28px;
    background: var(--surface);
    color: var(--brand-green);
}

.process-content span {
    display: block;
    margin-bottom: 6px;
    color: var(--brand-green);
    font-size: 0.83rem;
    font-weight: 800;
}

.process-content h3 {
    margin: 0 0 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
}

.process-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.55;
}

.testimonials-section {
    background: var(--surface);
}

.testimonial-card {
    height: 100%;
    padding: 34px 34px 30px;
    border: 1px solid transparent;
    border-radius: 24px;
    background: var(--surface);
    box-shadow: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.testimonial-card:hover {
    border-color: var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-4px);
}

.quote-mark {
    display: block;
    height: 34px;
    color: var(--brand-green);
    font-family: var(--font-heading);
    font-size: 3.4rem;
    line-height: 1;
}

.testimonial-card p {
    min-height: 104px;
    margin: 12px 0 26px;
    font-size: 0.96rem;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviewer img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.reviewer h3 {
    margin: 0 0 2px;
    font-family: var(--font-body);
    font-size: 0.94rem;
    font-weight: 800;
}

.reviewer span {
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.cta-banner {
    position: relative;
    overflow: hidden;
    background-color: var(--brand-green);
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 22px);
}

.cta-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--pattern-image);
    background-size: 360px auto;
    background-repeat: repeat;
    mix-blend-mode: screen;
    opacity: var(--pattern-opacity);
    pointer-events: none;
}

.cta-banner > .uk-container {
    position: relative;
    z-index: 1;
}

.cta-copy {
    display: flex;
    align-items: center;
    gap: 28px;
}

.cta-icon {
    flex: 0 0 auto;
    color: #fff;
}

.cta-banner h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 2rem;
    line-height: 1.2;
}

.cta-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.84);
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.footer-section {
    padding-top: 62px;
    background: var(--surface);
}

.footer-logo {
    display: inline-block;
    margin-bottom: 22px;
}

.footer-logo img {
    width: 190px;
}

.footer-desc {
    max-width: 260px;
    margin-bottom: 22px;
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: var(--ink);
}

.footer-socials a:hover {
    color: var(--brand-green);
}

.footer-heading {
    margin: 0 0 18px;
    color: var(--brand-blue);
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
}

.footer-heading--spaced {
    margin-top: 28px;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--brand-green);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact span[uk-icon] {
    color: var(--brand-green);
    flex: 0 0 auto;
}

.newsletter-form {
    display: grid;
    gap: 10px;
}

.newsletter-form .uk-input {
    height: 48px;
    border-color: var(--line);
    background: var(--surface-soft);
    color: var(--ink);
}

.footer-bottom {
    margin-top: 54px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.footer-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.footer-bottom a {
    margin-left: 22px;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.footer-bottom a:hover {
    color: var(--brand-green);
}

.legal-page .top-wrapper {
    background: var(--surface);
    overflow: visible;
}

.legal-page .top-wrapper::before,
.legal-page .top-wrapper::after {
    display: none;
}

.legal-page .site-header__bar,
.legal-page .site-header .uk-navbar-container {
    background: #fff;
    box-shadow: 0 12px 32px rgba(16, 24, 39, 0.08);
}

.legal-page .site-header.site-header--sticky .site-header__bar,
.legal-page .site-header.site-header--sticky .uk-navbar-container {
    background: var(--brand-green);
}

.legal-page .footer-section {
    padding-top: 0;
}

.legal-hero {
    padding: 78px 0 42px;
    border-top: 1px solid var(--line);
    background: var(--surface-soft);
}

.legal-hero__inner {
    max-width: 860px;
}

.legal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--brand-green);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.legal-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--brand-green);
}

.legal-title {
    max-width: 760px;
    margin: 0 0 18px;
    font-size: clamp(2.25rem, 5vw, 4rem);
    line-height: 1.05;
}

.legal-updated {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.94rem;
    font-weight: 700;
}

.legal-content {
    padding: 62px 0 82px;
}

.legal-document {
    max-width: 900px;
}

.legal-document h2 {
    margin: 34px 0 12px;
    font-family: var(--font-body);
    font-size: 1.08rem;
    font-weight: 900;
    text-transform: uppercase;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p,
.legal-document li {
    color: var(--ink-soft);
    font-size: 1rem;
    line-height: 1.78;
}

.legal-document ul {
    margin: 0 0 20px;
    padding-left: 22px;
}

.legal-document a {
    font-weight: 800;
}

.legal-note {
    margin-top: 30px;
    padding: 18px 22px;
    border: 1px solid rgba(7, 132, 62, 0.18);
    border-radius: 18px;
    background: var(--surface-soft);
}

.legal-note p {
    margin: 0;
    font-size: 0.94rem;
}

@media (min-width: 1200px) and (max-width: 1360px) {
    .hero-socials {
        left: 18px;
    }

    .hero-stage {
        padding-left: 54px;
    }
}

@media (max-width: 1199px) {
    .top-wrapper::before,
    .top-wrapper::after {
        width: 28%;
        height: 600px;
    }

    .site-header__bar,
    .site-header .uk-navbar-container,
    .site-header .uk-navbar,
    .brand-logo {
        min-height: 82px;
    }

    .site-header__bar {
        background: #fff;
        box-shadow: 0 12px 32px rgba(16, 24, 39, 0.08);
    }

    .brand-logo__image {
        width: 190px;
    }

    .header-talk-button {
        border-color: var(--brand-green);
        background: var(--brand-green);
        color: #fff;
        box-shadow: none;
    }

    .header-talk-button:hover,
    .header-talk-button:focus {
        border-color: var(--brand-green-dark);
        background: var(--brand-green-dark);
        color: #fff;
    }

    .hero-stage {
        min-height: 570px;
        padding-left: 0;
    }

    .hero-image-wrap {
        width: 69%;
        height: 500px;
    }

    .language-note {
        top: 20px;
        right: 28px;
        min-width: 214px;
        font-size: 0.68rem;
    }

    .hero-panel {
        width: 50%;
        padding: 42px 36px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2.35rem;
    }

    .services-showcase.uk-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-top: 54px !important;
        padding: 18px;
    }

    .service-card,
    .service-card--featured {
        min-height: 382px;
        transform: none;
    }

    .service-card:hover,
    .service-card:focus-within,
    .service-card--featured:hover,
    .service-card--featured:focus-within {
        transform: translateY(-10px);
    }

    .story-panel {
        padding-left: 42px;
    }
}

@media (max-width: 959px) {
    .uk-section {
        padding-top: 62px;
        padding-bottom: 62px;
    }

    .top-wrapper::before,
    .top-wrapper::after {
        top: auto;
        width: 100%;
        height: 44%;
        bottom: 0;
    }

    .hero-section {
        padding-top: 24px;
    }

    .hero-stage {
        display: flex;
        min-height: 0;
        flex-direction: column;
    }

    .hero-image-wrap {
        width: 100%;
        height: 420px;
    }

    .language-note {
        position: absolute;
        top: 376px;
        left: 50%;
        right: auto;
        margin: 0;
        transform: translateX(-50%);
    }

    .hero-dot-field {
        left: -42px;
        bottom: -52px;
        width: 170px;
        height: 110px;
    }

    .hero-panel {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 28px);
        max-width: none;
        margin: -58px auto 0;
        padding: 36px 30px;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .stats-grid > div:not(:last-child) .stat-item {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat-item {
        justify-content: flex-start;
        min-height: 96px;
        padding: 0;
    }

    .story-layout {
        min-height: 0;
    }

    .story-image-wrap {
        width: 100%;
        height: 380px;
    }

    .story-image-wrap::after {
        top: 292px;
        left: auto;
        right: 24px;
        width: 22px;
        height: 96px;
    }

    .story-panel {
        position: relative;
        top: auto;
        right: auto;
        width: calc(100% - 28px);
        min-height: 0;
        margin: -48px auto 0;
        padding: 34px 30px;
        box-shadow: var(--shadow-soft);
    }

    .process-step {
        grid-template-columns: 92px 1fr;
        gap: 20px;
    }

    .process-icon {
        width: 88px;
        height: 88px;
    }

    .process-display {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .process-display__copy {
        padding: 44px 38px;
    }

    .process-display__media,
    .process-display__media img {
        min-height: 360px;
    }

    .process-display__media::after {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(7, 132, 62, 0.3));
    }

    .testimonial-card p {
        min-height: 0;
    }

    .cta-copy {
        align-items: flex-start;
    }

    .cta-actions {
        margin-top: 24px;
    }
}

@media (max-width: 639px) {
    .uk-section {
        padding-top: 52px;
        padding-bottom: 52px;
    }

    .uk-button {
        min-height: 46px;
        padding: 0 20px;
        font-size: 0.78rem;
        line-height: 44px;
    }

    .site-header__bar,
    .site-header .uk-navbar-container,
    .site-header .uk-navbar,
    .brand-logo {
        min-height: 76px;
    }

    .site-header__bar,
    .site-header .uk-navbar-container {
        background: transparent;
        box-shadow: none;
    }

    .brand-logo {
        padding-right: 8px;
    }

    .brand-logo__image {
        width: 206px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-talk-button {
        display: none;
        height: 38px;
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.7rem;
        line-height: 36px;
    }

    .header-talk-button span[uk-icon] {
        display: none;
    }

    .top-wrapper::before,
    .top-wrapper::after {
        top: 318px;
        bottom: auto;
        height: 510px;
    }

    .hero-section {
        padding-top: 18px;
    }

    .hero-image-wrap {
        height: 350px;
    }

    .language-note {
        top: 272px;
        min-width: 204px;
        padding: 7px 12px 7px 9px;
        font-size: 0.66rem;
    }

    .language-note__icon {
        width: 26px;
        height: 26px;
        flex-basis: 26px;
    }

    .language-note__rotator {
        min-width: 138px;
    }

    .hero-panel {
        width: calc(100% - 20px);
        height: 620px;
        padding: 28px 22px;
    }

    .hero-form-grid {
        grid-template-columns: 1fr;
        row-gap: 14px;
    }

    .hero-form__top {
        margin-bottom: 14px;
    }

    .hero-form h2 {
        font-size: 1.45rem;
        line-height: 1.18;
    }

    .hero-form .uk-input {
        height: 40px;
    }

    .hero-title {
        margin-bottom: 26px;
        font-size: clamp(2.42rem, 10.8vw, 3rem);
        line-height: 1.04;
    }

    .hero-copy {
        margin-bottom: 26px;
        font-size: 0.95rem;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-actions .uk-button {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .eyebrow {
        font-size: 0.72rem;
    }

    .hero-panel-copy > .eyebrow .hero-eyebrow-break {
        display: block;
    }

    .eyebrow::before {
        display: block;
        width: 26px;
        margin-bottom: 10px;
        margin-right: 12px;
    }

    .services-showcase.uk-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 34px !important;
        padding: 12px;
        border-radius: 24px;
    }

    .service-card,
    .service-card--featured {
        min-height: 340px;
        padding: 24px;
        border-radius: 20px;
        transform: none;
    }

    .service-card:hover,
    .service-card:focus-within,
    .service-card--featured:hover,
    .service-card--featured:focus-within {
        transform: translateY(-4px);
    }

    .service-card__topline {
        margin-bottom: 20px;
    }

    .service-card__number {
        font-size: 3.2rem;
    }

    .card-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
    }

    .story-image-wrap {
        height: 330px;
    }

    .gallery-item img {
        height: auto;
    }

    .process-heading {
        gap: 14px;
        margin-bottom: 24px;
    }

    .process-display {
        margin-bottom: 42px;
        border-radius: 24px;
    }

    .process-display__copy {
        padding: 34px 24px;
    }

    .process-display__brand {
        margin-bottom: 24px;
    }

    .process-display h3 {
        font-size: 2.4rem;
    }

    .process-display__actions {
        display: grid;
        gap: 16px;
    }

    .process-display__actions .uk-button {
        width: 100%;
    }

    .process-display__actions span {
        max-width: none;
    }

    .process-display__media,
    .process-display__media img {
        min-height: 300px;
    }

    .process-display__badge {
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
    }

    .process-step {
        grid-template-columns: 76px minmax(0, 1fr);
        align-items: start;
        gap: 18px;
        padding: 16px 0;
        text-align: left;
    }

    .process-icon {
        width: 72px;
        height: 72px;
        margin: 0;
        border-radius: 22px;
    }

    .process-content {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: baseline;
        column-gap: 10px;
        padding-top: 2px;
    }

    .process-content span {
        margin: 0;
        font-size: 0.82rem;
        font-weight: 900;
        letter-spacing: 0.08em;
    }

    .process-content h3 {
        margin: 0;
        font-family: var(--font-heading);
        font-size: 1.42rem;
        line-height: 1.08;
        text-transform: none;
    }

    .process-content p {
        grid-column: 1 / -1;
        margin-top: 8px;
        font-size: 0.96rem;
        line-height: 1.58;
    }

    .cta-copy {
        display: block;
    }

    .cta-icon {
        margin-bottom: 20px;
    }

    .cta-banner h2 {
        font-size: 1.65rem;
    }

    .cta-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .footer-bottom-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom a {
        margin: 0 10px;
    }
}

@media (max-width: 959px) {
    .uk-button.is-scroll-highlight {
        transform: translateY(-2px);
    }

    .btn-primary.is-scroll-highlight {
        border-color: var(--brand-green-dark);
        background: var(--brand-green-dark);
        color: #fff;
        box-shadow: 0 14px 30px rgba(7, 132, 62, 0.22);
    }

    .btn-outline.is-scroll-highlight {
        border-color: var(--brand-blue);
        background: rgba(24, 132, 192, 0.1);
        color: var(--brand-blue);
        box-shadow: 0 14px 28px rgba(24, 132, 192, 0.16);
    }

    .btn-white.is-scroll-highlight {
        background: var(--surface-soft);
        color: var(--brand-blue);
    }

    .btn-outline-white.is-scroll-highlight {
        background: rgba(255, 255, 255, 0.14);
        color: #fff;
    }

    .header-talk-button.is-scroll-highlight {
        border-color: var(--brand-green-dark);
        background: var(--brand-green-dark);
        color: #fff;
    }

    .mobile-talk-button.is-scroll-highlight {
        background: var(--surface-soft);
        color: var(--brand-green-dark) !important;
    }

    .stat-item.is-scroll-highlight {
        z-index: 2;
        transform: scale(1.035);
    }

    .stat-item.is-scroll-highlight h2,
    .stat-item.is-scroll-highlight .stat-subtitle {
        color: var(--brand-green);
    }

    .service-card.is-scroll-highlight {
        z-index: 3;
        border-color: rgba(24, 132, 192, 0.36);
        box-shadow: 0 28px 58px rgba(16, 24, 39, 0.18);
        transform: translateY(-4px);
    }

    .service-card.is-scroll-highlight .service-card__image {
        opacity: 0.72;
        transform: scale(1);
    }

    .service-card.is-scroll-highlight .service-card__shade {
        opacity: 1;
    }

    .service-card.is-scroll-highlight .service-card__number,
    .service-card.is-scroll-highlight h3 {
        color: #fff;
    }

    .service-card.is-scroll-highlight .card-icon {
        border-color: rgba(255, 255, 255, 0.38);
        background: rgba(255, 255, 255, 0.13);
        color: #fff;
    }

    .service-card.is-scroll-highlight .service-list li {
        color: rgba(255, 255, 255, 0.9);
    }

    .service-card.is-scroll-highlight .service-list li::before {
        background: #fff;
    }

    .service-card.is-scroll-highlight .service-card__link {
        border-color: rgba(255, 255, 255, 0.72);
        color: #fff;
    }

    .gallery-item.is-scroll-highlight img {
        filter: grayscale(0%);
        transform: translateY(-3px);
    }

    .testimonial-card.is-scroll-highlight {
        border-color: var(--line);
        box-shadow: var(--shadow-soft);
        transform: translateY(-4px);
    }
}

@media (max-width: 420px) {
    .brand-logo__image {
        width: 182px;
    }

    .header-talk-button {
        display: none;
    }

    .mobile-toggle {
        padding-right: 0;
        padding-left: 6px;
    }

    .hero-image-wrap {
        height: 310px;
    }

    .language-note {
        top: 238px;
        min-width: 196px;
        gap: 8px;
    }

    .hero-title {
        font-size: clamp(2.28rem, 11.6vw, 2.74rem);
    }

    .section-title {
        font-size: 1.75rem;
    }

    .stat-item {
        gap: 18px;
    }

    .story-panel,
    .hero-panel {
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media (max-width: 340px) {
    .brand-logo__image {
        width: 161px;
    }

    .header-talk-button {
        height: 34px;
        min-height: 34px;
        padding: 0 8px;
        font-size: 0.64rem;
        line-height: 32px;
    }

    .hero-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 639px) {
    .legal-page .site-header__bar,
    .legal-page .site-header .uk-navbar-container {
        background: #fff;
        box-shadow: 0 12px 32px rgba(16, 24, 39, 0.08);
    }

    .legal-page .site-header.site-header--sticky .site-header__bar,
    .legal-page .site-header.site-header--sticky .uk-navbar-container {
        background: var(--brand-green);
    }

    .legal-hero {
        padding: 54px 0 34px;
    }

    .legal-content {
        padding: 44px 0 62px;
    }
}
