/* TRASENDA — SNAPSHOT ACTUAL CONSOLIDADO */

:root {
    --navy: #060E1F;
    --navy-soft: #0D1B3E;
    --gold: #C8A84B;
    --turquoise: #1FB6C9;

    --azurite: #1B2841;
    --azurite-light: #7086AD;
    --stone: #AAA396;
    --cream: #F1EADA;

    --white: #FFFFFF;
    --off-white: #F5F5F3;
    --gray: #E7E7E5;

    --text: #20252B;
    --text-soft: #697079;

    --sidebar-width: clamp(155px, 11.3vw, 180px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    background: var(--white);
    color: var(--text);
    font-family: "Lora", Georgia, serif;
    overflow-x: hidden;
}
body.menu-active { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }

.home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 720px;
    overflow: hidden;
    background: var(--navy);
}

.hero-photo {
    position: absolute;
    inset: 0;
    /* placeholder gradient (last layer) shows through until hero.jpg exists */
    background:
        linear-gradient(90deg, rgba(6,14,31,.30), rgba(6,14,31,.05)),
        url("../images/hero.jpg"),
        linear-gradient(120deg, #25394E, #A9ADB0);
    background-size: cover, cover, cover;
    background-position: center;
    filter: grayscale(100%);
}

.hero-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6,14,31,.55), rgba(6,14,31,.10));
}

.home-brand-panel {
    position: fixed;
    z-index: 8000;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--navy);
    border-right: 1px solid rgba(255,255,255,.08);
}

.home-logo {
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    max-width: 125px;
    text-align: center;
}

.home-logo img {
    display: block;
    width: 120px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 3px;
    transform: translateX(-3%);
}

.mega-logo img {
    display: block;
    width: 120px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 3px;
    transform: translateX(-3%);
}

.logo-fallback {
    display: block;
    color: var(--white);
    font-family: "Lora", Georgia, serif;
    font-size: 13px;
    letter-spacing: 2px;
    white-space: nowrap;
}

.logo-fallback small {
    display: block;
    margin-top: 3px;
    color: var(--gold);
    font-family: "Lora", Georgia, serif;
    font-size: 8px;
    letter-spacing: 1px;
}

.home-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.circle-control {
    width: 54px;
    height: 54px;
    border: 2px solid var(--cream);
    border-radius: 50%;
    background: transparent;
    color: var(--cream);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.circle-control:hover {
    background: var(--cream);
    color: var(--navy);
    transform: scale(1.06);
}

.menu-open { flex-direction: column; gap: 4px; }
.hamburger-line { display: block; width: 16px; height: 1px; background: currentColor; }
.phone-symbol { display: block; width: 18px; height: 18px; }

.hero-statement {
    position: absolute;
    z-index: 8;
    left: var(--sidebar-width);
    right: 0;
    top: 43%;
    transform: translateY(-50%);
    min-height: 190px;
    display: flex;
    align-items: center;
    padding: 40px clamp(60px, 8vw, 150px);
    overflow: hidden;
}

/* navy band: grows from the center outward on page load */
.hero-statement-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: center;
    animation: heroBandExpand 1.15s cubic-bezier(.22, .85, .25, 1) forwards;
    animation-delay: .2s;
}

@keyframes heroBandExpand {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.hero-statement h1 {
    position: relative;
    z-index: 2;
    max-width: 850px;
    color: var(--white);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(45px, 5vw, 78px);
    font-weight: 400;
    line-height: 1.03;
    opacity: 0;
    transform: translateY(16px);
    animation: heroTextIn .8s ease forwards;
    animation-delay: 1s;
}

.hero-statement h1 span { display: block; color: var(--gold); }

@keyframes heroTextIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll {
    position: absolute;
    z-index: 10;
    right: 45px;
    bottom: 40px;
    color: var(--white);
    font-size: 9px;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-arrow { color: var(--gold); font-size: 20px; }

main {
    margin-left: var(--sidebar-width);
    width: calc(100% - var(--sidebar-width));
}

.mega-menu {
    position: fixed;
    z-index: 9000;
    inset: 0;
    background: var(--navy);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease, visibility .45s ease;
}

.mega-menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mega-sidebar {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 30%;
    z-index: 10;
    background: var(--navy);
}

.mega-logo {
    position: absolute;
    top: 32px;
    left: calc(var(--sidebar-width) / 2);
    transform: translateX(-50%);
    width: 70%;
    max-width: 125px;
    text-align: center;
}

.mega-controls {
    position: absolute;
    left: 55px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.close-control { position: relative; }
.close-control span {
    position: absolute;
    width: 17px;
    height: 1px;
    background: currentColor;
}
.close-control span:first-child { transform: rotate(45deg); }
.close-control span:last-child { transform: rotate(-45deg); }

.mega-sidebar-copy {
    position: absolute;
    left: 38px;
    right: 40px;
    bottom: 70px;
    color: var(--cream);
}

.mega-sidebar-copy p {
    font-family: "Lora", Georgia, serif;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.2;
}

.mega-sidebar-copy strong { display: block; }

.sidebar-contact-text {
    display: inline-block;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--cream);
    font-size: 10px;
    letter-spacing: 2px;
}

.mega-panels {
    position: absolute;
    left: 30%;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.mega-panel {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border-left: 1px solid rgba(255,255,255,.08);
    transition: filter .4s ease;
}

.panel-about {
    background:
        linear-gradient(rgba(6,14,31,.25), rgba(6,14,31,.25)),
        url("../images/menu-quienes-somos.jpg") 93% center / cover no-repeat;
}
.panel-difference {
    background:
        linear-gradient(rgba(6,14,31,.25), rgba(6,14,31,.25)),
        url("../images/menu-diferencia.jpg") 60% center / cover no-repeat;
}
.panel-strategy {
    background:
        linear-gradient(rgba(6,14,31,.25), rgba(6,14,31,.25)),
        url("../images/menu-estrategia.jpg") center top / cover no-repeat;
}
.panel-today {
    background:
        linear-gradient(rgba(6,14,31,.25), rgba(6,14,31,.25)),
        url("../images/menu-donde-estas.jpg") center top / cover no-repeat;
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6,14,31,.55);
    transition: background .4s ease;
}

.mega-panel:hover .panel-overlay { background: rgba(6,14,31,.35); }

.panel-description {
    position: absolute;
    z-index: 4;
    top: 40px;
    left: 28px;
    right: 25px;
    font-size: clamp(12px, 1.2vw, 17px);
    line-height: 1.5;
}

.mega-panel:nth-child(1) .panel-description { color: var(--gold); }
.mega-panel:nth-child(2) .panel-description { color: var(--azurite-light); }
.mega-panel:nth-child(3) .panel-description { color: var(--stone); }
.mega-panel:nth-child(4) .panel-description { color: var(--white); }

.mega-panel h2 {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 45px;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    rotate: 180deg;
    white-space: nowrap;
    color: var(--white);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(31px, 3.5vw, 58px);
    font-weight: 400;
    transition: color .3s ease;
}

.mega-panel h2.two-line-title {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-end;
}

.mega-panel h2.two-line-title span { display: block; }

.mega-panel:nth-child(1) h2 { color: var(--gold); }
.mega-panel:nth-child(2) h2 { color: var(--azurite-light); }
.mega-panel:nth-child(3) h2 { color: var(--stone); }
.mega-panel:nth-child(4) h2 { color: var(--white); }

.manifesto-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 130px);
    padding: 140px clamp(40px, 8vw, 130px);
    background: var(--white);
}

.eyebrow {
    margin-bottom: 25px;
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.manifesto-copy h2,
.section-title h2,
.editorial-text h2,
.contact-copy h2 {
    color: var(--navy);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(45px, 5vw, 75px);
    font-weight: 400;
    line-height: 1.05;
}

.manifesto-copy h2 span,
.section-title h2 span,
.editorial-text h2 span,
.contact-copy h2 span {
    display: block;
    color: var(--gold);
}

.manifesto-copy { max-width: 640px; display: flex; flex-direction: column; justify-content: center; }
.manifesto-copy h2 { margin: 18px 0 30px; }
.manifesto-copy p {
    margin-bottom: 25px;
    color: var(--text-soft);
    font-size: 17px;
    line-height: 1.85;
}
.manifesto-copy strong { color: var(--navy); }

.manifesto-image {
    min-height: 500px;
    background: url("../images/manifiesto-trazo.jpg") center / cover no-repeat;
}

.content-section { scroll-margin-top: 0; }

.section-title {
    padding: 130px clamp(40px, 8vw, 130px) 90px;
    background: var(--white);
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .8s ease, transform .8s ease;
}

.section-title.in-view {
    opacity: 1;
    transform: translateY(0);
}

.section-title.centered { text-align: center; }

.section-title .eyebrow {
    display: inline-block;
    background: var(--navy);
    color: var(--gold);
    padding: 10px 16px;
    font-size: 11px;
}

.section-lead {
    margin-top: 30px;
    max-width: 600px;
    color: var(--text);
    font-size: 19px;
}

.section-note {
    margin-top: 18px;
    max-width: 720px;
    color: var(--text-soft);
    line-height: 1.7;
}

.editorial-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 760px;
}

.editorial-text { padding: 130px clamp(45px, 8vw, 120px); }

.editorial-text .lead {
    margin-top: 45px;
    color: var(--text);
    font-size: 19px;
}

.editorial-text > p:not(.eyebrow, .lead) {
    margin-top: 25px;
    color: var(--text-soft);
    font-size: 16px;
    line-height: 1.85;
}

.editorial-image,
.value-image {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #D7D8D8, #81888B);
    color: rgba(6,14,31,.45);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    filter: grayscale(100%);
}

.image-about {
    background: url("../images/quienes-somos.jpg") center / cover no-repeat;
    filter: none;
}

.image-value-1 {
    background: url("../images/valor-honestidad.jpg") 40% center / cover no-repeat;
    filter: none;
}

.image-value-2 {
    background: url("../images/valor-estrategia.jpg") center / cover no-repeat;
    filter: none;
}

.image-value-3 {
    background: url("../images/valor-servicio.jpg") center / cover no-repeat;
    filter: none;
}

.image-value-4 {
    background: url("../images/valor-trascendencia.jpg") center top / cover no-repeat;
    filter: none;
}

.trajectory {
    padding: 110px clamp(40px, 8vw, 130px);
    background: var(--off-white);
}

.trajectory-intro h3 {
    color: var(--navy);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 400;
}

.trajectory-intro h3 span { color: var(--gold); }

.trajectory-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #D4D5D4;
}

.trajectory-grid article {
    min-height: 180px;
    padding: 30px;
    border-right: 1px solid #D4D5D4;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.trajectory-grid article.in-view { opacity: 1; transform: translateY(0); }
.trajectory-grid article:nth-child(1) { transition-delay: 0s; }
.trajectory-grid article:nth-child(2) { transition-delay: .12s; }
.trajectory-grid article:nth-child(3) { transition-delay: .24s; }
.trajectory-grid article:nth-child(4) { transition-delay: .36s; }

.trajectory-grid article:last-child { border-right: 0; }

.trajectory-grid strong {
    color: var(--navy);
    font-family: "Lora", Georgia, serif;
    font-size: 48px;
    font-weight: 400;
    display: block;
}

.trajectory-grid p {
    margin-top: 15px;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.5;
}

.brand-statement {
    padding: 130px clamp(40px, 9vw, 150px);
}

.brand-statement > p {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.brand-statement h3 {
    max-width: 1050px;
    margin-top: 20px;
    color: var(--navy);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(40px, 5vw, 70px);
    font-weight: 400;
    line-height: 1.05;
}

.brand-statement h3 span { color: var(--gold); }

.value-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 650px;
}

.value-row.reverse .value-image { order: 2; }
.value-row.reverse .value-copy {
    order: 1;
    background: var(--off-white);
}

.value-copy {
    padding: 90px clamp(45px, 7vw, 110px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-index {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
}

.value-copy h3 {
    margin: 25px 0;
    color: var(--navy);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(37px, 4vw, 58px);
    font-weight: 400;
    line-height: 1.05;
}

.value-copy h3 span { display: block; }

.value-copy p:not(.value-index) {
    max-width: 580px;
    margin-bottom: 20px;
    color: var(--text-soft);
    line-height: 1.85;
}

.strategy-section { background: var(--off-white); }
.pathway { padding: 0 clamp(40px, 8vw, 130px) 130px; }

.path-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 50px;
    padding: 65px 0;
    border-top: 1px solid #D2D3D2;
}

.path-number {
    color: var(--gold);
    font-family: "Lora", Georgia, serif;
    font-size: 27px;
}

.path-name {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
}

.path-step h3 {
    margin-top: 15px;
    color: var(--navy);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(35px, 4vw, 57px);
    font-weight: 400;
    line-height: 1.05;
}

.path-step h3 span {
    display: block;
    color: var(--gold);
}

.path-step div > p:last-child {
    max-width: 620px;
    margin-top: 25px;
    color: var(--text-soft);
    line-height: 1.8;
}

.today-section { padding-bottom: 130px; }

.worlds {
    position: relative;
    min-height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.world {
    width: 390px;
    height: 390px;
    border-radius: 50%;
    border: 1px solid rgba(6,14,31,.15);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform .5s ease;
}

.world:hover { transform: scale(1.04); }

.world-personal {
    margin-right: -55px;
    background: var(--navy);
    color: var(--white);
}

.world-business {
    margin-left: -55px;
    background: var(--off-white);
    color: var(--navy);
}

.world small {
    color: var(--gold);
    font-size: 9px;
    letter-spacing: 3px;
}

.world strong {
    margin: 15px 0;
    font-family: "Lora", Georgia, serif;
    font-size: 28px;
    font-weight: 400;
}

.world > span {
    font-size: 9px;
    letter-spacing: 2px;
}

.world-union {
    position: absolute;
    z-index: 5;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 45px rgba(6,14,31,.18);
}

.world-union span {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.world-information {
    width: min(1000px, calc(100% - 80px));
    margin: 55px auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #DADBD9;
}

.world-information article {
    padding: 50px;
    background: var(--off-white);
    transition: background .3s ease;
}

.world-information article.active { background: var(--white); }

.world-information h3 {
    color: var(--navy);
    font-family: "Lora", Georgia, serif;
    font-size: 29px;
    font-weight: 400;
}

.world-information p {
    margin-top: 15px;
    color: var(--text-soft);
    line-height: 1.8;
}

.world-conclusion {
    margin: 100px auto 0;
    text-align: center;
}

.world-conclusion > p { color: var(--text-soft); }

.world-conclusion h3 {
    margin-top: 15px;
    color: var(--navy);
    font-family: "Lora", Georgia, serif;
    font-size: clamp(40px, 5vw, 65px);
    font-weight: 400;
}

.world-conclusion h3 span { color: var(--gold); }

.contact-section {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 100px;
    padding: 130px clamp(40px, 8vw, 130px);
    background: var(--off-white);
}

.contact-copy { max-width: 760px; }

.contact-lead {
    margin-top: 40px;
    color: var(--text);
    font-size: 19px;
}

.contact-copy > p:not(.eyebrow, .contact-lead) {
    max-width: 600px;
    margin-top: 20px;
    color: var(--text-soft);
    line-height: 1.8;
}

.contact-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    padding: 0 28px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.primary-button {
    background: var(--gold);
    color: var(--navy);
}

.secondary-button {
    border: 1px solid var(--navy);
    color: var(--navy);
}

.advisor {
    padding: 30px;
    background: var(--white);
}

.advisor-photo {
    height: 320px;
    background: url("../images/advisor-christian.jpg") center 25% / cover no-repeat;
}

.advisor h3 {
    margin-top: 25px;
    color: var(--navy);
    font-family: "Lora", Georgia, serif;
    font-size: 24px;
    font-weight: 400;
}

.advisor p {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 12px;
}

footer {
    padding: 80px clamp(40px, 8vw, 130px) 50px;
    background: var(--navy);
    color: rgba(255,255,255,.65);
    display: flex;
    justify-content: space-between;
    gap: 70px;
}

.footer-brand strong {
    display: block;
    color: var(--white);
    font-family: "Lora", Georgia, serif;
    font-size: 24px;
    letter-spacing: 5px;
}

.footer-brand span {
    display: block;
    margin-top: 4px;
    color: var(--gold);
    font-size: 8px;
    letter-spacing: 4px;
}

.footer-brand p {
    margin-top: 25px;
    font-family: "Lora", Georgia, serif;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 24px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.social-icon:hover {
    background: var(--cream);
    color: var(--navy);
    transform: scale(1.06);
}

footer nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
}

footer nav a:hover { color: var(--gold); }

@media (max-width: 1000px) {
    :root { --sidebar-width: 135px; }

    .home-logo {
        width: 76%;
        max-width: 105px;
    }

    .circle-control {
        width: 48px;
        height: 48px;
    }

    .mega-sidebar { width: 35%; }

    .mega-panels {
        left: 35%;
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-panel h2 {
        writing-mode: horizontal-tb;
        rotate: 0deg;
        left: 25px;
        bottom: 30px;
        transform: none;
        white-space: normal;
    }

    .mega-panel h2.two-line-title { display: block; }

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

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

@media (max-width: 700px) {
    :root { --sidebar-width: 0px; }

    main {
        margin-left: 0;
        width: 100%;
    }

    .home-hero { min-height: 700px; }

    .home-brand-panel {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 125px;
        background: rgba(6,14,31,.96);
    }

    .home-logo {
        top: 50%;
        left: 22px;
        width: 125px;
        max-width: none;
        transform: translateY(-50%);
    }

    .home-logo img {
        width: 46px;
        margin: 0 auto 3px;
        transform: translateX(-3%);
    }

    .logo-fallback { font-size: 11px; }
    .logo-fallback small { font-size: 7px; }

    .home-controls {
        top: 50%;
        left: auto;
        right: 20px;
        transform: translateY(-50%);
        flex-direction: row;
        gap: 12px;
    }

    .circle-control {
        width: 44px;
        height: 44px;
    }

    .hero-statement {
        left: 0;
        top: auto;
        right: 0;
        bottom: 80px;
        transform: none;
        min-height: auto;
        padding: 45px 25px;
    }

    .hero-statement h1 { font-size: 43px; }
    .hero-scroll { display: none; }

    .mega-sidebar {
        width: 100%;
        height: 125px;
        bottom: auto;
    }

    .mega-logo {
        top: 50%;
        left: 22px;
        width: 125px;
        max-width: none;
        transform: translateY(-50%);
        text-align: left;
    }

    .mega-logo img {
        width: 46px;
        margin: 0 0 3px;
        transform: translateX(-3%);
    }

    .mega-controls {
        left: auto;
        right: 20px;
        top: 50%;
        flex-direction: row;
    }

    .mega-sidebar-copy { display: none; }

    .mega-panels {
        left: 0;
        top: 125px;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }

    .panel-description { display: none; }

    .mega-panel h2 {
        writing-mode: horizontal-tb;
        rotate: 0deg;
        left: 25px;
        bottom: 20px;
        transform: none;
        font-size: 28px;
    }

    .mega-panel h2.two-line-title { display: block; }

    .manifesto-section {
        grid-template-columns: 1fr;
        padding: 90px 25px;
    }

    .manifesto-image { min-height: 320px; }

    .editorial-split { grid-template-columns: 1fr; }
    .editorial-text { padding: 90px 25px; }
    .editorial-image { min-height: 420px; }

    .trajectory { padding: 80px 25px; }
    .trajectory-grid { grid-template-columns: 1fr 1fr; }
    .trajectory-grid article { padding: 25px 15px; }

    .brand-statement { padding: 90px 25px; }
    .section-title { padding: 90px 25px 65px; }

    .manifesto-heading h2,
    .section-title h2,
    .editorial-text h2,
    .contact-copy h2 {
        font-size: 44px;
    }

    .value-row { grid-template-columns: 1fr; }

    .value-row.reverse .value-image,
    .value-row.reverse .value-copy {
        order: initial;
    }

    .value-image { min-height: 380px; }
    .value-copy { padding: 70px 25px; }

    .pathway { padding: 0 25px 90px; }
    .path-step {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

    .worlds {
        padding: 20px;
        flex-direction: column;
    }

    .world {
        width: 280px;
        height: 280px;
        margin: 0;
    }

    .world-business { margin-top: -45px; }

    .world-union {
        position: relative;
        width: 120px;
        height: 120px;
        margin: -35px 0;
    }

    .world-information {
        width: calc(100% - 40px);
        grid-template-columns: 1fr;
    }

    .world-conclusion { padding: 0 25px; }

    .contact-section {
        padding: 90px 25px;
        gap: 60px;
    }

    footer {
        flex-direction: column;
        padding: 70px 25px;
    }
}
