/**
 * Green Phoenix Mills
 * About Us page
 */

/* =========================================================
   ABOUT PAGE FOUNDATION
   ========================================================= */

.gpm-about-page {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #fefefe;
    color: #052d18;
}

.gpm-about-page *,
.gpm-about-page *::before,
.gpm-about-page *::after {
    box-sizing: border-box;
}

.gpm-about-page img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.gpm-about-page h1,
.gpm-about-page h2,
.gpm-about-page h3,
.gpm-about-page p {
    margin-top: 0;
}

.gpm-about-page a {
    text-decoration: none;
}

/* =========================================================
   SHARED LAYOUT
   ========================================================= */

.gpm-about-container {
    width: min(100% - 48px, 1320px);
    margin-inline: auto;
}

.gpm-about-section {
    position: relative;
    padding: 120px 0;
}

.gpm-about-section--light {
    background: #fefefe;
}

.gpm-about-section--soft {
    background: #f3f7f3;
}

.gpm-about-section--dark {
    background: #052d18;
    color: #ffffff;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */

.gpm-about-kicker {
    display: block;
    margin-bottom: 22px;
    color: #347528;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gpm-about-section--dark .gpm-about-kicker {
    color: #92ba9c;
}

.gpm-about-heading {
    max-width: 850px;
    margin-bottom: 32px;
    color: #052d18;
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.gpm-about-section--dark .gpm-about-heading {
    color: #ffffff;
}

.gpm-about-copy {
    max-width: 680px;
    color: #425148;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.gpm-about-section--dark .gpm-about-copy {
    color: rgba(255, 255, 255, 0.76);
}

/* =========================================================
   SHARED BUTTONS
   ========================================================= */

.gpm-about-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 38px;
}

.gpm-about-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border: 1px solid transparent;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition:
        background-color 180ms ease,
        border-color 180ms ease,
        color 180ms ease;
}

.gpm-about-button--primary {
    border-color: #094a28;
    background: #094a28;
    color: #ffffff;
}

.gpm-about-button--primary:hover,
.gpm-about-button--primary:focus-visible {
    border-color: #347528;
    background: #347528;
    color: #ffffff;
}

.gpm-about-button--outline {
    border-color: #094a28;
    background: transparent;
    color: #094a28;
}

.gpm-about-button--outline:hover,
.gpm-about-button--outline:focus-visible {
    background: #094a28;
    color: #ffffff;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1024px) {
    .gpm-about-section {
        padding: 90px 0;
    }
}

@media (max-width: 767px) {
    .gpm-about-container {
        width: min(100% - 32px, 1320px);
    }

    .gpm-about-section {
        padding: 72px 0;
    }

    .gpm-about-heading {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
    }

    .gpm-about-copy {
        font-size: 1rem;
        line-height: 1.7;
    }

    .gpm-about-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .gpm-about-button {
        width: 100%;
    }
}


/* =========================================================
   ABOUT HERO
   ========================================================= */

.gpm-about-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url('../images/about/about-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gpm-about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5,45,24,.88) 0%,
            rgba(5,45,24,.78) 35%,
            rgba(5,45,24,.45) 100%
        );
}

.gpm-about-hero .gpm-about-container {
    position: relative;
    z-index: 2;
}

.gpm-about-hero-content {
    max-width: 760px;
    color: #ffffff;
}

.gpm-about-hero .gpm-about-kicker {
    color: #92BA9C;
    margin-bottom: 24px;
}

.gpm-about-hero-title {
    margin-bottom: 30px;

    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;

    color: #ffffff;
}

.gpm-about-hero-text {
    max-width: 650px;

    font-size: 1.15rem;
    line-height: 1.9;

    color: rgba(255,255,255,.88);
}

.gpm-about-hero .gpm-about-actions {
    margin-top: 45px;
}

.gpm-about-hero .gpm-about-button--primary {
    background: #79A72C;
    border-color: #79A72C;
    color: #ffffff;
}

.gpm-about-hero .gpm-about-button--primary:hover {
    background: #347528;
    border-color: #347528;
}

.gpm-about-hero .gpm-about-button--outline {
    border-color: rgba(255,255,255,.4);
    color: #ffffff;
}

.gpm-about-hero .gpm-about-button--outline:hover {
    background: rgba(255,255,255,.12);
    border-color: #ffffff;
}

@media (max-width: 991px) {

    .gpm-about-hero {
        min-height: 80vh;
    }

    .gpm-about-hero-title {
        font-size: clamp(3rem, 9vw, 4.5rem);
    }

    .gpm-about-hero-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 767px) {

    .gpm-about-hero {
        min-height: 75vh;
    }

    .gpm-about-hero-title {
        font-size: 2.8rem;
        line-height: 1.05;
    }

    .gpm-about-hero-text {
        font-size: 1rem;
        line-height: 1.75;
    }
}
/* =========================================================
   COMPANY STORY
   ========================================================= */

.gpm-story-section {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: #fefefe;
}

.gpm-story-container {
    width: min(calc(100% - 48px), 1380px);
    margin-inline: auto;
}

/* Image */

.gpm-story-media {
    position: relative;
    width: 100%;
    margin-bottom: 88px;
    overflow: hidden;
    background: #e8eee9;
}

.gpm-story-media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            transparent 70%,
            rgba(5, 45, 24, 0.1) 100%
        );
}

.gpm-story-image {
    display: block;
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center;
    transition: transform 700ms ease;
}

.gpm-story-media:hover .gpm-story-image {
    transform: scale(1.015);
}

/* Content layout */

.gpm-story-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
    gap: clamp(70px, 9vw, 150px);
    align-items: start;
}

.gpm-story-heading-column,
.gpm-story-copy-column {
    min-width: 0;
}

/* Label */

.gpm-story-label {
    display: block;
    margin-bottom: 24px;
    color: #347528;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

/* Heading */

.gpm-story-title {
    max-width: 880px;
    margin: 0;
    color: #052d18;
    font-size: clamp(2.7rem, 4.5vw, 5.1rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

/* Paragraphs */

.gpm-story-text {
    margin: 0 0 25px;
    color: #4c5a51;
    font-size: 1.025rem;
    font-weight: 400;
    line-height: 1.82;
}

.gpm-story-text--lead {
    margin-bottom: 30px;
    color: #1c3426;
    font-size: 1.2rem;
    line-height: 1.7;
}

.gpm-story-text:last-of-type {
    margin-bottom: 0;
}

/* Link */

.gpm-story-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 38px;
    padding-bottom: 8px;
    border-bottom: 1px solid #79a72c;
    color: #094a28;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 180ms ease,
        border-color 180ms ease;
}

.gpm-story-link:hover,
.gpm-story-link:focus-visible {
    border-color: #094a28;
    color: #347528;
}

.gpm-story-link-arrow {
    display: inline-block;
    font-size: 1.2rem;
    line-height: 1;
    transition: transform 180ms ease;
}

.gpm-story-link:hover .gpm-story-link-arrow,
.gpm-story-link:focus-visible .gpm-story-link-arrow {
    transform: translateX(5px);
}

/* =========================================================
   COMPANY STORY RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .gpm-story-section {
        padding: 110px 0;
    }

    .gpm-story-image {
        height: 560px;
    }

    .gpm-story-media {
        margin-bottom: 68px;
    }

    .gpm-story-layout {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
        gap: 65px;
    }

    .gpm-story-title {
        font-size: clamp(2.7rem, 5vw, 4.2rem);
    }
}

@media (max-width: 900px) {

    .gpm-story-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .gpm-story-heading-column {
        max-width: 800px;
    }

    .gpm-story-copy-column {
        max-width: 680px;
        margin-left: auto;
    }

    .gpm-story-image {
        height: 500px;
    }
}

@media (max-width: 767px) {

    .gpm-story-section {
        padding: 78px 0;
    }

    .gpm-story-container {
        width: min(calc(100% - 32px), 1380px);
    }

    .gpm-story-media {
        margin-bottom: 48px;
    }

    .gpm-story-image {
        height: 340px;
    }

    .gpm-story-layout {
        gap: 35px;
    }

    .gpm-story-label {
        margin-bottom: 18px;
        font-size: 0.7rem;
    }

    .gpm-story-title {
        font-size: clamp(2.3rem, 10vw, 3.3rem);
        line-height: 1.05;
        letter-spacing: -0.04em;
    }

    .gpm-story-copy-column {
        margin-left: 0;
    }

    .gpm-story-text {
        font-size: 1rem;
        line-height: 1.72;
    }

    .gpm-story-text--lead {
        font-size: 1.1rem;
        line-height: 1.65;
    }

    .gpm-story-link {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {

    .gpm-story-image {
        height: 280px;
    }

    .gpm-story-title {
        font-size: 2.25rem;
    }
}

/* =========================================================
   MANUFACTURING PHILOSOPHY
   ========================================================= */

.gpm-philosophy-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    background: #052d18;
    color: #ffffff;
}

.gpm-philosophy-section::before {
    position: absolute;
    top: -220px;
    right: -180px;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(146, 186, 156, 0.12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.gpm-philosophy-section::after {
    position: absolute;
    right: 110px;
    bottom: -310px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(146, 186, 156, 0.08);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.gpm-philosophy-container {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 48px), 1380px);
    margin-inline: auto;
}

/* Intro */

.gpm-philosophy-intro {
    display: grid;
    grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1.25fr);
    column-gap: clamp(60px, 9vw, 150px);
    row-gap: 30px;
    align-items: start;
    margin-bottom: 110px;
}

.gpm-philosophy-label {
    display: block;
    padding-top: 12px;
    color: #92ba9c;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gpm-philosophy-title {
    max-width: 1040px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(3rem, 5.4vw, 6.4rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.gpm-philosophy-description {
    grid-column: 2;
    max-width: 690px;
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Principles */

.gpm-philosophy-principles {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.gpm-philosophy-item {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 38px;
    align-items: start;
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.gpm-philosophy-number {
    color: #79a72c;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.12em;
}

.gpm-philosophy-item-content {
    display: grid;
    grid-template-columns: minmax(220px, 0.55fr) minmax(300px, 0.9fr);
    gap: clamp(40px, 8vw, 130px);
    align-items: start;
}

.gpm-philosophy-item-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(1.8rem, 2.7vw, 3rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.gpm-philosophy-item-text {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.8;
}

/* Hover detail */

.gpm-philosophy-item {
    transition:
        padding-left 220ms ease,
        background-color 220ms ease;
}

.gpm-philosophy-item:hover {
    padding-left: 18px;
    background: rgba(255, 255, 255, 0.025);
}

/* =========================================================
   MANUFACTURING PHILOSOPHY RESPONSIVE
   ========================================================= */

@media (max-width: 1100px) {

    .gpm-philosophy-section {
        padding: 115px 0;
    }

    .gpm-philosophy-intro {
        grid-template-columns: 160px minmax(0, 1fr);
        column-gap: 60px;
        margin-bottom: 85px;
    }

    .gpm-philosophy-title {
        font-size: clamp(3rem, 6vw, 5.2rem);
    }

    .gpm-philosophy-item {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .gpm-philosophy-item-content {
        gap: 55px;
    }
}

@media (max-width: 900px) {

    .gpm-philosophy-intro {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gpm-philosophy-description {
        grid-column: auto;
    }

    .gpm-philosophy-label {
        padding-top: 0;
    }

    .gpm-philosophy-item {
        grid-template-columns: 70px minmax(0, 1fr);
    }

    .gpm-philosophy-item-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 767px) {

    .gpm-philosophy-section {
        padding: 82px 0;
    }

    .gpm-philosophy-container {
        width: min(calc(100% - 32px), 1380px);
    }

    .gpm-philosophy-intro {
        margin-bottom: 60px;
    }

    .gpm-philosophy-title {
        font-size: clamp(2.5rem, 11vw, 3.8rem);
        line-height: 1.03;
    }

    .gpm-philosophy-description {
        font-size: 1rem;
        line-height: 1.72;
    }

    .gpm-philosophy-item {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 38px 0;
    }

    .gpm-philosophy-item:hover {
        padding-left: 0;
    }

    .gpm-philosophy-number {
        font-size: 0.75rem;
    }

    .gpm-philosophy-item-title {
        font-size: 2rem;
    }

    .gpm-philosophy-item-text {
        font-size: 0.98rem;
        line-height: 1.72;
    }
}

@media (max-width: 480px) {

    .gpm-philosophy-title {
        font-size: 2.35rem;
    }

    .gpm-philosophy-item-title {
        font-size: 1.8rem;
    }
}


/* =========================================================
   FACILITIES & PRODUCTION
   ========================================================= */

.gpm-facility-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
    background: #f4f7f3;
}

.gpm-facility-container {
    width: min(calc(100% - 48px), 1380px);
    margin-inline: auto;
}

/* Main layout */

.gpm-facility-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(70px, 9vw, 145px);
    align-items: center;
}

/* Content */

.gpm-facility-content {
    min-width: 0;
}

.gpm-facility-label {
    display: block;
    margin-bottom: 24px;
    color: #347528;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gpm-facility-title {
    max-width: 700px;
    margin: 0 0 34px;
    color: #052d18;
    font-size: clamp(2.8rem, 4.8vw, 5.4rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.048em;
    text-wrap: balance;
}

.gpm-facility-lead {
    max-width: 650px;
    margin: 0 0 26px;
    color: #173823;
    font-size: 1.2rem;
    line-height: 1.72;
}

.gpm-facility-text {
    max-width: 650px;
    margin: 0 0 24px;
    color: #526057;
    font-size: 1.025rem;
    line-height: 1.8;
}

.gpm-facility-text:last-of-type {
    margin-bottom: 0;
}

/* Link */

.gpm-facility-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 38px;
    padding-bottom: 8px;
    border-bottom: 1px solid #79a72c;
    color: #094a28;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.055em;
    text-decoration: none;
    text-transform: uppercase;
    transition:
        color 180ms ease,
        border-color 180ms ease;
}

.gpm-facility-link:hover,
.gpm-facility-link:focus-visible {
    border-color: #094a28;
    color: #347528;
}

.gpm-facility-link-arrow {
    display: inline-block;
    font-size: 1.15rem;
    line-height: 1;
    transition: transform 180ms ease;
}

.gpm-facility-link:hover .gpm-facility-link-arrow,
.gpm-facility-link:focus-visible .gpm-facility-link-arrow {
    transform: translateX(5px);
}

/* Image */

.gpm-facility-media {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: #dce5dd;
}

.gpm-facility-image {
    display: block;
    width: 100%;
    height: 760px;
    object-fit: cover;
    object-position: center;
    transition: transform 700ms ease;
}

.gpm-facility-media:hover .gpm-facility-image {
    transform: scale(1.015);
}

.gpm-facility-image-caption {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 20px;
    align-items: center;
    min-width: 280px;
    padding: 22px 28px;
    background: #052d18;
    color: #ffffff;
}

.gpm-facility-caption-number {
    color: #79a72c;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.gpm-facility-caption-text {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Production stages */

.gpm-facility-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 110px;
    border-top: 1px solid rgba(5, 45, 24, 0.18);
    border-bottom: 1px solid rgba(5, 45, 24, 0.18);
}

.gpm-facility-process-item {
    position: relative;
    min-width: 0;
    padding: 42px 34px 46px 0;
}

.gpm-facility-process-item:not(:last-child) {
    margin-right: 34px;
    border-right: 1px solid rgba(5, 45, 24, 0.18);
}

.gpm-facility-process-number {
    display: block;
    margin-bottom: 26px;
    color: #79a72c;
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.12em;
}

.gpm-facility-process-title {
    margin: 0 0 18px;
    color: #052d18;
    font-size: clamp(1.45rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.gpm-facility-process-text {
    margin: 0;
    color: #5a665e;
    font-size: 0.95rem;
    line-height: 1.72;
}

/* =========================================================
   FACILITIES RESPONSIVE
   ========================================================= */

@media (max-width: 1150px) {

    .gpm-facility-section {
        padding: 115px 0;
    }

    .gpm-facility-layout {
        grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
        gap: 70px;
    }

    .gpm-facility-image {
        height: 620px;
    }

    .gpm-facility-process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 85px;
    }

    .gpm-facility-process-item {
        padding: 38px 38px 42px 0;
    }

    .gpm-facility-process-item:nth-child(2) {
        margin-right: 0;
        border-right: 0;
    }

    .gpm-facility-process-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(5, 45, 24, 0.18);
    }
}

@media (max-width: 900px) {

    .gpm-facility-layout {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .gpm-facility-content {
        max-width: 760px;
    }

    .gpm-facility-media {
        width: 100%;
    }

    .gpm-facility-image {
        height: 560px;
    }
}

@media (max-width: 767px) {

    .gpm-facility-section {
        padding: 82px 0;
    }

    .gpm-facility-container {
        width: min(calc(100% - 32px), 1380px);
    }

    .gpm-facility-layout {
        gap: 42px;
    }

    .gpm-facility-title {
        font-size: clamp(2.45rem, 10.5vw, 3.6rem);
        line-height: 1.04;
    }

    .gpm-facility-lead {
        font-size: 1.08rem;
        line-height: 1.68;
    }

    .gpm-facility-text {
        font-size: 1rem;
        line-height: 1.72;
    }

    .gpm-facility-image {
        height: 410px;
    }

    .gpm-facility-image-caption {
        position: static;
        min-width: 0;
        padding: 18px 20px;
    }

    .gpm-facility-process {
        grid-template-columns: 1fr;
        margin-top: 65px;
    }

    .gpm-facility-process-item {
        padding: 34px 0;
    }

    .gpm-facility-process-item:not(:last-child) {
        margin-right: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(5, 45, 24, 0.18);
    }

    .gpm-facility-process-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(5, 45, 24, 0.18);
    }
}

@media (max-width: 480px) {

    .gpm-facility-title {
        font-size: 2.3rem;
    }

    .gpm-facility-image {
        height: 320px;
    }

    .gpm-facility-link {
        align-items: flex-start;
        font-size: 0.78rem;
    }
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.gpm-choose-section {
    padding: 150px 0;
    background: #ffffff;
}

.gpm-choose-container {
    width: min(calc(100% - 48px), 1380px);
    margin-inline: auto;
}

.gpm-choose-header {
    margin-bottom: 90px;
}

.gpm-choose-label {
    display: block;
    margin-bottom: 24px;
    color: #347528;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.gpm-choose-title {
    max-width: 950px;
    margin: 0;
    color: #052d18;
    font-size: clamp(3rem, 5vw, 5.8rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -0.05em;
}

/* List */

.gpm-choose-list {
    border-top: 1px solid rgba(5,45,24,0.15);
}

.gpm-choose-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 40px;
    padding: 48px 0;
    border-bottom: 1px solid rgba(5,45,24,0.15);
    transition: all 0.25s ease;
}

.gpm-choose-item:hover {
    padding-left: 16px;
}

.gpm-choose-number {
    color: #79A72C;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.gpm-choose-content {
    display: grid;
    grid-template-columns: minmax(300px, 0.55fr) minmax(300px, 0.8fr);
    gap: 80px;
}

.gpm-choose-item-title {
    margin: 0;
    color: #052d18;
    font-size: clamp(1.8rem, 2.5vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
}

.gpm-choose-item-text {
    margin: 0;
    color: #5b665f;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 620px;
}


@media (max-width: 900px) {

    .gpm-choose-section {
        padding: 100px 0;
    }

    .gpm-choose-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gpm-choose-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gpm-choose-item:hover {
        padding-left: 0;
    }
}

@media (max-width: 767px) {

    .gpm-choose-container {
        width: min(calc(100% - 32px), 1380px);
    }

    .gpm-choose-header {
        margin-bottom: 55px;
    }

    .gpm-choose-title {
        font-size: clamp(2.4rem, 10vw, 3.6rem);
    }

    .gpm-choose-item {
        padding: 36px 0;
    }

    .gpm-choose-item-title {
        font-size: 2rem;
    }
}