@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Serif Georgian';
    src: url('fonts/NotoSerifGeorgian-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Noto Serif Georgian';
    src: url('fonts/NotoSerifGeorgian-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --site-header-height: 74px;
    --color-primary: #9bc53d;
    --color-primary-dark: #6fa91f;
    --color-primary-light: #c9e98a;
    --color-secondary: #8f9092;
    --color-text: #000000;
    --color-muted: #4f4f4f;
    --color-border: #d9d9d9;
    --color-bg: #f5f6f7;
    --color-white: #ffffff;
    --color-footer: #111111;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius: 10px;
    --container: 1200px;
    --font-sans-latin: 'Google Sans', 'Inter', sans-serif;
    --font-sans-georgian: 'Noto Serif Georgian', Georgia, 'Times New Roman', serif;
    --font-sans: var(--font-sans-latin);
    --font-ui: var(--font-sans-latin);
    --font-serif: var(--font-sans-latin);
}

html[lang="ka"] {
    --font-sans: var(--font-sans-georgian);
    --font-ui: var(--font-sans-georgian);
    --font-serif: var(--font-sans-georgian);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

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

p {
    margin: 0 0 1rem;
    color: var(--color-muted);
}

h1, h2, h3, h4 {
    margin: 0 0 1rem;
    font-family: var(--font-ui);
    font-weight: 700;
    color: var(--color-text);
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.35rem;
    border-radius: 6px;
    border: 1px solid var(--color-primary);
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: 700;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.button:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-1px);
}

.button--secondary {
    background: transparent;
    color: var(--color-primary);
    border-width: 2px;
}

.button--secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header--home {
    border-bottom-color: transparent;
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.85rem 0;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0.7rem;
    font-family: var(--font-ui);
    font-weight: 700;
}

.site-logo__image {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-logo__text {
    font-size: 1rem;
    letter-spacing: 0.01em;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-self: center;
}

.site-nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav__item a {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
}

.site-nav__item.is-active a,
.site-nav__item a:hover,
.site-header__languages a:hover,
.site-header__languages .is-current {
    color: var(--color-primary);
}

.site-header__actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 1rem;
}

.site-header__languages {
    display: flex;
    gap: 0.7rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
}

.site-header__toggle {
    display: none;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    border-radius: 8px;
    padding: 0.6rem;
}

.site-header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-text);
    margin: 0.25rem 0;
}

.page-hero,
.page-not-found,
.hero-fallback {
    padding: 5rem 0 3rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.82), rgba(79, 79, 79, 0.65)), radial-gradient(circle at top right, rgba(155, 197, 61, 0.35), transparent 35%);
    color: var(--color-white);
}

.page-hero h1,
.page-not-found h1,
.hero-fallback h1,
.hero-slide__content h2 {
    color: var(--color-white);
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    max-width: 12ch;
}

.page-hero p,
.page-not-found p,
.hero-fallback p,
.hero-slide__content p {
    color: rgba(255, 255, 255, 0.82);
    max-width: 42rem;
}

.page-hero--compact {
    padding: 3.5rem 0 2rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.site-section {
    padding: 4.5rem 0;
    background: var(--color-white);
}

.site-section.section--alt {
    background: var(--color-bg);
}

.site-hero-section {
    position: relative;
    background: #000000;
}

.site-main--home {
    position: relative;
    isolation: isolate;
    background: var(--color-bg);
    --home-sheet-overlap: clamp(3.5rem, 7vw, 5.5rem);
}

.site-main--home .site-hero-section {
    position: sticky;
    top: var(--site-header-height);
    z-index: -1;
    margin-top: calc(-1 * var(--site-header-height));
}

.site-main--home .home-first-section-after-hero {
    position: relative;
    z-index: 2;
    margin-top: calc(-1 * var(--home-sheet-overlap));
    background: var(--color-white);
    overflow: visible;
}

.site-main--home .home-first-section-after-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: calc(var(--home-sheet-overlap) + 1px);
    background: var(--color-white);
    border-top-left-radius: 2.2rem;
    border-top-right-radius: 2.2rem;
    transform: translateY(-100%);
    box-shadow: 0 -18px 34px rgba(0, 0, 0, 0.08);
}

.site-main--home .home-first-section-after-hero > * {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: clamp(1.9rem, 3vw, 3rem);
    margin-bottom: 0.75rem;
}

.section-title--serif {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
}

.about-split-intro {
    background: var(--color-white);
}

.page-image-banner {
    background: var(--color-white);
}

.page-image-banner__media {
    width: 100%;
    height: clamp(260px, 30vw, 500px);
    overflow: hidden;
    background: linear-gradient(180deg, #dce5eb 0%, #c7d8e4 100%);
}

.page-image-banner__media img,
.page-image-banner__fallback {
    width: 100%;
    height: 100%;
}

.page-image-banner__media img {
    object-fit: cover;
}

.page-image-banner__fallback {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 100%),
        linear-gradient(135deg, #d6e0e8 0%, #b9ccd9 45%, #a6bccd 100%);
}

.about-split-intro__media {
    width: 100%;
    height: clamp(280px, 34vw, 540px);
    overflow: hidden;
    background: linear-gradient(180deg, #dce5eb 0%, #c7d8e4 100%);
}

.about-split-intro__media img,
.about-split-intro__media-fallback {
    width: 100%;
    height: 100%;
}

.about-split-intro__media img {
    object-fit: cover;
}

.about-split-intro__media-fallback {
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 100%),
        linear-gradient(135deg, #d6e0e8 0%, #b9ccd9 45%, #a6bccd 100%);
}

.about-split-intro__content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.95fr);
    gap: 4rem;
    align-items: center;
    padding: clamp(3rem, 5vw, 5.25rem) 0 clamp(3.2rem, 5vw, 5.5rem);
}

.about-split-intro__heading,
.about-split-intro__text {
    min-width: 0;
}

.about-split-intro__title {
    margin: 0;
    color: #111111;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 2.5vw, 2.5rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.about-split-intro__lead,
.about-split-intro__body {
    margin: 0;
    color: #171717;
    font-family: var(--font-serif);
    font-size: clamp(1.15rem, 1.45vw, 1.5rem);
    font-weight: 400;
    line-height: 1.3;
}

.about-split-intro__body {
    margin-top: 1.35rem;
    color: #3f3f3f;
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.7;
}

.site-section.site-section--info-tiles {
    position: relative;
    background: var(--color-white);
    padding-top: 5.4rem;
}

.site-section--info-tiles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: min(80vw, 1100px);
    height: 2px;
    background: var(--color-primary);
    transform: translateX(-50%);
}

.site-section--info-tiles .eyebrow {
    margin-bottom: 1.2rem;
    color: #111111;
}

.site-section--info-tiles .section-title {
    margin-bottom: 2.5rem;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1;
}

.info-tiles-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.8rem;
}

.info-tile {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    padding: 2rem 2rem 1.8rem;
    background: var(--color-bg);
    border: 0;
}

.info-tile__title {
    margin: 0;
    color: #111111;
    font-family: var(--font-serif);
    font-size: clamp(1.55rem, 1.9vw, 2.2rem);
    font-weight: 400;
    line-height: 1.06;
    letter-spacing: -0.02em;
}

.info-tile__meta {
    margin-top: 2rem;
}

.info-tile__label,
.info-tile__body {
    margin: 0;
}

.info-tile__label {
    color: #111111;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.info-tile__body {
    margin-top: 0.75rem;
    color: #3f3f3f;
    font-size: 0.92rem;
    line-height: 1.45;
}

.split-media-copy-section {
    background: var(--color-white);
}

.split-media-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 3.25rem;
    align-items: center;
}

.split-media-copy-section.is-media-left .split-media-copy__copy {
    order: 2;
}

.split-media-copy-section.is-media-left .split-media-copy__media {
    order: 1;
}

.split-media-copy__title {
    margin-bottom: 1.4rem;
    color: #111111;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
}

.split-media-copy__paragraph,
.split-media-copy__list-heading,
.split-media-copy__list li {
    color: #232323;
    font-size: 1rem;
    line-height: 1.78;
}

.split-media-copy__paragraph {
    margin-bottom: 1rem;
}

.split-media-copy__paragraph.is-lead {
    font-size: 1.05rem;
}

.split-media-copy__list-heading {
    margin: 1.3rem 0 0.7rem;
    font-weight: 700;
}

.split-media-copy__list {
    margin: 0;
    padding-left: 1.25rem;
}

.split-media-copy__list li + li {
    margin-top: 0.45rem;
}

.split-media-copy__list a {
    color: var(--color-primary-dark);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
}

.split-media-copy__list a:hover {
    color: var(--color-primary);
}

.split-media-copy__media {
    min-height: 440px;
    background: #eef1f3;
    overflow: hidden;
}

.split-media-copy__media img,
.split-media-copy__media-fallback {
    width: 100%;
    height: 100%;
}

.split-media-copy__media img {
    object-fit: cover;
}

.split-media-copy__media-fallback {
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.04) 100%),
        linear-gradient(135deg, #dce5eb 0%, #c0d0db 45%, #adbfcc 100%);
}

.founder-profile-section {
    background: var(--color-white);
}

.founder-profile {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
    gap: 2.25rem;
    align-items: stretch;
}

.founder-profile-section.is-media-right .founder-profile__media {
    order: 2;
}

.founder-profile-section.is-media-right .founder-profile__content {
    order: 1;
}

.founder-profile__media {
    min-height: 520px;
    background: #e6eaef;
    overflow: hidden;
}

.founder-profile__media img,
.founder-profile__media-fallback {
    width: 100%;
    height: 100%;
}

.founder-profile__media img {
    object-fit: cover;
}

.founder-profile__media-fallback {
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.04) 100%),
        linear-gradient(135deg, #c7d0da 0%, #aab5c1 48%, #93a0ae 100%);
}

.founder-profile__content {
    display: flex;
    align-items: center;
}

.founder-profile__panel {
    width: 100%;
    padding: 2.6rem 0;
    border-top: 1px solid rgba(17, 17, 17, 0.22);
    border-bottom: 1px solid rgba(17, 17, 17, 0.22);
}

.founder-profile__name {
    margin: 0 0 0.9rem;
    color: #111111;
    font-family: var(--font-serif);
    font-size: clamp(2.1rem, 3.2vw, 3.25rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
}

.founder-profile__role {
    margin: 0 0 1.5rem;
    color: #111111;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.founder-profile__paragraph {
    margin: 0;
    color: #2b2b2b;
    font-size: 1rem;
    line-height: 1.82;
}

.founder-profile__paragraph + .founder-profile__paragraph {
    margin-top: 1rem;
}

.founder-profile__paragraph.is-lead {
    color: #111111;
}

.leadership-grid-section {
    background: var(--color-white);
}

.leadership-grid-section .section-title {
    margin-bottom: 2rem;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.8rem;
}

.leadership-card {
    background: transparent;
}

.leadership-card__media {
    aspect-ratio: 5 / 4;
    background: #e7ebef;
    overflow: hidden;
}

.leadership-card__media img,
.leadership-card__media-fallback {
    width: 100%;
    height: 100%;
}

.leadership-card__media img {
    object-fit: cover;
}

.leadership-card__media-fallback {
    background:
        linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.05) 100%),
        linear-gradient(135deg, #d0d7de 0%, #b6c0ca 48%, #a3adb8 100%);
}

.leadership-card__body {
    padding-top: 0.9rem;
}

.leadership-card__name {
    margin: 0 0 0.45rem;
    color: #111111;
    font-family: var(--font-serif);
    font-size: 1.12rem;
    font-weight: 400;
    line-height: 1.1;
}

.leadership-card__role {
    margin: 0 0 0.85rem;
    color: #111111;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.leadership-card__bio {
    margin: 0;
    color: #3f3f3f;
    font-size: 0.92rem;
    line-height: 1.6;
}

.leadership-card__placeholder {
    display: block;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.95), rgba(229, 229, 229, 0.95));
}

.leadership-card__placeholder--name {
    width: 58%;
    height: 1.3rem;
    margin-bottom: 0.55rem;
}

.leadership-card__placeholder--role {
    width: 42%;
    height: 0.7rem;
    margin-bottom: 1rem;
}

.leadership-card__placeholder--bio {
    width: 100%;
    height: 0.8rem;
    margin-bottom: 0.55rem;
}

.leadership-card__placeholder--bio.is-short {
    width: 78%;
    margin-bottom: 0;
}

.partner-panels-section {
    background: var(--color-bg);
}

.partner-panels-section .section-title {
    margin-bottom: 2rem;
}

.partner-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem 4rem;
}

.partner-panel {
    max-width: 760px;
}

.partner-panel__brand {
    min-height: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 1.15rem;
}

.partner-panel__brand img {
    max-width: 88px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    flex: 0 0 auto;
}

.partner-panel__name {
    margin: 0;
    color: #111111;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.partner-panel__content {
    min-width: 0;
}

.partner-panel__brand-text {
    color: #111111;
    font-family: var(--font-ui);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.partner-panel__brand-placeholder {
    display: block;
    width: 180px;
    height: 44px;
    background: linear-gradient(90deg, rgba(217, 217, 217, 0.95), rgba(229, 229, 229, 0.95));
}

.partner-panel__description {
    max-width: 42rem;
    margin: 0;
    color: #2b2b2b;
    font-size: 1rem;
    line-height: 1.7;
}

.partner-panel__link-line {
    margin: 1.25rem 0 0;
    color: #2b2b2b;
    font-size: 1rem;
}

.partner-panel__link-line a {
    color: inherit;
}

.partner-panel__link-line a:hover {
    color: var(--color-primary-dark);
}

@media (min-width: 1180px) {
    .about-split-intro__content {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.9fr);
        justify-content: center;
        gap: 4.25rem;
    }

    .about-split-intro__heading {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-split-intro__text {
        display: flex;
        align-items: center;
    }

    .about-split-intro__title {
        white-space: nowrap;
        text-align: center;
    }
}

.section-summary,
.lead {
    max-width: 46rem;
    font-size: 1.1rem;
}

.card-grid,
.logo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.site-section--home-projects {
    overflow: clip;
}

.card-grid--home-projects {
    align-items: start;
    column-gap: 1.5rem;
    row-gap: 1.85rem;
}

.reveal-card {
    min-width: 0;
}

.reveal-up {
    opacity: 0;
    transform: translate3d(0, 42px, 0);
    transition:
        opacity 680ms ease,
        transform 880ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-card--home-project {
    opacity: 0;
    transform: translate3d(0, 44px, 0);
    transition:
        opacity 720ms ease,
        transform 820ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.reveal-card--home-project.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.card-grid--home-projects .project-card__media {
    aspect-ratio: 1.9 / 1;
}

.card-grid--home-projects .project-card__body {
    padding-top: 0.8rem;
}

.card-grid--home-projects .project-card__location {
    margin-bottom: 0.45rem;
    font-size: 0.75rem;
}

.card-grid--home-projects .project-card__title-link {
    font-size: clamp(1.5rem, 1.45vw, 1.95rem);
    line-height: 1.03;
}

.card-grid--home-projects .project-card__summary {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.card:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
}

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

.logo-card img {
    height: 110px;
    object-fit: contain;
    padding: 1rem;
}

.project-card__body,
.news-card__body,
.job-card__body,
.generic-card {
    padding: 1.4rem;
}

.project-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
}

.project-card:hover {
    border-color: transparent;
    transform: none;
}

.project-card__media {
    position: relative;
    display: block;
    aspect-ratio: 1.6 / 1;
    overflow: hidden;
    background: #d9d9d9;
}

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

.project-card__badge {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    padding: 0.45rem 0.9rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.project-card__badge--active,
.project-card__badge--current {
    background: var(--color-primary);
}

.project-card__badge--inactive {
    background: #6f7780;
}

.project-card__badge--past {
    background: #6f7780;
}

.project-card__icon {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    z-index: 2;
    color: var(--color-white);
    font-size: 1rem;
    line-height: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.project-card__meta,
.news-card__meta,
.job-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    font-size: 0.8rem;
    color: var(--color-secondary);
    text-transform: uppercase;
}

.project-card__specs,
.job-card__footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: space-between;
    align-items: center;
}

.project-card__price {
    margin-top: 1rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.project-card__body {
    padding: 1rem 0 0;
}

.project-card__location {
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
}

.project-card__title {
    margin: 0;
}

.project-card__title-link {
    display: inline-block;
    padding-bottom: 0.2rem;
    border-bottom: 2px solid var(--color-primary);
    color: #111111;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 2vw, 2.35rem);
    font-weight: 400;
    line-height: 1.05;
}

.project-card__summary {
    max-width: 28rem;
    margin-top: 1rem;
    color: #3f3f3f;
    font-size: 0.98rem;
    line-height: 1.55;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-up,
    .reveal-card--home-project {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.generic-card__sub {
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.newsletter-block {
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 0 0.5rem;
    text-align: center;
}

.newsletter-block__header {
    margin-bottom: 2rem;
}

.newsletter-block__title {
    margin-bottom: 0.5rem;
    font-family: var(--font-serif);
    font-size: clamp(2.25rem, 4vw, 3.4rem);
    font-weight: 400;
    line-height: 1.05;
}

.newsletter-block__subtitle {
    margin: 0;
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.newsletter-flash {
    margin: 0 auto 1.5rem;
    max-width: 860px;
    padding: 0.85rem 1rem;
    border: 1px solid var(--color-border);
    color: var(--color-text);
    background: var(--color-white);
    text-align: left;
}

.newsletter-flash--success {
    border-color: rgba(155, 197, 61, 0.45);
    background: rgba(155, 197, 61, 0.08);
}

.newsletter-flash--error {
    border-color: rgba(176, 63, 63, 0.3);
    background: rgba(176, 63, 63, 0.06);
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: stretch;
    border: 1px solid #5a5a5a;
    background: transparent;
}

.newsletter-form__field {
    display: block;
}

.newsletter-form__field input {
    width: 100%;
    height: 100%;
    padding: 1.4rem 1.6rem;
    border: 0;
    background: transparent;
    color: var(--color-text);
    font-family: var(--font-serif);
    font-size: clamp(1.45rem, 2vw, 1.95rem);
    outline: none;
}

.newsletter-form__field input::placeholder {
    color: rgba(0, 0, 0, 0.7);
}

.newsletter-form__submit {
    border: 0;
    border-left: 1px solid #5a5a5a;
    background: transparent;
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.newsletter-form__submit:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.newsletter-socials {
    display: flex;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 2rem;
}

.newsletter-socials__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: var(--color-text);
    transition: color 0.2s ease, transform 0.2s ease;
}

.newsletter-socials__link svg {
    width: 1.3rem;
    height: 1.3rem;
}

.newsletter-socials__link:hover {
    color: var(--color-primary);
    transform: translateY(-1px);
}

.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 74px);
    background: #000000;
}

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: calc(100vh - 74px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(1.03);
    transition:
        opacity 820ms ease,
        transform 1400ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 820ms;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    transition:
        opacity 820ms ease,
        transform 1400ms cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0s;
}

.hero-slide.is-entering-next,
.hero-slide.is-entering-prev,
.hero-slide.is-leaving-next,
.hero-slide.is-leaving-prev {
    visibility: visible;
    pointer-events: none;
}

.hero-slide.is-entering-next {
    opacity: 0;
    transform: translate3d(4.5%, 0, 0) scale(1.02);
}

.hero-slide.is-entering-prev {
    opacity: 0;
    transform: translate3d(-4.5%, 0, 0) scale(1.02);
}

.hero-slide.is-entering-next.is-active,
.hero-slide.is-entering-prev.is-active {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.hero-slide.is-leaving-next {
    opacity: 0;
    transform: translate3d(-3%, 0, 0) scale(1.01);
}

.hero-slide.is-leaving-prev {
    opacity: 0;
    transform: translate3d(3%, 0, 0) scale(1.01);
}

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

.hero-slide__media img {
    transform: scale(1.02);
    transition: transform 6000ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.hero-slide__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.18));
}

.hero-slide__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(100vh - 74px);
    padding: 3rem;
    max-width: 42rem;
    opacity: 0;
    transform: translate3d(0, 24px, 0);
    transition:
        opacity 480ms ease 180ms,
        transform 720ms cubic-bezier(0.22, 1, 0.36, 1) 180ms;
}

.hero-slide.is-active .hero-slide__content {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slide__media img,
    .hero-slide__content {
        transition: none;
        transform: none;
    }
}

.hero-slider__control {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.16);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-slider__control:hover {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-slider__control--prev {
    left: 1.5rem;
}

.hero-slider__control--next {
    right: 1.5rem;
}

.hero-slider__dots {
    position: absolute;
    left: 50%;
    bottom: 1.5rem;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    gap: 0.6rem;
}

.hero-slider__dot {
    width: 0.75rem;
    height: 0.75rem;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover {
    background: var(--color-white);
    transform: scale(1.15);
}

.filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.9fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-bar input,
.filter-bar select {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    background: var(--color-white);
    font: inherit;
}

.project-listing__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.project-listing__count {
    margin: 0;
    color: #4a4a4a;
    font-size: 0.98rem;
    letter-spacing: 0.02em;
}

.project-listing__item.is-hidden {
    display: none;
}

.project-listing__empty {
    display: none;
    margin-top: 1.5rem;
    padding: 1.25rem 1.4rem;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #f5f6f7;
    color: #2b2b2b;
}

.project-listing__empty.is-visible {
    display: block;
}

.contact-page-section {
    background: var(--color-white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 2rem;
    align-items: start;
}

.contact-page-card {
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: var(--color-white);
    padding: 2rem;
}

.contact-page-card--form {
    background: #f5f6f7;
}

.contact-page-card--map {
    border: 0;
}

.contact-page-card__head .section-title {
    margin-bottom: 0.8rem;
}

.contact-page-card__head .section-summary {
    max-width: 34rem;
    margin-bottom: 0;
}

.contact-map {
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(17, 17, 17, 0.08);
    background: #eef2f4;
}

.contact-map iframe {
    display: block;
    width: 100%;
    min-height: 420px;
    border: 0;
}

.contact-page-details {
    margin-top: 1.35rem;
    display: grid;
    gap: 0.7rem;
}

.contact-page-details p {
    margin: 0;
    color: #2b2b2b;
    line-height: 1.65;
}

.contact-page-details a {
    color: inherit;
}

.contact-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.35rem;
}

.contact-form__field {
    display: grid;
    gap: 0.45rem;
}

.contact-form__field span {
    color: #111111;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field textarea {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    background: var(--color-white);
    font: inherit;
    color: #111111;
}

.contact-form__field textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form__submit {
    margin-top: 0.25rem;
    justify-self: start;
}

.contact-form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.contact-flash {
    margin-top: 1.25rem;
    padding: 0.95rem 1rem;
    border-radius: 12px;
    font-size: 0.96rem;
}

.contact-flash--success {
    background: rgba(154, 184, 67, 0.15);
    color: #31510c;
}

.contact-flash--error {
    background: rgba(169, 35, 35, 0.10);
    color: #7a1f1f;
}

.project-detail {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(320px, 0.9fr);
    gap: 2rem;
    align-items: start;
}

.project-detail__gallery {
    display: grid;
    gap: 1rem;
}

.project-detail__gallery img {
    border-radius: 14px;
    min-height: 280px;
    object-fit: cover;
}

.project-detail__sidebar {
    background: var(--color-white);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    position: sticky;
    top: 6rem;
}

.project-detail__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
}

.project-detail__content,
.article-layout {
    max-width: 820px;
}

.article-layout__media {
    margin-bottom: 1.5rem;
}

.article-layout__media img {
    width: 100%;
    border-radius: 16px;
}

.project-detail__facts,
.spec-grid,
.tag-list,
.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.project-detail__facts {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    flex-direction: column;
}

.project-detail__facts li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 0.75rem;
}

.spec-grid__item,
.tag-list span,
.pagination a {
    background: var(--color-bg);
    border-radius: 8px;
    padding: 0.8rem 1rem;
}

.pagination {
    margin-top: 2rem;
}

.pagination a.is-current {
    background: var(--color-primary);
    color: var(--color-white);
}

.site-footer {
    background: var(--color-footer);
    color: var(--color-white);
    padding: 4rem 0 1.5rem;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.site-footer a {
    color: var(--color-white);
}

.site-footer__brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.site-footer__brand-link h2 {
    margin: 0;
}

.site-footer__logo {
    width: 2.75rem;
    height: 2.75rem;
    object-fit: contain;
    flex: 0 0 auto;
}

.site-footer__links ul,
.site-footer__socials ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer__links li,
.site-footer__socials li {
    margin-bottom: 0.75rem;
}

.site-footer__bottom {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.rich-text p {
    white-space: normal;
}

.rich-text a {
    color: var(--color-primary-dark);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.16em;
    font-weight: 700;
}

.rich-text a:hover {
    color: var(--color-primary);
}

#home-featured-projects .section-title {
    margin-bottom: 0;
    font-size: 2rem;
    font-family: var(--font-ui);
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

#home-featured-projects .section-summary {
    display: none;
}

#home-featured-projects .card-grid {
    gap: 2.5rem 1.8rem;
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .card-grid,
    .logo-grid,
    .site-footer__grid,
    .project-detail,
    .filter-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-detail__sidebar {
        position: static;
    }
}

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

    .split-media-copy {
        grid-template-columns: 1fr;
    }

    .founder-profile {
        grid-template-columns: 1fr;
    }

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

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

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

    .split-media-copy-section.is-media-left .split-media-copy__copy,
    .split-media-copy-section.is-media-left .split-media-copy__media {
        order: initial;
    }

    .founder-profile-section.is-media-right .founder-profile__media,
    .founder-profile-section.is-media-right .founder-profile__content {
        order: initial;
    }
}

@media (max-width: 768px) {
    :root {
        --site-header-height: 72px;
    }

    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1rem;
    }

    .site-header__toggle {
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        background: var(--color-white);
        padding: 1rem;
        border-bottom: 1px solid var(--color-border);
        justify-self: stretch;
    }

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

    .site-nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .site-header__languages {
        font-size: 0.8rem;
    }

    .card-grid,
    .logo-grid,
    .site-footer__grid,
    .filter-bar,
    .project-detail {
        grid-template-columns: 1fr;
    }

    .hero-slide__content,
    .page-hero,
    .page-not-found,
    .hero-fallback {
        padding-top: 4rem;
    }

    .hero-slider,
    .hero-slide,
    .hero-slide__content {
        min-height: calc(100svh - 72px);
    }

    .site-main--home .home-first-section-after-hero {
        margin-top: calc(-1 * var(--home-sheet-overlap));
    }

    .site-main--home .home-first-section-after-hero::before {
        border-top-left-radius: 1.45rem;
        border-top-right-radius: 1.45rem;
        box-shadow: 0 -10px 22px rgba(0, 0, 0, 0.06);
    }

    .hero-slider__control {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.75rem;
    }

    .hero-slider__control--prev {
        left: 0.75rem;
    }

    .hero-slider__control--next {
        right: 0.75rem;
    }

    .project-card__title-link {
        font-size: 1.8rem;
    }

    .about-split-intro__content {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        padding: 2.2rem 0 2.7rem;
    }

    .page-image-banner__media {
        height: clamp(220px, 52vw, 340px);
    }

    .about-split-intro__title {
        font-size: clamp(2.1rem, 10vw, 3rem);
    }

    .about-split-intro__lead {
        font-size: clamp(1.35rem, 6.2vw, 1.85rem);
    }

    .site-section--info-tiles .section-title {
        margin-bottom: 1.8rem;
    }

    .info-tiles-grid {
        grid-template-columns: 1fr;
    }

    .info-tile {
        min-height: 250px;
        padding: 1.6rem;
    }

    .info-tile__title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .split-media-copy {
        gap: 1.8rem;
    }

    .split-media-copy__title {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .split-media-copy__media {
        min-height: 280px;
    }

    .founder-profile {
        gap: 1.6rem;
    }

    .founder-profile__media {
        min-height: 320px;
    }

    .founder-profile__name {
        font-size: clamp(1.95rem, 8vw, 2.6rem);
    }

    .founder-profile__panel {
        padding: 1.8rem 0;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .leadership-card__media {
        aspect-ratio: 5 / 4;
    }

    .partner-panels {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-page-card {
        padding: 1.4rem;
    }

    .contact-map iframe {
        min-height: 320px;
    }

    .partner-panel__brand img {
        max-width: 80px;
        max-height: 36px;
    }

    .partner-panel__brand-text {
        font-size: 1.7rem;
    }

    .newsletter-form {
        grid-template-columns: 1fr;
    }

    .newsletter-form__submit {
        min-height: 4rem;
        border-left: 0;
        border-top: 1px solid #5a5a5a;
    }

    .newsletter-form__field input {
        font-size: 1.35rem;
    }
}
