/* =========================================
   VARIABLES
========================================= */

:root {
    --foundation-green: #183128;
    --foundation-green-dark: #060606;
    --foundation-green-soft: #29473b;

    --foundation-gold: #b9945e;
    --foundation-gold-light: #d2b27e;

    --foundation-cream: #f7f2e9;
    --foundation-cream-dark: #eee5d7;

    --foundation-white: #ffffff;
    --foundation-text: #1f2925;
    --foundation-muted: #66716c;

    --foundation-serif: "Cormorant Garamond", serif;
    --foundation-sans: "Poppins", sans-serif;
}


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;

    background: var(--foundation-cream);
    color: var(--foundation-text);

    font-family: var(--foundation-sans);
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
select,
textarea {
    font: inherit;
}


/* =========================================
   UTILIDADES
========================================= */

.section-kicker {
    display: inline-flex;
    align-items: center;

    gap: 13px;

    margin-bottom: 20px;

    color: var(--foundation-gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";

    width: 38px;
    height: 1px;

    background: currentColor;
}


/* =========================================
   HERO
========================================= */

.foundation-hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 160px 7% 100px;

    overflow: hidden;

    background: var(--foundation-green-dark);
}

.foundation-hero-bg {
    position: absolute;
    inset: 0;
}

.foundation-hero-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center right;
}

.foundation-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(12, 12, 12, 0.94) 0%,
            rgba(3, 3, 3, 0.85) 42%,
            rgba(5, 6, 6, 0.48) 72%,
            rgba(7, 7, 7, 0.25) 100%
        ),
        linear-gradient(
            180deg,
            rgba(10, 20, 16, 0.22),
            rgba(10, 20, 16, 0.5)
        );
}

.foundation-hero-decoration {
    position: absolute;
    top: 50%;
    right: 10%;

    width: 390px;
    height: 390px;

    border: 1px solid rgba(210, 178, 126, 0.2);
    border-radius: 50%;

    transform: translateY(-50%);
}

.foundation-hero-decoration::before,
.foundation-hero-decoration::after {
    content: "";

    position: absolute;
    border: 1px solid rgba(210, 178, 126, 0.12);
    border-radius: 50%;
}

.foundation-hero-decoration::before {
    inset: 45px;
}

.foundation-hero-decoration::after {
    inset: 105px;
}

.foundation-hero-content {
    position: relative;
    z-index: 2;

    max-width: 780px;

    color: var(--foundation-white);
}

.foundation-hero-kicker {
    display: inline-block;

    margin-bottom: 24px;

    color: var(--foundation-gold-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 5px;
    text-transform: uppercase;
}

.foundation-hero h1 {
    margin-bottom: 30px;

    font-family: var(--foundation-serif);

    font-size: clamp(52px, 5.6vw, 76px);
    font-weight: 500;
    line-height: 0.94;

    letter-spacing: -2px;
}

.foundation-hero h1 em {
    display: block;

    color: var(--foundation-gold-light);

    font-weight: 500;
}

.foundation-hero-lead {
    max-width: 650px;

    margin-bottom: 20px;

    color: var(--foundation-white);

    font-family: var(--foundation-serif);

    font-size: 25px;
    line-height: 1.35;
}

.foundation-hero-text,
.foundation-hero-support {
    max-width: 680px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
}

.foundation-hero-text {
    margin-bottom: 17px;
}

.foundation-hero-support {
    margin-bottom: 36px;
}

.foundation-hero-actions {
    display: flex;
    gap: 15px;
}

.foundation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 52px;

    padding: 15px 28px;

    border: 1px solid transparent;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.6px;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.foundation-btn svg {
    width: 17px;
    height: 17px;
}

.foundation-btn-primary {
    color: var(--foundation-green-dark);
    background: var(--foundation-gold-light);
    border-color: var(--foundation-gold-light);
}

.foundation-btn-primary:hover {
    color: var(--foundation-green-dark);
    background: var(--foundation-white);
    border-color: var(--foundation-white);

    transform: translateY(-3px);
}

.foundation-btn-outline {
    color: var(--foundation-white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.55);
}

.foundation-btn-outline:hover {
    color: var(--foundation-green-dark);
    background: var(--foundation-white);
    border-color: var(--foundation-white);

    transform: translateY(-3px);
}

.foundation-hero-signature {
    position: absolute;
    right: 7%;
    bottom: 38px;
    z-index: 2;

    color: rgba(255, 255, 255, 0.65);

    text-align: right;
}

.foundation-hero-signature span {
    display: block;

    margin-bottom: 5px;

    font-size: 9px;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.foundation-hero-signature strong {
    color: var(--foundation-white);

    font-family: var(--foundation-serif);

    font-size: 20px;
    font-weight: 500;
}


/* =========================================
   VISIÓN
========================================= */

.vision-section {
    padding: 125px 7%;

    background: var(--foundation-cream);
}

.vision-container {
    max-width: 1260px;

    margin: 0 auto;
}

.vision-heading {
    max-width: 850px;

    margin-bottom: 75px;
}

.vision-heading h2 {
    font-family: var(--foundation-serif);

    font-size: clamp(50px, 6vw, 76px);
    font-weight: 500;
    line-height: 0.98;

    letter-spacing: -1.5px;
}

.vision-heading h2 em {
    display: block;

    color: var(--foundation-gold);

    font-weight: 500;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    gap: 90px;
}

.vision-statements {
    border-top: 1px solid rgba(31, 41, 37, 0.18);
}

.vision-statement {
    display: grid;
    grid-template-columns: 70px 1fr;

    gap: 30px;
    align-items: center;

    padding: 30px 0;

    border-bottom: 1px solid rgba(31, 41, 37, 0.18);
}

.vision-statement span {
    color: var(--foundation-gold);

    font-family: var(--foundation-serif);

    font-size: 27px;
}

.vision-statement p {
    font-family: var(--foundation-serif);

    font-size: 31px;
    line-height: 1.2;
}

.vision-copy > p {
    margin-bottom: 35px;

    color: var(--foundation-muted);

    font-size: 15px;
    line-height: 1.9;
}

.vision-quote {
    padding: 34px;

    color: var(--foundation-white);
    background: var(--foundation-green);

    border-left: 3px solid var(--foundation-gold);
}

.vision-quote svg {
    width: 25px;
    height: 25px;

    margin-bottom: 20px;

    color: var(--foundation-gold-light);
}

.vision-quote blockquote {
    font-family: var(--foundation-serif);

    font-size: 25px;
    font-style: italic;
    line-height: 1.35;
}


/* =========================================
   ÁREAS DE IMPACTO
========================================= */

.impact-areas-section {
    padding: 125px 7%;

    background: var(--foundation-white);
}

.impact-areas-container {
    max-width: 1300px;

    margin: 0 auto;
}

.impact-areas-header {
    max-width: 850px;

    margin: 0 auto 75px;

    text-align: center;
}

.impact-areas-header h2 {
    margin-bottom: 25px;

    font-family: var(--foundation-serif);

    font-size: clamp(48px, 5vw, 68px);
    font-weight: 500;
    line-height: 1;
}

.impact-areas-header h2 em {
    display: block;

    color: var(--foundation-gold);

    font-weight: 500;
}

.impact-areas-header p {
    max-width: 700px;

    margin: 0 auto;

    color: var(--foundation-muted);

    font-size: 14px;
    line-height: 1.85;
}

.impact-areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid rgba(31, 41, 37, 0.14);
    border-left: 1px solid rgba(31, 41, 37, 0.14);
}

.impact-area-card {
    position: relative;

    min-height: 370px;

    padding: 35px 32px;

    background: var(--foundation-white);

    border-right: 1px solid rgba(12, 12, 12, 0.14);
    border-bottom: 1px solid rgba(31, 41, 37, 0.14);

    overflow: hidden;

    transition:
        background-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.impact-area-card::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

 background: #111111;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;
}

.impact-area-card:hover {
    z-index: 2;

    background: var(--foundation-cream);

    transform: translateY(-7px);

    box-shadow: 0 25px 55px rgba(31, 41, 37, 0.1);
}

.impact-area-card:hover::after {
    transform: scaleX(1);
}

.impact-area-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 42px;
}

.impact-area-number {
    color: var(--foundation-gold);

    font-family: var(--foundation-serif);

    font-size: 21px;
}

.impact-area-icon {
    width: 58px;
    height: 58px;

    display: grid;

    color: var(--foundation-gold);

    border: 1px solid rgba(185, 148, 94, 0.45);
    border-radius: 50%;

    place-items: center;

    transition:
        color 0.35s ease,
        background-color 0.35s ease;
}

.impact-area-card:hover .impact-area-icon {
    color: var(--foundation-white);
    background: var(--foundation-gold);
}

.impact-area-icon svg {
    width: 25px;
    height: 25px;

    stroke-width: 1.4;
}

.impact-area-card h3 {
    margin-bottom: 18px;

    font-family: var(--foundation-serif);

    font-size: 34px;
    font-weight: 500;
    line-height: 1.05;
}

.impact-area-card p {
    color: var(--foundation-muted);

    font-size: 13px;
    line-height: 1.8;
}


/* =========================================
   INICIATIVA DEL GRUPO
========================================= */

.group-initiative-section {
    padding: 125px 7%;

    background: var(--foundation-green);
}

.group-initiative-container {
    max-width: 1300px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 90px;
    align-items: center;

    margin: 0 auto;
}

.group-initiative-image {
    position: relative;
}

.group-initiative-image img {
    width: 100%;
    height: 660px;

    object-fit: cover;
}

.group-image-label {
    position: absolute;
    right: -35px;
    bottom: 45px;

    width: 190px;
    height: 190px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    color: var(--foundation-green-dark);
    background: var(--foundation-gold-light);

    border-radius: 50%;

    text-align: center;
}

.group-image-label span {
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3px;
}

.group-image-label strong {
    font-family: var(--foundation-serif);

    font-size: 29px;
    font-weight: 500;
}

.group-initiative-content {
    color: var(--foundation-white);
}

.group-initiative-content h2 {
    margin-bottom: 30px;

    font-family: var(--foundation-serif);

    font-size: clamp(48px, 5vw, 68px);
    font-weight: 500;
    line-height: 0.98;
}

.group-initiative-content h2 em {
    display: block;

    color: var(--foundation-gold-light);

    font-weight: 500;
}

.group-initiative-content > p {
    margin-bottom: 18px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 14px;
    line-height: 1.85;
}

.group-initiative-highlight {
    display: grid;
    grid-template-columns: 170px 1fr;

    gap: 25px;

    margin-top: 25px;
    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.group-initiative-highlight span {
    color: var(--foundation-gold-light);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.group-initiative-highlight p {
    font-family: var(--foundation-serif);

    font-size: 23px;
}


/* =========================================
   DESARROLLO
========================================= */

.development-section {
    padding: 125px 7%;

    background: var(--foundation-cream);
}

.development-container {
    max-width: 1260px;

    margin: 0 auto;
}

.development-heading {
    display: grid;
    grid-template-columns: 180px 1fr;

    gap: 60px;
    align-items: start;

    margin-bottom: 60px;
}

.development-status {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--foundation-gold);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.development-status::before {
    content: "";

    width: 8px;
    height: 8px;

    background: var(--foundation-gold);

    border-radius: 50%;

    box-shadow: 0 0 0 7px rgba(185, 148, 94, 0.13);
}

.development-heading h2 {
    font-family: var(--foundation-serif);

    font-size: clamp(48px, 6vw, 76px);
    font-weight: 500;
    line-height: 0.98;
}

.development-heading h2 em {
    color: var(--foundation-gold);

    font-weight: 500;
}

.development-content {
    max-width: 780px;

    margin-left: auto;
    margin-bottom: 80px;
}

.development-content p {
    margin-bottom: 17px;

    color: var(--foundation-muted);

    font-size: 14px;
    line-height: 1.9;
}

.development-content .development-lead {
    color: var(--foundation-text);

    font-family: var(--foundation-serif);

    font-size: 27px;
    line-height: 1.35;
}

.development-roadmap {
    position: relative;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

.development-line {
    position: absolute;
    top: 33px;
    left: 8%;
    right: 8%;

    height: 1px;

    background: rgba(185, 148, 94, 0.55);
}

.development-step {
    position: relative;
    z-index: 2;
}

.development-step > span {
    width: 66px;
    height: 66px;

    display: grid;

    margin-bottom: 27px;

    color: var(--foundation-white);
    background: var(--foundation-green);

    border: 7px solid var(--foundation-cream);
    border-radius: 50%;

    font-family: var(--foundation-serif);
    font-size: 18px;

    place-items: center;
}

.development-step h3 {
    margin-bottom: 13px;

    font-family: var(--foundation-serif);

    font-size: 31px;
    font-weight: 500;
}

.development-step p {
    max-width: 300px;

    color: var(--foundation-muted);

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================
   CTA
========================================= */

.foundation-cta-section {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    padding: 110px 7%;

    overflow: hidden;

    background: var(--foundation-green-dark);
}

.foundation-cta-bg {
    position: absolute;
    inset: 0;
}

.foundation-cta-bg img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.foundation-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.94),
            rgba(8, 8, 8, 0.74),
            rgba(5, 5, 5, 0.35)
        );
}

.foundation-cta-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}

.foundation-cta-content {
    max-width: 760px;

    color: var(--foundation-white);
}

.foundation-cta-content h2 {
    margin-bottom: 28px;

    font-family: var(--foundation-serif);

    font-size: clamp(50px, 6vw, 75px);
    font-weight: 500;
    line-height: 0.98;
}

.foundation-cta-content h2 em {
    display: block;

    color: var(--foundation-gold-light);

    font-weight: 500;
}

.foundation-cta-content p {
    max-width: 680px;

    margin-bottom: 16px;

    color: rgba(255, 255, 255, 0.76);

    font-size: 14px;
    line-height: 1.85;
}

.foundation-cta-actions {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;

    margin-top: 35px;
}


/* =========================================
   CONTACTO
========================================= */

.foundation-contact-section {
    padding: 125px 7%;

    background: var(--foundation-white);
}

.foundation-contact-container {
    max-width: 1250px;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    margin: 0 auto;
}

.foundation-contact-intro h2 {
    margin-bottom: 25px;

    font-family: var(--foundation-serif);

    font-size: clamp(48px, 5vw, 66px);
    font-weight: 500;
    line-height: 0.98;
}

.foundation-contact-intro h2 em {
    display: block;

    color: var(--foundation-gold);

    font-weight: 500;
}

.foundation-contact-intro > p {
    color: var(--foundation-muted);

    font-size: 14px;
    line-height: 1.85;
}

.foundation-contact-details {
    margin-top: 50px;

    border-top: 1px solid rgba(31, 41, 37, 0.14);
}

.foundation-contact-details > div {
    display: grid;
    grid-template-columns: 35px 90px 1fr;

    gap: 13px;
    align-items: center;

    padding: 24px 0;

    border-bottom: 1px solid rgba(31, 41, 37, 0.14);
}

.foundation-contact-details svg {
    width: 20px;
    height: 20px;

    color: var(--foundation-gold);
}

.foundation-contact-details span {
    color: var(--foundation-muted);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.foundation-contact-details a,
.foundation-contact-details p {
    color: var(--foundation-text);

    font-size: 13px;
    text-decoration: none;
}

.foundation-form-wrapper {
    padding: 48px;

    background: var(--foundation-cream);
}

.foundation-form {
    display: flex;
    flex-direction: column;

    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
}

.form-group {
    position: relative;

    display: flex;
    flex-direction: column;

    gap: 9px;
}

.form-group label {
    color: var(--foundation-text);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group label span {
    color: var(--foundation-muted);

    font-weight: 400;
    text-transform: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;

    padding: 15px 0;

    color: var(--foundation-text);
    background: transparent;

    border: 0;
    border-bottom: 1px solid rgba(31, 41, 37, 0.3);
    border-radius: 0;

    outline: none;

    font-size: 13px;

    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 145px;

    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--foundation-gold);
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-wrapper svg {
    position: absolute;
    top: 50%;
    right: 0;

    width: 17px;
    height: 17px;

    color: var(--foundation-gold);

    pointer-events: none;

    transform: translateY(-50%);
}

.character-counter {
    align-self: flex-end;

    color: var(--foundation-muted);

    font-size: 10px;
}

.foundation-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    min-height: 54px;

    margin-top: 8px;
    padding: 16px 28px;

    color: var(--foundation-white);
    background: var(--foundation-green);

    border: 1px solid var(--foundation-green);

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.5px;
    text-transform: uppercase;

    cursor: pointer;

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.foundation-submit-btn:hover {
    background: var(--foundation-gold);
    border-color: var(--foundation-gold);

    transform: translateY(-2px);
}

.foundation-submit-btn svg {
    width: 17px;
    height: 17px;
}

.foundation-form-message {
    display: none;

    padding: 14px;

    color: var(--foundation-green);
    background: rgba(24, 49, 40, 0.08);

    font-size: 12px;
    line-height: 1.6;
}

.foundation-form-message.visible {
    display: block;
}

/* =========================================
   FOOTER PREMIUM / INNATA FOUNDATION
========================================= */

.footer {
    padding: 75px 6% 0;
    color: #ffffff;
    background: #111111;
}

.footer-container {
    width: min(100%, 1320px);

    display: grid;
    grid-template-columns: 1.35fr 0.8fr 1fr 0.7fr;
    align-items: start;

    gap: 55px;

    margin: 0 auto;
}


/* =========================================
   MARCA
========================================= */

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    margin: 0;
    padding: 0;
}

.footer-logo {
    display: block;

    width: 185px;
    height: auto;

    margin: -42px 0 24px;
}

.footer-slogan {
    max-width: 340px;

    margin: 0 0 16px;

    color: #ffffff;

    font-family: "Cormorant Garamond", serif;

    font-size: 24px;
    font-weight: 500;
    line-height: 1.28;
}

.footer-initiative {
    margin: 0;

    color: rgba(255, 255, 255, 0.58);

    font-size: 11px;
    font-weight: 400;
    line-height: 1.7;
}


/* =========================================
   COLUMNAS
========================================= */

.footer-column {
    margin: 0;
    padding: 0;
}

.footer-column h4 {
    margin: 0 0 27px;
    padding: 0;

    color: #c6a365;

    font-size: 10px;
    font-weight: 600;
    line-height: 1;

    letter-spacing: 5px;
    text-transform: uppercase;
}


/* =========================================
   NAVEGACIÓN
========================================= */

.footer-nav ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-nav li {
    margin: 0;
    padding: 0;
}

.footer-nav a {
    display: block;

    margin-bottom: 11px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 13px;
    font-weight: 400;
    line-height: 1.55;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}

.footer-nav a:hover {
    color: #c6a365;
    padding-left: 4px;
}


/* =========================================
   REDES
========================================= */

.social-icons {
    display: flex;
    align-items: center;

    gap: 12px;
}

.social-icons a {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.18);

    text-decoration: none;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}

.social-icons a i {
    color: inherit;
    font-size: 16px;
}

.social-icons a:hover {
    color: #111111;
    background: #c6a365;
    border-color: #c6a365;

    transform: translateY(-3px);
}


/* =========================================
   PARTE INFERIOR
========================================= */

.footer-bottom {
    width: min(100%, 1320px);

    margin: 58px auto 0;
    padding: 24px 0;

    color: rgba(255, 255, 255, 0.5);

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 12px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns: 1.2fr 1fr;
        gap: 55px 70px;
    }

    .footer-logo {
        width: 165px;
        margin-top: -32px;
    }

}


/* =========================================
   MÓVIL
========================================= */

@media (max-width: 680px) {

    .footer {
        padding: 65px 7% 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-logo {
        width: 150px;
        margin: -24px 0 20px;
    }

    .footer-slogan {
        max-width: 100%;
        font-size: 23px;
    }

    .footer-column h4 {
        margin-bottom: 20px;
    }

    .footer-bottom {
        margin-top: 45px;
        font-size: 11px;
        text-align: center;
    }

}


/* =====================================================
   RESPONSIVE GENERAL DE FUNDACIÓN
   El menú responsive se controla únicamente desde menu.css
===================================================== */

@media (max-width: 1180px) {

    .foundation-hero {
        padding: 145px 6% 90px;
    }

    .foundation-hero-content {
        max-width: 700px;
    }

    .foundation-hero h1 {
        font-size: clamp(50px, 6vw, 68px);
    }

    .foundation-hero-decoration {
        right: 4%;
        width: 320px;
        height: 320px;
    }

    .vision-content,
    .group-initiative-container,
    .foundation-contact-container {
        gap: 60px;
    }

    .impact-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .development-roadmap {
        gap: 25px;
    }
}


@media (max-width: 980px) {

    /* HERO */

    .foundation-hero {
        min-height: 850px;
        align-items: flex-start;
        padding: 125px 7% 80px;
    }

    .foundation-hero-bg img {
        object-fit: cover;
        object-position: center;
    }

    .foundation-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(8, 8, 8, 0.90) 0%,
                rgba(8, 8, 8, 0.66) 48%,
                rgba(8, 8, 8, 0.84) 100%
            );
    }

    .foundation-hero-content {
        max-width: 100%;
    }

    .foundation-hero h1 {
        font-size: 50px;
        line-height: 1;
    }

    .foundation-hero-decoration,
    .foundation-hero-signature {
        display: none;
    }

    /* VISIÓN */

    .vision-section,
    .impact-areas-section,
    .group-initiative-section,
    .development-section,
    .foundation-contact-section {
        padding: 95px 7%;
    }

    .vision-heading {
        margin-bottom: 55px;
    }

    .vision-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vision-copy {
        max-width: 760px;
    }

    /* ÁREAS */

    .impact-areas-header {
        margin-bottom: 55px;
        text-align: left;
    }

    .impact-areas-header p {
        margin-left: 0;
    }

    .impact-area-card {
        min-height: 330px;
    }

    /* INICIATIVA */

    .group-initiative-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .group-initiative-image img {
        height: 520px;
    }

    .group-image-label {
        right: 25px;
        bottom: 25px;
        width: 165px;
        height: 165px;
    }

    /* DESARROLLO */

    .development-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .development-content {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 60px;
    }

    .development-roadmap {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .development-line {
        display: none;
    }

    .development-step {
        display: grid;
        grid-template-columns: 70px 1fr;
        column-gap: 22px;
        align-items: start;
    }

    .development-step > span {
        grid-row: 1 / span 2;
        margin-bottom: 0;
    }

    .development-step p {
        max-width: 100%;
    }

    /* CTA */

    .foundation-cta-section {
        min-height: 620px;
        padding: 95px 7%;
    }

    .foundation-cta-content {
        max-width: 700px;
    }

    /* CONTACTO */

    .foundation-contact-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .foundation-contact-intro {
        max-width: 720px;
    }
}


@media (max-width: 768px) {

    /* HERO COMO LAS OTRAS PÁGINAS */

    .foundation-hero {
        min-height: 760px;
        padding: 112px 7% 65px;
    }

    .foundation-hero-bg {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        background: #060606;
    }

    .foundation-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center bottom;
    }

    .foundation-hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.88) 0%,
                rgba(5, 5, 5, 0.60) 46%,
                rgba(5, 5, 5, 0.84) 100%
            );
    }

    .foundation-hero-kicker {
        margin-bottom: 18px;
        font-size: 8px;
        letter-spacing: 3px;
        line-height: 1.7;
    }

    .foundation-hero h1 {
        margin-bottom: 24px;
        font-size: 38px;
        line-height: 1.02;
        letter-spacing: -0.8px;
    }

    .foundation-hero-lead {
        font-size: 20px;
        line-height: 1.35;
    }

    .foundation-hero-text,
    .foundation-hero-support {
        font-size: 13.5px;
        line-height: 1.75;
    }

    .foundation-hero-actions {
        flex-direction: column;
    }

    .foundation-btn {
        width: 100%;
    }

    /* TÍTULOS GENERALES */

    .vision-heading h2,
    .impact-areas-header h2,
    .group-initiative-content h2,
    .development-heading h2,
    .foundation-cta-content h2,
    .foundation-contact-intro h2 {
        font-size: 42px;
        line-height: 1.02;
    }

    /* VISIÓN */

    .vision-heading {
        margin-bottom: 45px;
    }

    .vision-statement {
        grid-template-columns: 50px 1fr;
        gap: 18px;
        padding: 24px 0;
    }

    .vision-statement span {
        font-size: 22px;
    }

    .vision-statement p {
        font-size: 25px;
    }

    .vision-quote {
        padding: 28px;
    }

    .vision-quote blockquote {
        font-size: 22px;
    }

    /* ÁREAS */

    .impact-areas-grid {
        grid-template-columns: 1fr;
        border-left: 0;
    }

    .impact-area-card {
        min-height: auto;
        padding: 32px 0;
        border-right: 0;
    }

    .impact-area-card h3 {
        font-size: 31px;
    }

    /* INICIATIVA */

    .group-initiative-image img {
        height: 410px;
    }

    .group-image-label {
        right: 18px;
        bottom: 18px;
        width: 135px;
        height: 135px;
    }

    .group-image-label strong {
        font-size: 24px;
    }

    .group-initiative-highlight {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* DESARROLLO */

    .development-content .development-lead {
        font-size: 24px;
    }

    .development-step h3 {
        font-size: 28px;
    }

    /* CTA */

    .foundation-cta-section {
        min-height: 680px;
        align-items: flex-start;
        padding: 90px 7% 65px;
    }

    .foundation-cta-bg {
        display: flex;
        align-items: flex-end;
        background: #060606;
    }

    .foundation-cta-bg img {
        object-fit: contain;
        object-position: center bottom;
    }

    .foundation-cta-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 5, 5, 0.90) 0%,
                rgba(5, 5, 5, 0.62) 48%,
                rgba(5, 5, 5, 0.86) 100%
            );
    }

    .foundation-cta-actions {
        flex-direction: column;
    }

    .foundation-cta-actions .foundation-btn {
        width: 100%;
    }

    /* FORMULARIO */

    .foundation-form-wrapper {
        padding: 36px 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .foundation-contact-details > div {
        grid-template-columns: 30px 80px 1fr;
    }
}


@media (max-width: 520px) {

    .foundation-hero {
        min-height: 700px;
        padding: 102px 7% 55px;
    }

    .foundation-hero h1 {
        font-size: 32px;
    }

    .foundation-hero-lead {
        font-size: 18px;
    }

    .foundation-hero-support {
        display: none;
    }

    .vision-section,
    .impact-areas-section,
    .group-initiative-section,
    .development-section,
    .foundation-contact-section {
        padding: 78px 7%;
    }

    .vision-heading h2,
    .impact-areas-header h2,
    .group-initiative-content h2,
    .development-heading h2,
    .foundation-cta-content h2,
    .foundation-contact-intro h2 {
        font-size: 36px;
    }

    .section-kicker {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .section-kicker::before {
        width: 28px;
    }

    .vision-statement {
        grid-template-columns: 40px 1fr;
    }

    .vision-statement p {
        font-size: 22px;
    }

    .group-initiative-image img {
        height: 320px;
    }

    .group-image-label {
        width: 112px;
        height: 112px;
    }

    .group-image-label span {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .group-image-label strong {
        font-size: 20px;
    }

    .development-step {
        grid-template-columns: 58px 1fr;
        gap: 16px;
    }

    .development-step > span {
        width: 58px;
        height: 58px;
        font-size: 16px;
    }

    .foundation-cta-section {
        min-height: 630px;
        padding: 78px 7% 55px;
    }

    .foundation-contact-details > div {
        grid-template-columns: 28px 1fr;
        gap: 9px 13px;
    }

    .foundation-contact-details span {
        grid-column: 2;
    }

    .foundation-contact-details a,
    .foundation-contact-details p {
        grid-column: 2;
    }

    .foundation-form-wrapper {
        padding: 30px 22px;
    }

    .foundation-submit-btn {
        width: 100%;
    }
}


/* =====================================================
   ACCESIBILIDAD
===================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}