@layer reset, tokens, base, components, pages, utilities;

@layer pages {
  .inner-page {
    min-height: 70vh;
    padding-top: var(--header-height);
    background: var(--color-paper);
  }

  .inner-hero {
    padding-block: clamp(92px, 12vw, 150px) clamp(54px, 8vw, 90px);
    background:
      radial-gradient(circle at 80% 20%, rgb(196 217 79 / 18%), transparent 30%),
      linear-gradient(145deg, #eaf3ee, #fff);
  }

  .inner-hero h1 {
    margin: 8px 0 18px;
    color: var(--color-green-800);
    font-size: clamp(42px, 8vw, 92px);
  }

  .inner-hero > div > p:last-child {
    max-width: 720px;
    color: var(--color-muted);
  }

  .listing-section {
    padding-block: clamp(60px, 8vw, 100px);
  }

  .filter-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
  }

  .filter-links a {
    padding: 9px 16px;
    color: var(--color-green-800);
    border: 1px solid rgb(6 73 54 / 20%);
    border-radius: var(--radius-pill);
    font-size: 12px;
  }

  .filter-links a.is-active {
    color: var(--color-white);
    border-color: var(--color-green-800);
    background: var(--color-green-800);
  }

  .project-grid,
  .article-grid {
    display: grid;
    gap: 22px;
  }

  .project-card,
  .article-card {
    overflow: hidden;
    background: var(--color-white);
  }

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

  .project-card img {
    height: clamp(270px, 55vw, 430px);
  }

  .article-card img {
    height: 270px;
  }

  .project-card > div {
    padding: 24px;
  }

  .article-card {
    padding-bottom: 26px;
  }

  .article-card h2,
  .article-card p,
  .article-card small {
    display: block;
    margin-inline: 22px;
  }

  .article-card small {
    margin-top: 18px;
  }

  .project-card small,
  .article-card small {
    color: var(--color-muted);
    font-size: 10px;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .project-card h2,
  .article-card h2 {
    margin-top: 9px;
    margin-bottom: 10px;
    color: var(--color-green-800);
    font-size: clamp(24px, 5vw, 30px);
  }

  .project-card p,
  .article-card p {
    color: var(--color-muted);
  }

  .project-card > div > span {
    display: inline-block;
    margin-top: 18px;
    color: var(--color-green-800);
    font-weight: 700;
  }

  .detail-hero {
    display: flex;
    align-items: flex-end;
    min-height: 70svh;
    padding-block: 150px 80px;
    color: var(--color-white);
    background:
      linear-gradient(90deg, rgb(0 44 32 / 88%), rgb(0 44 32 / 8%)),
      var(--detail-image) center / cover;
  }

  .detail-hero h1 {
    max-width: 1000px;
    margin: 10px 0;
    font-size: clamp(44px, 8vw, 96px);
  }

  .detail-hero p {
    max-width: 700px;
  }

  .container-reading {
    width: min(860px, calc(100% - 40px));
    margin-inline: auto;
  }

  .detail-content {
    padding-block: 64px 90px;
    color: #34433e;
    font-size: 17px;
    line-height: 1.9;
  }

  .detail-cta {
    margin-top: 40px;
  }

  .article-detail-header {
    padding-block: 125px 50px;
  }

  .article-detail-header h1 {
    color: var(--color-green-800);
    font-size: clamp(38px, 7vw, 72px);
  }

  .article-detail-header p:last-child {
    color: var(--color-muted);
    font-size: 17px;
  }

  .article-cover img {
    width: 100%;
    max-height: 700px;
    object-fit: cover;
  }

  .career-list {
    display: grid;
    gap: 1px;
    background: #d9e0dc;
  }

  .career-item {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 26px 20px;
    background: var(--color-white);
  }

  .career-item > span {
    color: #9bad3f;
    font-size: 30px;
  }

  .career-item h2 {
    margin: 0 0 7px;
    color: var(--color-green-800);
    font-size: 24px;
  }

  .career-item p {
    color: var(--color-muted);
  }

  .career-item > a {
    grid-column: 2;
    color: var(--color-green-800);
    font-weight: 700;
  }

  .inner-footer {
    padding-block: 50px;
    color: var(--color-white);
    background: var(--color-green-900);
  }

  .inner-footer strong {
    display: block;
    margin-bottom: 7px;
    font-size: 24px;
  }

  .inner-footer p {
    color: rgb(255 255 255 / 70%);
  }

  .inner-footer a {
    color: var(--color-accent);
  }

  .page-search {
    display: flex;
    max-width: 650px;
  }

  .page-search input {
    flex: 1;
    min-width: 0;
    padding: 14px;
    border: 1px solid rgb(6 73 54 / 22%);
  }

  .page-search button {
    padding-inline: 24px;
    color: var(--color-white);
    background: var(--color-green-800);
    cursor: pointer;
  }

  .search-results {
    display: grid;
    gap: 1px;
    margin: 20px 0 50px;
    background: #dce3df;
  }

  .search-results a {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 20px;
    background: var(--color-white);
  }

  .search-results strong {
    color: var(--color-green-800);
  }

  .search-results span {
    color: var(--color-muted);
  }

  .error-page {
    display: grid;
    place-items: center;
    min-height: 100vh;
    padding: 120px 24px;
    text-align: center;
  }

  .error-page span {
    color: var(--color-accent);
    font-size: 90px;
  }

  .error-page h1 {
    margin: 0;
    color: var(--color-green-800);
    font-size: 42px;
  }

  .error-page p {
    margin-bottom: 28px;
    color: var(--color-muted);
  }


  .news-archive {
    min-height: 70vh;
    color: #183f34;
    background: #fff;
  }

  .news-archive-hero {
    position: relative;
    min-height: clamp(250px, 43vw, 520px);
    margin-top: var(--header-height);
    overflow: hidden;
    background: #dfeae5;
  }

  .news-archive-hero img,
  .news-archive-hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .news-archive-hero img {
    object-fit: cover;
    filter: saturate(.82) contrast(.94);
  }

  .news-archive-hero__veil {
    background:
      linear-gradient(90deg, rgb(255 255 255 / 20%), transparent 54%),
      linear-gradient(0deg, rgb(255 255 255 / 42%), transparent 38%);
    pointer-events: none;
  }

  .news-archive-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    color: #72817b;
    font-size: 12px;
  }

  .news-archive-breadcrumb a {
    color: var(--color-green-800);
    font-weight: 700;
  }

  .news-archive-main {
    padding-block: clamp(54px, 7vw, 96px) clamp(76px, 9vw, 126px);
    background:
      radial-gradient(circle at 50% 5%, rgb(10 91 63 / 5%), transparent 34%),
      #f8faf9;
  }

  .news-archive-heading {
    display: grid;
    justify-items: center;
    gap: 24px;
    margin-bottom: clamp(38px, 5vw, 64px);
    text-align: center;
  }

  .news-archive-heading h1 {
    margin: 0;
    color: var(--color-green-800);
    font-size: clamp(40px, 6vw, 66px);
    line-height: 1.04;
    letter-spacing: -.045em;
  }

  .news-archive-filters {
    display: flex;
    max-width: 100%;
    gap: 8px;
    overflow-x: auto;
    padding: 2px;
    scrollbar-width: none;
  }

  .news-archive-filters::-webkit-scrollbar {
    display: none;
  }

  .news-archive-filters a {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 10px 17px;
    color: var(--color-green-800);
    border: 1px solid rgb(6 73 54 / 18%);
    border-radius: var(--radius-pill);
    background: #fff;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition:
      color .22s ease,
      border-color .22s ease,
      background-color .22s ease;
  }

  .news-archive-filters a:hover,
  .news-archive-filters a:focus-visible {
    color: var(--color-green-950);
    border-color: rgb(6 73 54 / 36%);
    background: #eef4f1;
  }

  .news-archive-filters a.is-active {
    color: var(--color-white);
    border-color: var(--color-green-800);
    background: var(--color-green-800);
  }

  .news-magazine-shell {
    display: grid;
    gap: 22px;
    align-items: start;
  }

  .news-side-ad {
    display: none;
  }

  .news-magazine {
    min-width: 0;
  }

  .news-magazine-featured,
  .news-magazine-featured__side,
  .news-magazine-grid {
    display: grid;
    gap: 16px;
  }

  .news-magazine-grid {
    margin-top: 16px;
  }

  .news-mag-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgb(6 73 54 / 9%);
    border-radius: 10px;
    background: #fff;
    transition: border-color .28s ease, box-shadow .28s ease;
  }

  .news-mag-card > a {
    display: block;
    height: 100%;
    color: inherit;
  }

  .news-mag-card__media {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #dfe8e4;
  }

  .news-mag-card__media img,
  .news-mag-card__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .news-mag-card__media img {
    object-fit: cover;
    transition: transform .62s var(--ease-out), filter .32s ease;
  }

  .news-mag-card__veil {
    background: linear-gradient(0deg, rgb(0 45 32 / 76%), transparent 60%);
    opacity: 0;
    transition: opacity .3s ease;
  }

  .news-mag-card__content {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .news-mag-card__date {
    align-self: start;
    display: grid;
    place-items: center;
    min-height: 62px;
    padding: 8px 5px;
    color: var(--color-white);
    background: var(--color-green-800);
    text-align: center;
  }

  .news-mag-card__date strong {
    font-size: 23px;
    line-height: 1;
  }

  .news-mag-card__date span {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: .04em;
  }

  .news-mag-card__copy {
    position: relative;
    min-width: 0;
    padding-right: 28px;
  }

  .news-mag-card__copy small {
    color: #83918c;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .news-mag-card__copy h2 {
    display: -webkit-box;
    margin: 8px 0 0;
    overflow: hidden;
    color: var(--color-green-800);
    font-size: clamp(17px, 2.5vw, 22px);
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .news-mag-card__copy p {
    display: -webkit-box;
    margin-top: 10px;
    overflow: hidden;
    color: #697872;
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .news-mag-card__copy > span {
    position: absolute;
    right: 0;
    bottom: 0;
    color: var(--color-green-800);
    font-size: 18px;
  }

  .news-mag-card--lead {
    position: relative;
    min-height: 480px;
    border: 0;
    background: var(--color-green-900);
  }

  .news-mag-card--lead > a,
  .news-mag-card--lead .news-mag-card__media {
    position: absolute;
    inset: 0;
  }

  .news-mag-card--lead .news-mag-card__veil {
    opacity: 1;
    background: linear-gradient(0deg, rgb(0 39 28 / 94%) 0%, rgb(0 39 28 / 36%) 58%, transparent 80%);
  }

  .news-mag-card--lead .news-mag-card__content {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    align-items: end;
    padding: 24px;
  }

  .news-mag-card--lead .news-mag-card__copy small,
  .news-mag-card--lead .news-mag-card__copy p {
    color: rgb(255 255 255 / 68%);
  }

  .news-mag-card--lead .news-mag-card__copy h2,
  .news-mag-card--lead .news-mag-card__copy > span {
    color: var(--color-white);
  }

  .news-mag-card--lead .news-mag-card__copy h2 {
    font-size: clamp(21px, 3.3vw, 31px);
    -webkit-line-clamp: 3;
  }

  .news-mag-card--compact > a {
    display: grid;
    grid-template-columns: minmax(120px, 42%) minmax(0, 1fr);
    min-height: 220px;
  }

  .news-mag-card--compact .news-mag-card__media {
    min-height: 220px;
  }

  .news-mag-card--compact .news-mag-card__content {
    grid-template-columns: 48px minmax(0, 1fr);
    align-content: center;
    gap: 12px;
    padding: 16px;
  }

  .news-mag-card--compact .news-mag-card__date {
    min-height: 56px;
  }

  .news-mag-card--compact .news-mag-card__copy {
    padding-right: 0;
  }

  .news-mag-card--compact .news-mag-card__copy h2 {
    font-size: clamp(15px, 1.95vw, 18px);
    -webkit-line-clamp: 4;
  }

  .news-mag-card--compact .news-mag-card__copy > span {
    display: none;
  }

  .news-mag-card--standard .news-mag-card__media {
    aspect-ratio: 16 / 10;
  }

  .news-mag-card:hover .news-mag-card__media img,
  .news-mag-card:focus-within .news-mag-card__media img {
    filter: saturate(1.05) brightness(1.02);
    transform: scale(1.025);
  }

  .news-mag-card:hover,
  .news-mag-card:focus-within {
    border-color: rgb(6 73 54 / 18%);
    box-shadow: 0 18px 42px rgb(6 73 54 / 8%);
  }

  .news-side-ad > a,
  .news-side-ad > div {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    background: #e4ece8;
  }

  .news-side-ad img {
    width: 100%;
    aspect-ratio: 2 / 5;
    object-fit: cover;
    transition: transform .55s var(--ease-out), filter .3s ease;
  }

  .news-side-ad a:hover img,
  .news-side-ad a:focus-visible img {
    filter: saturate(1.05);
    transform: scale(1.025);
  }

  .news-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: clamp(42px, 6vw, 72px);
  }

  .news-pagination a,
  .news-pagination__ellipsis {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: #597068;
    border: 1px solid rgb(6 73 54 / 10%);
    background: #fff;
    font-size: 11px;
    font-weight: 800;
  }

  .news-pagination a:hover,
  .news-pagination a:focus-visible {
    color: var(--color-green-800);
    border-color: rgb(6 73 54 / 28%);
    background: #eef4f1;
  }

  .news-pagination a.is-active {
    color: var(--color-white);
    border-color: var(--color-green-800);
    background: var(--color-green-800);
  }

  .news-pagination__arrow {
    border-radius: 50%;
    font-size: 20px !important;
  }

  .news-pagination__ellipsis {
    border-color: transparent;
    background: transparent;
  }

  .news-archive-empty {
    padding: clamp(50px, 8vw, 90px) 24px;
    text-align: center;
    border: 1px solid rgb(6 73 54 / 10%);
    background: #fff;
  }

  .news-archive-empty h2 {
    color: var(--color-green-800);
  }

  .news-archive-empty p {
    margin: 8px 0 22px;
    color: #6d7c76;
  }

  .news-archive-empty a {
    color: var(--color-green-800);
    font-weight: 800;
  }

  @media (min-width: 720px) {
    .news-magazine-featured {
      grid-template-columns: minmax(0, 1.3fr) minmax(290px, .7fr);
      align-items: stretch;
    }

    .news-magazine-featured.is-single {
      display: block;
    }

    .news-mag-card--lead {
      min-height: 540px;
    }

    .news-magazine-featured__side {
      grid-template-rows: repeat(2, minmax(0, 1fr));
    }

    .news-mag-card--compact > a {
      min-height: 0;
      height: 100%;
    }

    .news-mag-card--compact .news-mag-card__media {
      min-height: 0;
    }

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

  @media (min-width: 1100px) {
    .news-magazine-shell.has-side-banners {
      grid-template-columns:
        clamp(130px, 11vw, 190px)
        minmax(0, 1fr)
        clamp(130px, 11vw, 190px);
      gap: clamp(16px, 2vw, 28px);
    }

    .news-side-ad {
      position: sticky;
      top: calc(var(--header-height) + 24px);
      display: block;
    }

    .news-magazine-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (min-width: 1440px) {
    .news-mag-card--lead {
      min-height: 590px;
    }

    .news-mag-card--compact > a {
      grid-template-columns: minmax(150px, 44%) minmax(0, 1fr);
    }
  }



  .recruitment-page {
    color: #183f34;
    background: #fff;
  }

  .recruitment-hero {
    position: relative;
    min-height: clamp(280px, 44vw, 520px);
    margin-top: var(--header-height);
    overflow: hidden;
    background: #dfe9e4;
  }

  .recruitment-hero img,
  .recruitment-hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .recruitment-hero img {
    object-fit: cover;
    object-position: center;
    filter: saturate(.9) contrast(.96);
  }

  .recruitment-hero__veil {
    background:
      linear-gradient(90deg, rgb(255 255 255 / 14%), transparent 45%),
      linear-gradient(0deg, rgb(1 45 35 / 18%), transparent 48%);
    pointer-events: none;
  }

  .recruitment-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    max-width: 1360px;
    color: #72817b;
    font-size: 12px;
  }

  .recruitment-breadcrumb a {
    color: var(--color-green-800);
    font-weight: 700;
  }

  .recruitment-culture,
  .recruitment-benefits,
  .recruitment-jobs,
  .recruitment-application {
    padding-block: clamp(72px, 8vw, 116px);
  }

  .recruitment-culture > .site-container,
  .recruitment-benefits > .site-container,
  .recruitment-jobs > .site-container,
  .recruitment-application > .site-container {
    max-width: 1360px;
  }

  .recruitment-section-heading {
    display: grid;
    justify-items: center;
    max-width: 880px;
    margin-inline: auto;
    text-align: center;
  }

  .recruitment-section-heading--left {
    justify-items: start;
    margin-inline: 0;
    text-align: left;
  }

  .recruitment-section-heading .kicker {
    margin-bottom: 14px;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
  }

  .recruitment-section-heading h1,
  .recruitment-section-heading h2 {
    margin: 0;
    color: var(--color-green-800);
    font-size: clamp(36px, 5vw, 50px);
    line-height: 1.08;
  }

  .recruitment-section-heading > p:not(.kicker) {
    margin-top: 18px;
    color: #66766f;
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.78;
  }

  .recruitment-section-heading > p:not(.kicker) + p {
    margin-top: 10px;
  }

  .recruitment-culture__media {
    position: relative;
    margin-top: clamp(38px, 5vw, 68px);
    overflow: hidden;
    border-radius: 12px;
    background: #dce7e2;
  }

  .recruitment-culture__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(1 45 35 / 18%), transparent 42%);
    pointer-events: none;
  }

  .recruitment-culture__media img {
    width: 100%;
    aspect-ratio: 16 / 8;
    object-fit: cover;
  }

  .recruitment-benefits {
    background:
      radial-gradient(circle at 88% 8%, rgb(196 217 79 / 12%), transparent 26%),
      #f7faf8;
  }

  .recruitment-benefits__grid {
    display: grid;
    gap: 28px;
    margin-top: clamp(38px, 5vw, 62px);
  }

  .recruitment-benefit {
    position: relative;
    padding-top: 24px;
    border-top: 2px solid rgb(6 73 54 / 24%);
  }

  .recruitment-benefit::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 56px;
    height: 2px;
    background: var(--color-accent);
  }

  .recruitment-benefit > span {
    display: block;
    margin-bottom: 18px;
    color: #9bad3f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
  }

  .recruitment-benefit h3 {
    color: var(--color-green-800);
    font-size: clamp(21px, 2.6vw, 27px);
  }

  .recruitment-benefit p {
    margin-top: 12px;
    color: #687872;
    font-size: 15px;
    line-height: 1.72;
  }

  .recruitment-jobs {
    background: #fff;
  }

  .recruitment-filters {
    display: grid;
    gap: 12px;
    margin-top: clamp(36px, 5vw, 58px);
    padding: 18px;
    border: 1px solid rgb(6 73 54 / 10%);
    border-radius: 12px;
    background: #f7faf8;
  }

  .recruitment-filters label {
    display: grid;
    gap: 7px;
    min-width: 0;
    color: #61716a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
  }

  .recruitment-filters select {
    width: 100%;
    min-height: 48px;
    padding: 0 42px 0 14px;
    color: var(--color-green-800);
    border: 1px solid rgb(6 73 54 / 14%);
    border-radius: 8px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    cursor: pointer;
  }

  .recruitment-results-meta {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin: 24px 0 12px;
    color: #78867f;
    font-size: 13px;
  }

  .recruitment-results-meta strong {
    color: var(--color-green-800);
    font-size: 24px;
  }

  .recruitment-job-list {
    border-top: 1px solid rgb(6 73 54 / 14%);
  }

  .recruitment-job[hidden] {
    display: none;
  }

  .recruitment-job {
    border-bottom: 1px solid rgb(6 73 54 / 14%);
    background: #fff;
  }

  .recruitment-job__summary {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 14px;
    width: 100%;
    min-height: 104px;
    padding: 20px 4px;
    color: inherit;
    background: transparent;
    text-align: left;
    cursor: pointer;
  }

  .recruitment-job__summary:hover .recruitment-job__identity strong,
  .recruitment-job__summary:focus-visible .recruitment-job__identity strong {
    color: #0a664b;
  }

  .recruitment-job__number {
    color: #a1b13f;
    font-size: 14px;
    font-weight: 800;
  }

  .recruitment-job__identity {
    display: grid;
    gap: 8px;
    min-width: 0;
  }

  .recruitment-job__identity strong {
    color: var(--color-green-800);
    font-size: clamp(19px, 2.5vw, 25px);
    line-height: 1.25;
    transition: color .22s ease;
  }

  .recruitment-job__identity small,
  .recruitment-job__meta small {
    color: #75847e;
    font-size: 12px;
  }

  .recruitment-job__meta {
    display: none;
  }

  .recruitment-job__icon {
    position: relative;
    width: 34px;
    height: 34px;
    border: 1px solid rgb(6 73 54 / 18%);
    border-radius: 50%;
  }

  .recruitment-job__icon::before,
  .recruitment-job__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: var(--color-green-800);
    transform: translate(-50%, -50%);
    transition: transform .28s var(--ease-out), opacity .22s ease;
  }

  .recruitment-job__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .recruitment-job.is-open .recruitment-job__icon {
    border-color: var(--color-accent);
    background: var(--color-accent);
  }

  .recruitment-job.is-open .recruitment-job__icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  }

  .recruitment-job__detail {
    display: grid;
    gap: 26px;
    padding: 0 4px 34px 60px;
    animation: recruitment-detail-in .32s var(--ease-out) both;
  }

  .recruitment-job__detail[hidden] {
    display: none;
  }

  .recruitment-job__description h3 {
    margin-bottom: 12px;
    color: var(--color-green-800);
    font-size: 17px;
  }

  .recruitment-job__description div {
    color: #596b64;
    font-size: 15px;
    line-height: 1.82;
  }

  .recruitment-job__actions {
    align-self: start;
    padding: 20px;
    border-left: 3px solid var(--color-accent);
    background: #f4f8f6;
  }

  .recruitment-job__actions p {
    margin-bottom: 16px;
    color: #66766f;
    font-size: 14px;
  }

  .recruitment-job__actions .button {
    min-height: 46px;
  }

  .recruitment-empty {
    padding: 46px 24px;
    text-align: center;
    background: #f7faf8;
  }

  .recruitment-empty[hidden] {
    display: none;
  }

  .recruitment-empty h3 {
    color: var(--color-green-800);
    font-size: 24px;
  }

  .recruitment-empty p {
    margin-top: 8px;
    color: #6d7c76;
  }

  .recruitment-application {
    background:
      radial-gradient(circle at 88% 14%, rgb(196 217 79 / 13%), transparent 30%),
      #f4f7f5;
  }

  .recruitment-application__layout {
    display: grid;
    gap: 24px;
  }

  .recruitment-application__form {
    padding: clamp(24px, 4vw, 52px);
    border: 1px solid rgb(6 73 54 / 9%);
    border-radius: 12px;
    background: #fff;
  }

  .recruitment-form {
    margin-top: 32px;
  }

  .recruitment-form__grid {
    display: grid;
    gap: 16px;
  }

  .recruitment-form label {
    display: grid;
    gap: 8px;
    color: #38544b;
    font-size: 13px;
    font-weight: 700;
  }

  .recruitment-form input,
  .recruitment-form select,
  .recruitment-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px;
    color: var(--color-ink);
    border: 1px solid rgb(6 73 54 / 16%);
    border-radius: 7px;
    background: #fff;
    outline: 0;
    transition: border-color .22s ease, box-shadow .22s ease;
  }

  .recruitment-form textarea {
    min-height: 128px;
    resize: vertical;
  }

  .recruitment-form input:focus,
  .recruitment-form select:focus,
  .recruitment-form textarea:focus {
    border-color: rgb(6 73 54 / 48%);
    box-shadow: 0 0 0 3px rgb(196 217 79 / 22%);
  }

  .recruitment-file-field > span:first-child {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
  }

  .recruitment-file-field small {
    color: #7a8982;
    font-size: 11px;
    font-weight: 500;
  }

  .recruitment-file-field__control {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 76px;
    padding: 14px;
    overflow: hidden;
    border: 1px dashed rgb(6 73 54 / 28%);
    border-radius: 8px;
    background: #f7faf8;
    color: var(--color-green-800);
    cursor: pointer;
  }

  .recruitment-file-field__control input {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
  }

  .recruitment-file-field__control strong {
    font-size: 13px;
    text-align: center;
  }

  .recruitment-consent {
    grid-template-columns: 18px minmax(0, 1fr) !important;
    align-items: start;
    gap: 10px !important;
    margin-top: 18px;
    color: #65756e !important;
    font-size: 12px !important;
    font-weight: 500 !important;
  }

  .recruitment-consent input {
    width: 18px;
    height: 18px;
    min-height: 0;
    margin-top: 2px;
    padding: 0;
    accent-color: var(--color-green-800);
  }

  .recruitment-form__submit {
    min-width: 180px;
    min-height: 50px;
    margin-top: 24px;
  }

  .recruitment-application__media {
    min-height: 420px;
    overflow: hidden;
    border-radius: 12px;
    background: #dce7e2;
  }

  .recruitment-application__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  @keyframes recruitment-detail-in {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }

    to {
      opacity: 1;
      transform: none;
    }
  }

  @media (min-width: 720px) {
    .recruitment-benefits__grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .recruitment-form__grid .full {
      grid-column: 1 / -1;
    }

    .recruitment-job__summary {
      grid-template-columns: 54px minmax(0, 1fr) minmax(150px, .38fr) 40px;
      gap: 20px;
      padding-block: 24px;
    }

    .recruitment-job__meta {
      display: grid;
      gap: 5px;
    }

    .recruitment-job__meta strong {
      color: var(--color-green-800);
      font-size: 14px;
    }

    .recruitment-job__detail {
      grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
      padding-left: 74px;
    }
  }

  @media (min-width: 1024px) {
    .recruitment-benefits__grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: clamp(24px, 3vw, 42px);
    }

    .recruitment-filters {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      padding: 22px;
    }

    .recruitment-application__layout {
      grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
      align-items: stretch;
      gap: clamp(20px, 3vw, 38px);
    }

    .recruitment-application__media {
      min-height: 100%;
    }
  }

  .contact-page {
    color: #183f34;
    background: #fff;
  }

  .contact-page-hero {
    position: relative;
    min-height: clamp(300px, 52vw, 560px);
    margin-top: var(--header-height);
    overflow: hidden;
    background: #dfeae5;
  }

  .contact-page-hero img,
  .contact-page-hero__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .contact-page-hero img {
    object-fit: cover;
    filter: saturate(.84) contrast(.95);
  }

  .contact-page-hero__veil {
    background:
      linear-gradient(90deg, rgb(255 255 255 / 22%), transparent 58%),
      linear-gradient(0deg, rgb(255 255 255 / 44%), transparent 42%);
    pointer-events: none;
  }

  .contact-page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    color: #72817b;
    font-size: 12px;
  }

  .contact-page-breadcrumb a {
    color: var(--color-green-800);
    font-weight: 700;
  }

  .contact-page-info {
    padding-block: clamp(62px, 8vw, 112px);
    background:
      radial-gradient(circle at 86% 8%, rgb(196 217 79 / 12%), transparent 24%),
      #fff;
  }

  .contact-page-heading {
    max-width: 820px;
  }

  .contact-page-heading h1,
  .contact-page-offices-heading h2,
  .contact-page-map__heading h2,
  .contact-page-form-heading h2 {
    color: var(--color-green-800);
    letter-spacing: -.035em;
  }

  .contact-page-heading h1 {
    margin: 10px 0 18px;
    font-size: clamp(38px, 7vw, 58px);
    line-height: 1.04;
  }

  .contact-page-heading > p:last-child {
    color: #687872;
    font-size: clamp(15px, 2.2vw, 17px);
    line-height: 1.78;
  }

  .contact-page-direct {
    display: grid;
    gap: 1px;
    margin-top: clamp(34px, 5vw, 58px);
    overflow: hidden;
    border: 1px solid rgb(6 73 54 / 10%);
    border-radius: 12px;
    background: rgb(6 73 54 / 10%);
  }

  .contact-page-direct a {
    display: grid;
    gap: 7px;
    padding: clamp(22px, 4vw, 34px);
    color: var(--color-green-800);
    background: #f8faf9;
    transition: background-color .24s ease, color .24s ease;
  }

  .contact-page-direct a:hover,
  .contact-page-direct a:focus-visible {
    color: var(--color-green-950);
    background: #eef5f1;
  }

  .contact-page-direct span {
    color: #819089;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .contact-page-direct strong {
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.2;
    word-break: break-word;
  }

  .contact-page-offices-heading,
  .contact-page-map__heading {
    display: grid;
    gap: 18px;
    margin-top: clamp(64px, 9vw, 110px);
    margin-bottom: clamp(28px, 4vw, 44px);
  }

  .contact-page-offices-heading h2,
  .contact-page-map__heading h2 {
    margin: 8px 0 0;
    font-size: clamp(30px, 5vw, 46px);
    line-height: 1.08;
  }

  .contact-page-offices-heading > p,
  .contact-page-map__heading > p {
    max-width: 620px;
    color: #6e7d77;
    line-height: 1.72;
  }

  .contact-page-offices {
    display: grid;
    gap: 14px;
  }

  .contact-page-offices.is-empty {
    display: block;
  }

  .contact-page-offices__empty {
    padding: 28px;
    color: #687872;
    border: 1px solid rgb(6 73 54 / 10%);
    background: #f7faf8;
    text-align: center;
  }

  .contact-page-office {
    position: relative;
    min-width: 0;
    padding: clamp(22px, 4vw, 32px);
    border-top: 2px solid var(--color-accent);
    background: #f7faf8;
  }

  .contact-page-office > span {
    display: inline-flex;
    margin-bottom: 20px;
    color: #9aaa45;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
  }

  .contact-page-office h3 {
    margin: 0 0 12px;
    color: var(--color-green-800);
    font-size: clamp(20px, 3vw, 25px);
    line-height: 1.25;
  }

  .contact-page-office > p {
    min-height: 52px;
    color: #65756f;
    line-height: 1.65;
  }

  .contact-page-office > div {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    margin-top: 22px;
  }

  .contact-page-office a {
    color: var(--color-green-800);
    font-size: 12px;
    font-weight: 800;
  }

  .contact-page-map {
    padding-block: clamp(64px, 8vw, 106px);
    background:
      linear-gradient(135deg, rgb(6 73 54 / 5%), transparent 54%),
      #f0f5f2;
  }

  .contact-page-map__heading {
    margin-top: 0;
  }

  .contact-page-map__frame {
    position: relative;
    min-height: clamp(330px, 56vw, 650px);
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #dce8e2;
    box-shadow: 0 26px 70px rgb(6 73 54 / 10%);
  }

  .contact-page-map__frame iframe,
  .contact-page-map__frame img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    border: 0;
    object-fit: cover;
  }

  .contact-page-map__frame > a {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 17px;
    color: #fff;
    border: 1px solid rgb(255 255 255 / 22%);
    border-radius: var(--radius-pill);
    background: rgb(4 58 43 / 90%);
    backdrop-filter: blur(12px);
    font-size: 12px;
    font-weight: 800;
  }

  .contact-page-map__frame > a span {
    color: var(--color-accent);
    font-size: 17px;
  }

  .contact-page-form-section {
    padding-block: clamp(70px, 9vw, 120px);
    color: #fff;
    background:
      radial-gradient(circle at 10% 0%, rgb(196 217 79 / 15%), transparent 26%),
      linear-gradient(145deg, #073f31, #084c39 65%, #06382c);
  }

  .contact-page-form-layout {
    display: grid;
    gap: clamp(34px, 6vw, 74px);
  }

  .contact-page-form-heading {
    align-self: start;
    max-width: 540px;
  }

  .contact-page-form-heading h2 {
    margin: 10px 0 18px;
    color: #fff;
    font-size: clamp(38px, 7vw, 58px);
    line-height: 1.04;
  }

  .contact-page-form-heading > p:not(.kicker) {
    color: rgb(255 255 255 / 72%);
    font-size: 16px;
    line-height: 1.75;
  }

  .contact-page-form-heading small {
    display: block;
    margin-top: 18px;
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 700;
  }

  .contact-page-form {
    display: grid;
    gap: 16px;
    padding: clamp(22px, 5vw, 42px);
    border: 1px solid rgb(255 255 255 / 14%);
    border-radius: 16px;
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 30px 80px rgb(0 0 0 / 18%);
  }

  .contact-page-form label {
    display: grid;
    gap: 8px;
    min-width: 0;
    color: var(--color-green-800);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
  }

  .contact-page-form input,
  .contact-page-form textarea {
    width: 100%;
    min-width: 0;
    color: #183f34;
    border: 1px solid rgb(6 73 54 / 16%);
    background: #f8faf9;
    font: inherit;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
  }

  .contact-page-form input {
    min-height: 48px;
    padding: 0 17px;
    border-radius: var(--radius-pill);
  }

  .contact-page-form textarea {
    min-height: 150px;
    padding: 16px 17px;
    border-radius: 18px;
    resize: vertical;
  }

  .contact-page-form input:focus,
  .contact-page-form textarea:focus {
    border-color: rgb(10 113 78 / 54%);
    background: #fff;
    box-shadow: 0 0 0 4px rgb(10 113 78 / 9%);
  }

  .contact-page-form__actions {
    display: grid;
    gap: 14px;
    align-items: center;
    margin-top: 6px;
  }

  .contact-page-form__actions .button {
    width: 100%;
    min-height: 50px;
  }

  .contact-page-form__actions > p {
    margin: 0;
    color: #718079;
    font-size: 11px;
    line-height: 1.55;
  }

  @media (min-width: 680px) {
    .contact-page-direct {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

    .contact-page-form__full {
      grid-column: 1 / -1;
    }

    .contact-page-form__actions {
      grid-template-columns: auto minmax(0, 1fr);
    }

    .contact-page-form__actions .button {
      width: auto;
      min-width: 190px;
    }
  }

  @media (min-width: 900px) {
    .contact-page-offices-heading,
    .contact-page-map__heading {
      grid-template-columns: minmax(300px, .85fr) minmax(360px, 1.15fr);
      align-items: end;
    }

    .contact-page-offices-heading > p,
    .contact-page-map__heading > p {
      justify-self: end;
    }

    .contact-page-offices {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (min-width: 1024px) {
    .contact-page-form-layout {
      grid-template-columns: minmax(300px, .72fr) minmax(560px, 1.28fr);
      align-items: start;
    }

    .contact-page-form-heading {
      position: sticky;
      top: calc(var(--header-height) + 42px);
    }
  }

  .about-page {
    color: #183f34;
    background: #fff;
  }

  .about-page-hero {
    position: relative;
    min-height: clamp(420px, 62vw, 620px);
    margin-top: var(--header-height);
    overflow: hidden;
    background: #e9f1ed;
  }

  .about-page-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.82) contrast(.92);
  }

  .about-page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(90deg, rgb(255 255 255 / 42%), transparent 48%),
      linear-gradient(0deg, rgb(255 255 255 / 58%), transparent 38%);
    pointer-events: none;
  }

  .about-page-hero__mark {
    position: absolute;
    z-index: 1;
    top: 4%;
    right: 4%;
    color: rgb(20 116 75 / 76%);
    font-size: clamp(220px, 42vw, 620px);
    font-weight: 900;
    line-height: .8;
    letter-spacing: -.1em;
    pointer-events: none;
  }

  .about-page-hero__cloud {
    position: absolute;
    z-index: 2;
    right: -8%;
    bottom: -72px;
    left: -8%;
    height: 150px;
    border-radius: 50%;
    background: rgb(255 255 255 / 94%);
    filter: blur(18px);
    pointer-events: none;
  }

  .about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 58px;
    color: #72817b;
    font-size: 12px;
  }

  .about-breadcrumb a {
    color: var(--color-green-800);
    font-weight: 700;
  }

  .about-local-nav {
    position: sticky;
    z-index: 70;
    top: var(--header-height);
    border-block: 1px solid rgb(6 73 54 / 9%);
    background: rgb(255 255 255 / 92%);
    box-shadow: 0 10px 30px rgb(6 73 54 / 5%);
    backdrop-filter: blur(14px);
  }

  .about-local-nav .site-container {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding-block: 10px;
    scrollbar-width: none;
  }

  .about-local-nav .site-container::-webkit-scrollbar {
    display: none;
  }

  .about-local-nav a {
    position: relative;
    flex: 0 0 auto;
    min-height: 38px;
    padding: 11px 15px;
    color: #63736d;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: color .22s ease, background-color .22s ease;
  }

  .about-local-nav a:hover,
  .about-local-nav a:focus-visible {
    color: var(--color-green-800);
    background: #eef5f1;
  }

  .about-local-nav a.is-active {
    color: var(--color-white);
    background: var(--color-green-800);
  }

  .about-overview,
  .about-partners,
  .about-social {
    scroll-margin-top: calc(var(--header-height) + 68px);
  }

  .about-overview {
    padding-block: clamp(72px, 9vw, 118px);
    background:
      radial-gradient(circle at 85% 70%, rgb(18 113 75 / 6%), transparent 34%),
      #fff;
  }

  .about-intro {
    width: min(920px, 100%);
    margin-inline: auto;
    text-align: center;
  }

  .about-intro .kicker,
  .about-section-heading .kicker,
  .about-values .kicker,
  .about-footer .kicker {
    color: #a87a31;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .about-intro h1,
  .about-section-heading h2 {
    margin: 12px 0 24px;
    color: var(--color-green-800);
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1.06;
    letter-spacing: -.045em;
  }

  .about-intro blockquote {
    position: relative;
    margin: 0;
    padding: 26px 0 0;
    color: #53645e;
    font-size: clamp(16px, 2.1vw, 20px);
    line-height: 1.8;
  }

  .about-intro blockquote > span {
    position: absolute;
    top: -10px;
    left: 50%;
    color: var(--color-green-700);
    font-family: Georgia, serif;
    font-size: 74px;
    line-height: 1;
    opacity: .28;
    transform: translateX(-50%);
  }

  .about-company-card {
    position: relative;
    display: grid;
    margin-top: clamp(56px, 8vw, 100px);
    overflow: hidden;
    color: var(--color-white);
    border-radius: 18px;
    background:
      radial-gradient(circle at 95% 15%, rgb(196 217 79 / 14%), transparent 32%),
      var(--color-green-800);
  }

  .about-company-card__copy {
    position: relative;
    z-index: 1;
    padding: clamp(30px, 6vw, 66px);
  }

  .about-company-card__copy .kicker {
    color: var(--color-accent);
  }

  .about-company-card h2 {
    margin: 10px 0 20px;
    color: var(--color-accent);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.05;
  }

  .about-company-card__copy > p:last-child {
    max-width: 680px;
    color: rgb(255 255 255 / 79%);
    font-size: clamp(15px, 2vw, 17px);
    line-height: 1.8;
  }

  .about-company-card__media {
    position: relative;
    min-height: 340px;
    margin: 0;
    overflow: hidden;
  }

  .about-company-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgb(0 57 41 / 32%), transparent 54%);
    pointer-events: none;
  }

  .about-company-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .about-culture {
    scroll-margin-top: calc(var(--header-height) + 68px);
    padding-block: clamp(76px, 9vw, 124px);
    color: var(--color-white);
    background:
      radial-gradient(circle at 80% 12%, rgb(196 217 79 / 10%), transparent 26%),
      var(--color-green-900);
  }

  .about-section-heading {
    max-width: 820px;
    margin-bottom: clamp(34px, 5vw, 60px);
  }

  .about-section-heading--light h2 {
    color: var(--color-accent);
  }

  .about-section-heading--center {
    margin-inline: auto;
    text-align: center;
  }

  .about-section-heading--center > p:last-child {
    color: #6d7b76;
    font-size: 16px;
    line-height: 1.75;
  }

  .about-principles {
    display: grid;
    gap: 14px;
  }

  .about-principle-card {
    min-height: 250px;
    padding: 28px;
    color: #29483f;
    border-radius: 12px;
    background: #fff;
  }

  .about-principle-card > span {
    display: block;
    padding-bottom: 18px;
    color: #9eae4b;
    border-bottom: 1px solid rgb(6 73 54 / 13%);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
  }

  .about-principle-card h3 {
    margin: 24px 0 12px;
    color: var(--color-green-800);
    font-size: 25px;
  }

  .about-principle-card p {
    color: #66766f;
    font-size: 15px;
    line-height: 1.72;
  }

  .about-values {
    position: relative;
    min-height: 600px;
    margin-top: clamp(42px, 6vw, 72px);
    overflow: hidden;
    border-radius: 16px;
  }

  .about-values > img,
  .about-values__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .about-values > img {
    object-fit: cover;
  }

  .about-values__veil {
    background:
      linear-gradient(90deg, rgb(0 55 39 / 92%), rgb(0 55 39 / 64%)),
      linear-gradient(0deg, rgb(0 42 30 / 74%), transparent 58%);
  }

  .about-values__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 600px;
    padding: clamp(30px, 5vw, 58px);
  }

  .about-values .kicker {
    color: var(--color-accent);
  }

  .about-values__grid {
    display: grid;
    gap: 26px;
    margin-top: 26px;
  }

  .about-values__grid article {
    padding-top: 18px;
    border-top: 1px solid rgb(255 255 255 / 25%);
  }

  .about-values__grid article > span {
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 800;
  }

  .about-values__grid h3 {
    margin: 8px 0 10px;
    font-size: 24px;
  }

  .about-values__grid p {
    color: rgb(255 255 255 / 70%);
    font-size: 14px;
    line-height: 1.65;
  }

  .about-partners {
    padding-block: clamp(76px, 9vw, 122px);
    background:
      radial-gradient(circle at 50% 100%, rgb(13 99 65 / 7%), transparent 42%),
      #f8faf9;
  }

  .about-partner-slider {
    overflow: hidden;
  }

  .about-partner-slider__viewport {
    overflow: hidden;
  }

  .about-partner-slider__track {
    display: flex;
    gap: 14px;
    will-change: transform;
    transition: transform .65s cubic-bezier(.22, .61, .36, 1);
  }

  .about-partner-logo {
    flex: 0 0 calc((100% - 14px) / 2);
    min-width: 0;
  }

  .about-partner-logo > a,
  .about-partner-logo > div {
    display: grid;
    place-items: center;
    min-height: 126px;
    padding: 20px;
    border: 1px solid rgb(6 73 54 / 10%);
    border-radius: 10px;
    background: #fff;
    transition: border-color .25s ease, box-shadow .25s ease;
  }

  .about-partner-logo > a:hover,
  .about-partner-logo > a:focus-visible {
    border-color: rgb(6 73 54 / 24%);
    box-shadow: 0 14px 34px rgb(6 73 54 / 8%);
  }

  .about-partner-logo img {
    width: 100%;
    max-width: 170px;
    max-height: 64px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .72;
    transition: filter .25s ease, opacity .25s ease;
  }

  .about-partner-logo a:hover img,
  .about-partner-logo a:focus-visible img {
    filter: none;
    opacity: 1;
  }

  .about-partner-logo strong {
    color: #486158;
    font-size: 15px;
    letter-spacing: .06em;
    text-align: center;
  }

  .about-partner-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
  }

  .about-partner-slider__dots button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 1px solid #779188;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background-color .22s ease, border-color .22s ease, transform .22s ease;
  }

  .about-partner-slider__dots button.is-active {
    border-color: var(--color-green-800);
    background: var(--color-green-800);
    transform: scale(1.2);
  }

  .about-social {
    padding-block: clamp(76px, 9vw, 122px);
    background: #fff;
  }

  .about-social-grid {
    display: grid;
    gap: 18px;
  }

  .about-social-card {
    overflow: hidden;
    border-radius: 12px;
    background: var(--color-green-900);
  }

  .about-social-card a {
    position: relative;
    display: block;
    min-height: 460px;
    overflow: hidden;
    color: var(--color-white);
  }

  .about-social-card img,
  .about-social-card__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .about-social-card img {
    object-fit: cover;
    transition: transform .65s var(--ease-out), filter .35s ease;
  }

  .about-social-card__veil {
    background: linear-gradient(0deg, rgb(0 42 30 / 92%) 0%, rgb(0 42 30 / 42%) 48%, transparent 76%);
  }

  .about-social-card a > div {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .about-social-card small {
    color: rgb(255 255 255 / 68%);
    font-size: 11px;
  }

  .about-social-card h3 {
    max-width: 460px;
    margin: 10px 0 20px;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
  }

  .about-social-card a > div > span {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-left: auto;
    border: 1px solid rgb(255 255 255 / 42%);
    border-radius: 50%;
  }

  .about-social-card a:hover img,
  .about-social-card a:focus-visible img {
    filter: saturate(1.08) brightness(1.03);
    transform: scale(1.035);
  }

  .about-footer {
    padding-top: clamp(66px, 8vw, 108px);
    color: var(--color-white);
    background:
      radial-gradient(circle at 90% 0%, rgb(196 217 79 / 9%), transparent 28%),
      var(--color-green-950);
  }

  .about-footer__grid {
    display: grid;
    gap: 42px;
  }

  .about-footer h2 {
    margin: 12px 0 10px;
    color: var(--color-accent);
    font-size: clamp(30px, 5vw, 48px);
  }

  .about-footer section > p:not(.kicker),
  .about-footer__offices article p {
    color: rgb(255 255 255 / 66%);
    line-height: 1.7;
  }

  .about-footer__contacts {
    display: grid;
    gap: 8px;
    margin-top: 24px;
  }

  .about-footer__contacts a {
    color: var(--color-white);
    font-size: 18px;
    font-weight: 700;
  }

  .about-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-top: 24px;
  }

  .about-footer__socials a,
  .about-footer__offices a,
  .about-footer__bottom a {
    color: var(--color-accent);
    font-size: 12px;
    font-weight: 700;
  }

  .about-footer__offices {
    display: grid;
    gap: 20px;
  }

  .about-footer__offices article {
    padding-top: 18px;
    border-top: 1px solid rgb(255 255 255 / 14%);
  }

  .about-footer__offices h3 {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .about-footer__offices article a + a {
    margin-left: 12px;
  }

  .about-footer__map {
    min-height: 340px;
    margin: 0;
    overflow: hidden;
    border-radius: 14px;
    background: #0c5b45;
  }

  .about-footer__map img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    opacity: .74;
  }

  .about-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 56px;
    padding-block: 22px;
    border-top: 1px solid rgb(255 255 255 / 12%);
    color: rgb(255 255 255 / 62%);
    font-size: 12px;
  }

  .about-footer__bottom p {
    margin: 0;
  }

  .about-footer__bottom strong {
    color: var(--color-white);
  }

  .about-footer__bottom > div {
    display: flex;
    gap: 18px;
  }

  @media (min-width: 720px) {

    .about-company-card {
      grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
      align-items: stretch;
    }

    .about-company-card__media {
      min-height: 520px;
    }

    .about-principles {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .about-partner-logo {
      flex-basis: calc((100% - 28px) / 3);
    }

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

    .about-footer__grid {
      grid-template-columns: minmax(240px, .8fr) minmax(280px, 1fr);
    }

    .about-footer__map {
      grid-column: 1 / -1;
    }
    .project-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .career-item {
      grid-template-columns: 72px minmax(0, 1fr) auto;
      padding: 32px;
    }

    .career-item > a {
      grid-column: auto;
    }
  }

  @media (min-width: 1100px) {

    .about-page-hero {
      min-height: 570px;
    }

    .about-local-nav .site-container {
      justify-content: center;
    }

    .about-company-card__copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .about-values__grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .about-values__grid article {
      min-height: 230px;
      padding-right: 24px;
    }

    .about-partner-logo {
      flex-basis: calc((100% - 56px) / 5);
    }

    .about-social-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .about-footer__grid {
      grid-template-columns: minmax(240px, .72fr) minmax(280px, .86fr) minmax(420px, 1.42fr);
      align-items: start;
    }

    .about-footer__map {
      grid-column: auto;
      min-height: 520px;
    }

    .about-footer__map img {
      min-height: 520px;
    }
    .article-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }
}
