/* =========================
   Base
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
}

@font-face {
    font-family: "Noe Display";
    src:
        url("./fonts/NoeDisplay-Bold.woff") format("woff"),
        url("./fonts/NoeDisplay-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {
    margin: 0;
    background: #fff;
    color: #111;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: "Open Sans", Arial, sans-serif;
}

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

/* =========================
   Page
========================= */
.page-shell {
    min-height: 100vh;
}

.hero {
    /* min-height: 100vh; */
    padding: 0;
}

/* =========================
   Stage
========================= */
.hero__stage {
    position: relative;
    width: 100%;
    min-height: 760px;
    height: 100vh;
    max-height: 900px;
    overflow: hidden;
}

/* =========================
   Decorative Blocks
========================= */
.hero__block {
    position: absolute;
    background: #60a875;
    z-index: 1;
}

.hero__block--left {
    top: 0;
    left: 16.35%;
    width: 7.85%;
    height: 23.7%;
}

.hero__block--right {
    top: 0;
    right: 0;
    width: 23.7%;
    height: 23.7%;
}

/* =========================
   Brand
========================= */
.hero__brand {
    position: absolute;
    top: 6.2%;
    left: 3.5%;
    width: 11.5%;
    z-index: 3;
}

.brand {
    display: inline-block;
    text-decoration: none;
}

.brand__logo {
    width: 100%;
    height: auto;
}

/* =========================
   Media
========================= */
.hero__media {
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    z-index: 2;
}

.hero__image {
    width: 100%;
    height: auto;
    object-fit: contain;
    min-height: 760px;
    object-fit: cover;
}

/* =========================
   Copy
========================= */
.hero__copy {
    position: absolute;
    top: 31.5%;
    left: 50.15%;
    width: 25.5%;
    z-index: 3;
}

.hero__title {
    margin: 0;
    color: #000;
    font-family: "Noe Display", Georgia, serif;
    font-size: clamp(4rem, 6vw, 6.4rem);
    line-height: 0.9;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 30px;
}

.hero__line {
    display: block;
    margin: 0;
}

.hero__line+.hero__line {
    margin-top: 0.12em;
}

.hero__line--right {
    text-align: right;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1200px) {
    .hero__brand {
        width: 13%;
        left: 3%;
    }

    .hero__media {
        /* left: 21%;
        width: 56%; */
    }

    .hero__copy {
        top: 30%;
        left: 56%;
        width: 30%;
    }

    .hero__title {
        font-size: clamp(3.4rem, 6.5vw, 5.4rem);
    }
}

@media (max-width: 900px) {
    .hero__stage {
        min-height: auto;
        height: auto;
        padding: 1.5rem 1.25rem 3rem;
    }

    .hero__block--left {
        left: 28%;
        width: 90px;
        height: 110px;
    }

    .hero__block--right {
        width: 28%;
        height: 110px;
    }

    .hero__brand {
        position: relative;
        top: auto;
        left: auto;
        width: 150px;
        margin-bottom: 2rem;
    }

    .hero__media {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 760px;
        margin: 0 auto;
    }

    .hero__copy {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: 760px;
        margin: 1.5rem auto 0;
    }

    .hero__title {
        font-size: clamp(2.8rem, 12vw, 4.5rem);
        line-height: 0.92;
    }
}

/* =========================
   Intro Band
========================= */
.intro-band {
    width: 100%;
    min-height: 387px;
    display: flex;
    align-items: center;
    background-color: #f3f3f3;
    background-image: url("/images/world-map-bg.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
}

.intro-band::after {
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.intro-band__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 4.5rem 2rem;
    z-index: 9;
}

.intro-band__content {
    max-width: 1120px;
}

.intro-band__title {
    margin: 0 0 1.5rem;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(2rem, 2.3vw, 2.75rem);
    line-height: 1.1;
    font-weight: 700;
    color: #111;
}

.intro-band__text {
    margin: 0 0 1.5rem;
    max-width: 1120px;
    font-size: clamp(1rem, 1.4vw, 1.125rem);
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.52);
}

.intro-band__text:last-child {
    margin-bottom: 0;
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
    .intro-band {
        min-height: auto;
        background-position: center center;
        background-size: cover;
    }

    .intro-band__inner {
        padding: 3rem 1.25rem;
    }

    .intro-band__title {
        margin-bottom: 1.25rem;
    }

    .intro-band__text {
        line-height: 1.65;
    }
}

/* =========================
   Methodology
========================= */
.methodology {
    background: #fff;
    padding: 5rem 0 6rem;
}

.methodology__inner {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.methodology__title {
    margin: 0 0 3rem;
    text-align: center;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(2rem, 2vw, 2.5rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111;
}

.methodology__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.4rem;
    align-items: start;
}

.method-card {
    display: flex;
    flex-direction: column;
}

.method-card__media {
    aspect-ratio: 264 / 350;
    overflow: hidden;
    background: #ddd;
    margin-bottom: 1.75rem;
}

.method-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-card__body {
    padding-right: 0.5rem;
}

.method-card__title {
    margin: 0 0 1rem;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(1.45rem, 1.6vw, 1.9rem);
    line-height: 1.15;
    font-weight: 700;
    color: #111;
}

.method-card__text {
    margin: 0;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    color: rgba(17, 17, 17, 0.5);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
    .methodology__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 1.5rem;
    }
}

@media (max-width: 700px) {
    .methodology {
        padding: 3.5rem 0 4rem;
    }

    .methodology__inner {
        padding: 0 1.25rem;
    }

    .methodology__title {
        margin-bottom: 2rem;
    }

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

    .method-card__media {
        aspect-ratio: 16 / 10;
        margin-bottom: 1.25rem;
    }

    .method-card__title {
        margin-bottom: 0.75rem;
    }
}

/* =========================
   Potential Section
========================= */
.potential {
    background: #fff;
    overflow: hidden;
}

.potential__inner {
    position: relative;
    width: 100%;
    max-width: 1280px;
    min-height: 780px;
    margin: 0 auto;
    padding: 0 2rem;
}

.potential__media {
    position: absolute;
    top: 0;
    left: 4%;
    width: 92%;
    z-index: 1;
    pointer-events: none;
}

.potential__image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.potential__label {
    position: absolute;
    left: 5.5%;
    bottom: 18%;
    z-index: 2;
}

.potential__eyebrow {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(2rem, 2.2vw, 2.8rem);
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #111;
}

.potential__eyebrow span {
    display: block;
}

.potential__eyebrow span+span {
    margin-top: 0.18em;
}

.potential__content {
    position: absolute;
    top: 50.5%;
    right: 6.5%;
    width: 39%;
    max-width: 470px;
    transform: translateY(-50%);
    z-index: 2;
}

.potential__title {
    margin: 0 0 1.5rem;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(1.75rem, 2vw, 2.4rem);
    line-height: 1.15;
    font-weight: 700;
    color: #111;
}

.potential__text {
    margin: 0;
    font-size: clamp(1rem, 1.25vw, 1.1rem);
    line-height: 1.75;
    color: rgba(17, 17, 17, 0.5);
}

/* =========================
   Responsive
========================= */
@media (max-width: 1100px) {
    .potential__inner {
        min-height: 680px;
    }

    .potential__content {
        right: 4%;
        width: 42%;
    }

    .potential__label {
        left: 4%;
        bottom: 14%;
    }
}

@media (max-width: 900px) {
    .potential__inner {
        min-height: auto;
        padding: 3rem 1.25rem 4rem;
    }

    .potential__media {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        margin-bottom: 2rem;
    }

    .potential__label {
        position: relative;
        left: auto;
        bottom: auto;
        margin-bottom: 2rem;
    }

    .potential__content {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        max-width: none;
        transform: none;
    }

    .potential__eyebrow {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .potential__title {
        margin-bottom: 1rem;
    }
}

/* =========================
   Contact Panel
========================= */
.contact-panel {
    background: #fff;
    padding: 0 0 3rem;
}

.contact-panel__inner {
    width: calc(100% - 4rem);
    max-width: 1170px;
    margin: 0 auto;
    background: #efefef;
    padding: 7.5rem 2rem 6rem;
    text-align: center;
}

.contact-panel__header {
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.contact-panel__title {
    margin: 0;
    font-family: "Open Sans", Arial, sans-serif;
    font-size: clamp(2rem, 2.1vw, 2.5rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111;
}

.contact-panel__intro {
    margin: 1.25rem 0 0;
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(17, 17, 17, 0.48);
}

/* =========================
   Contact Form
========================= */
.contact-form {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.contact-form__hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.25rem;
    margin-bottom: 1.75rem;
}

.contact-form__field {
    text-align: left;
}

.contact-form__field--message {
    margin-top: 0.5rem;
}

.contact-form__label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.48);
}

.contact-form__input,
.contact-form__textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
    background: transparent;
    padding: 0 0 0.95rem;
    font: inherit;
    font-size: 1rem;
    line-height: 1.6;
    color: #111;
    outline: none;
    border-radius: 0;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.contact-form__textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 0.2rem;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
    color: rgba(17, 17, 17, 0.28);
}

.contact-form__input:focus,
.contact-form__textarea:focus {
    border-bottom-color: #111;
}

.contact-form__actions {
    margin-top: 2.5rem;
    text-align: center;
}

.contact-form__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    padding: 0.95rem 1.5rem;
    border: 1px solid #111;
    background: transparent;
    color: #111;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.contact-form__button:hover {
    background: #111;
    color: #fff;
}

.contact-form__button:active {
    transform: translateY(1px);
}

.contact-panel__privacy {
    display: inline-block;
    margin-top: 2.5rem;
    font-size: 0.95rem;
    color: rgba(17, 17, 17, 0.38);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-panel__privacy:hover {
    color: rgba(17, 17, 17, 0.62);
}

/* =========================
   Footer
========================= */
.site-footer {
    background: #f3f3f3;
    padding: 1.25rem 0 3rem;
}

.site-footer__inner {
    width: calc(100% - 4rem);
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
}

.site-footer__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(17, 17, 17, 0.38);
}

.site-footer__link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer__link:hover {
    color: rgba(17, 17, 17, 0.62);
}

/* =========================
   Responsive
========================= */
@media (max-width: 900px) {
    .contact-panel__inner {
        width: calc(100% - 2.5rem);
        padding: 4.5rem 1.25rem 3.5rem;
    }

    .contact-panel__header {
        margin-bottom: 2.5rem;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-form__actions {
        margin-top: 2rem;
    }

    .site-footer__inner {
        width: calc(100% - 2.5rem);
    }
}

/* Global Responsive CSS  */
@media (max-width: 900px) {
    .hero__image {
        min-height: 460px;
    }

    .hero__title {
        margin-top: -45px;
    }

    .hero__block--left {
        display: none;
    }
}

/* Contact form success  */
.contact-form__success {
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: #111;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form__success.show {
    display: block !important;
    opacity: 1;
    color: #249c24;
    font-weight: 500;
}