@import url("https://fonts.googleapis.com/css2?family=Anta&display=swap");

:root {
    --bg-main: #000000;
    --text-main: #ffffff;
    --text-soft: #d8d8d8;
    --text-dim: #8f8f8f;
    --border-soft: rgba(255, 255, 255, 0.16);
    --border-strong: rgba(255, 255, 255, 0.34);
    --panel-bg: #000000;
    --hover-bg: #ffffff;
    --hover-text: #000000;
    --max-width: 1480px;
    --side-padding: 28px;
    --transition-fast: 180ms ease;
    --transition-med: 240ms ease;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bg-main);
    color: var(--text-main);
}

body {
    min-height: 100vh;
    margin: 0;
    background: var(--bg-main);
    color: var(--text-main);
    font-family: "Anta", "Arial Narrow", Arial, sans-serif;
    letter-spacing: 0.02em;
}

body.menu-open {
    overflow: hidden;
}

a,
button {
    font: inherit;
    color: inherit;
}

a {
    text-decoration: none;
}

.site-shell {
    min-height: 100vh;
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    padding: 24px var(--side-padding) 40px;
    display: grid;
    grid-template-rows: auto 1fr auto;
}

.site-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    min-height: 0;
    padding-bottom: clamp(16px, 2.75vh, 40px);
    position: relative;
    z-index: 10;
}

.brand-mark,
.menu-brand {
    display: inline-grid;
    grid-template-columns: auto;
    align-items: start;
    gap: 4px;
    text-transform: uppercase;
}

.brand-mark__logo,
.menu-brand__logo {
    display: block;
    width: 127px;
    height: auto;
    object-fit: contain;
}

.brand-mark__main,
.menu-brand__main {
    display: block;
    margin-top: 4px;
    font-size: clamp(0.76rem, 0.95vw, 0.95rem);
    line-height: 1;
    letter-spacing: 0.14em;
    white-space: nowrap;
}

.brand-mark__sub,
.menu-brand__sub {
    display: block;
    color: var(--text-dim);
    font-size: 0.62rem;
    line-height: 1;
    letter-spacing: 0.18em;
    white-space: nowrap;
}

.menu-trigger,
.menu-close {
    min-width: 92px;
    height: 42px;
    padding: 0 18px;
    border: 1px solid var(--border-soft);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.menu-trigger:hover,
.menu-close:hover {
    background: var(--hover-bg);
    color: var(--hover-text);
    border-color: var(--hover-bg);
}

.site-main {
    display: grid;
    min-height: 0;
}

.hero {
    display: block;
    padding-top: 0;
    padding-bottom: clamp(36px, 6vh, 80px);
}

.hero__inner {
    width: 100%;
    max-width: none;
}

.hero__kicker {
    margin: 0 0 26px;
    color: var(--text-dim);
    font-size: clamp(1rem, 1.3vw, 1.3rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero__title {
    margin: 0;
    font-size: clamp(3.4rem, 6.2vw, 7rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero__statement {
    margin: 42px 0 0;
    color: var(--text-main);
    font-size: clamp(1.35rem, 2.05vw, 2.45rem);
    line-height: 1.16;
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.hero__statement-line {
    display: block;
    white-space: nowrap;
}

.hero__text {
    max-width: 1180px;
    margin: 34px 0 0;
    color: var(--text-soft);
    font-size: clamp(1.22rem, 1.55vw, 1.66rem);
    line-height: 1.5;
    white-space: normal;
}

.hero__topo {
    width: 100%;
    margin-top: 54px;
    padding: 20px 26px 16px;
    border: 3px solid var(--border-strong);
    border-radius: 24px;
    background: #000000;
}

.hero__topo-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 0 0 18px;
    border-bottom: 1px solid var(--border-soft);
}

.hero__topo-title {
    color: var(--text-main);
    font-size: clamp(1.9rem, 3.3vw, 4rem);
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero__topo-meta {
    color: var(--text-dim);
    font-size: clamp(0.72rem, 0.82vw, 0.88rem);
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero__topo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
}

.hero__topo-item {
    padding: 18px 0 16px;
    border-top: 1px solid var(--border-soft);
}

.hero__topo-item:nth-child(-n+2) {
    border-top: 0;
}

.hero__topo-item h3 {
    margin: 0 0 10px;
    color: var(--text-main);
    font-size: clamp(1.9rem, 3.3vw, 4rem);
    line-height: 1;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero__topo-item p {
    margin: 0;
    color: var(--text-soft);
    font-size: clamp(0.98rem, 1.05vw, 1.12rem);
    line-height: 1.58;
    letter-spacing: 0.025em;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid var(--border-soft);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.button:hover {
    background: var(--hover-bg);
    color: var(--hover-text);
    border-color: var(--hover-bg);
}

.button-secondary {
    margin-top: 40px;
}

.content-page {
    min-height: calc(100vh - 220px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 980px;
}

.content-page__kicker {
    margin: 0 0 22px;
    color: var(--text-dim);
    font-size: clamp(0.72rem, 1vw, 0.9rem);
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.content-page__title {
    margin: 0;
    font-size: clamp(3.2rem, 9vw, 8.5rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
    text-transform: uppercase;
}

.content-page__body {
    max-width: 680px;
    margin: 38px 0 0;
    color: var(--text-soft);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
}

.site-footer {
    display: none;
}

.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: stretch;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    pointer-events: none;
    transition:
        opacity var(--transition-med),
        background var(--transition-med);
}

.menu-modal.is-open {
    opacity: 1;
    pointer-events: auto;
    background: #000000;
}

.menu-modal__panel {
    width: 100%;
    min-height: 100vh;
    padding: 24px 0;
    display: grid;
    grid-template-rows: auto 1fr;
    background: #000000;
    transform: none;
    transition: none;
}

.menu-modal.is-open .menu-modal__panel {
    transform: none;
}

.menu-modal__top {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    min-height: clamp(136px, 18vh, 170px);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 0 var(--side-padding);
    box-sizing: border-box;
}

.modal-nav {
    width: min(var(--max-width), 100%);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 14px var(--side-padding) 32px;
    box-sizing: border-box;
}

.modal-nav__item,
.modal-nav__links-row {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 0;
    border: 0;
    border-bottom: 1px solid var(--border-soft);
    background: transparent;
    color: var(--text-main);
    text-align: left;
    font-size: clamp(1.9rem, 3.3vw, 4rem);
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.modal-nav__item {
    cursor: pointer;
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.modal-nav__item:hover {
    color: var(--text-soft);
    border-color: var(--border-strong);
}

.modal-nav__links-label {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.modal-nav__plus {
    margin-left: auto;
    width: 54px;
    height: 54px;
    border: 1px solid var(--border-soft);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-size: clamp(1.2rem, 2.2vw, 2.6rem);
    line-height: 1;
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.modal-nav__plus:hover,
.modal-nav__plus[aria-expanded="true"] {
    background: var(--hover-bg);
    color: var(--hover-text);
    border-color: var(--hover-bg);
}

.modal-nav__submenu[hidden] {
    display: none !important;
}

.modal-nav__submenu {
    display: grid;
    gap: 0;
    padding: 12px 0 18px;
}

.modal-nav__subitem {
    display: flex;
    align-items: center;
    min-height: 38px;
    color: var(--text-dim);
    font-size: clamp(0.92rem, 1.25vw, 1.08rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        color var(--transition-fast),
        padding-left var(--transition-fast);
}

.modal-nav__subitem:hover {
    color: var(--text-main);
    padding-left: 18px;
}

@media (max-width: 980px) {
    .hero__topo-head {
        display: grid;
        gap: 10px;
        justify-content: start;
    }

    .hero__topo-meta {
        white-space: normal;
    }

    .hero__topo-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }

    .hero__topo-item:nth-child(-n+2) {
        border-top: 1px solid var(--border-soft);
    }

    .hero__topo-item:first-child {
        border-top: 0;
    }
}

@media (max-width: 760px) {
    :root {
        --side-padding: 18px;
    }

    .site-shell {
        padding-top: 18px;
        padding-bottom: 24px;
    }

    .site-header {
        min-height: 0;
        padding-bottom: 16px;
    }

    .brand-mark__logo,
    .menu-brand__logo {
        width: 111px;
    }

    .brand-mark__main,
    .menu-brand__main {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
    }

    .brand-mark__sub,
    .menu-brand__sub {
        font-size: 0.5rem;
        letter-spacing: 0.14em;
    }

    .hero {
        padding-top: 0;
        padding-bottom: 28px;
    }

    .hero__kicker {
        margin-bottom: 18px;
        font-size: 0.8rem;
        letter-spacing: 0.16em;
        white-space: normal;
    }

    .hero__title {
        font-size: clamp(2rem, 9vw, 3.5rem);
        line-height: 0.94;
        letter-spacing: -0.05em;
        white-space: normal;
    }

    .hero__statement {
        margin-top: 28px;
        font-size: clamp(1rem, 4vw, 1.45rem);
        line-height: 1.22;
    }

    .hero__statement-line {
        white-space: normal;
    }

    .hero__text {
        margin-top: 24px;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    .hero__topo {
        margin-top: 34px;
        padding: 18px 18px 12px;
        border-radius: 18px;
    }

    .hero__topo-title {
        font-size: 0.84rem;
        white-space: normal;
    }

    .hero__topo-meta {
        font-size: 0.64rem;
    }

    .hero__topo-item h3 {
        font-size: 0.86rem;
        line-height: 1.2;
    }

    .hero__topo-item p {
        font-size: 0.88rem;
        line-height: 1.55;
    }

    .content-page {
        min-height: calc(100vh - 180px);
    }

    .menu-modal__top {
        min-height: 126px;
    }

    .modal-nav__item,
    .modal-nav__links-row {
        min-height: 54px;
        font-size: clamp(1.1rem, 6vw, 2.1rem);
    }

    .modal-nav__plus {
        width: 42px;
        height: 42px;
    }

    .modal-nav__subitem {
        font-size: 0.82rem;
    }
}

/* STEP-30-LAYOUT-OVERRIDES START */

/* GLOBAL CENTERING */
.site-shell {
    width: 85vw;
    max-width: 1760px;
    margin: 0 auto;
    padding: 24px 0 40px;
    grid-template-rows: auto auto auto;
}

.site-main {
    width: 100%;
    display: block;
}

/* APPLICATION-LIKE HEADER BAR */
.site-header {
    width: 100%;
    min-height: 118px;
    margin: 0 0 28px 0;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 3px solid rgba(160, 160, 160, 0.56);
    border-radius: 26px;
    background: #000000;
    position: relative;
    z-index: 10;
}

.site-header .brand-mark {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: start;
    gap: 22px;
    width: auto;
    min-width: 0;
    text-transform: uppercase;
}

.site-header .brand-mark__logo {
    width: 112px;
    height: auto;
    object-fit: contain;
}

.brand-mark__copy,
.menu-brand__copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.brand-mark__title,
.menu-brand__title {
    display: block;
    color: var(--text-main);
    font-size: clamp(1.85rem, 2.2vw, 2.75rem);
    line-height: 0.9;
    letter-spacing: 0.22em;
    white-space: nowrap;
}

.site-header .brand-mark__main,
.menu-brand__main {
    display: block;
    margin: 0;
    color: var(--text-main);
    font-size: clamp(0.78rem, 0.95vw, 1.05rem);
    line-height: 1;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.site-header .brand-mark__sub,
.menu-brand__sub {
    display: block;
    margin: 0;
    color: var(--text-dim);
    font-size: clamp(0.66rem, 0.82vw, 0.9rem);
    line-height: 1;
    letter-spacing: 0.18em;
    white-space: nowrap;
}

.menu-trigger {
    min-width: 92px;
    height: 42px;
    flex: 0 0 auto;
}

/* TITLE CONTAINER */
.hero {
    width: 100%;
    padding-top: 0;
    padding-bottom: clamp(36px, 6vh, 80px);
}

.hero__inner {
    width: 100%;
    max-width: none;
}

.hero-title-box {
    width: 100%;
    margin: 0 0 30px 0;
    padding: 18px 24px 24px;
    border: 3px solid rgba(160, 160, 160, 0.72);
    border-radius: 26px;
    background: #000000;
}

.hero__kicker {
    margin: 0 0 3px 0;
    line-height: 1;
    white-space: nowrap;
}

.hero__title {
    margin: 0;
    max-width: 100%;
    white-space: nowrap;
    font-size: clamp(3.2rem, 5.35vw, 6.4rem);
    line-height: 0.94;
}

/* CONTENT */
.hero__statement {
    max-width: 100%;
    margin: 0 0 28px 0;
}

.hero__statement-line {
    white-space: nowrap;
}

.hero__text {
    max-width: 100%;
    margin: 0 0 38px 0;
    white-space: normal;
    text-wrap: balance;
}

/* CAPABILITIES */
.hero__topo {
    width: 100%;
    max-width: none;
    border: 3px solid rgba(160, 160, 160, 0.56);
    border-radius: 26px;
}

.hero__topo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
}

.hero__topo-item h3 {
    white-space: nowrap;
}

/* MODAL MENU HEADER */
.menu-modal__panel {
    width: 100%;
    max-width: none;
    margin: 0;
}

.menu-modal__top,
.modal-nav {
    width: 85vw;
    max-width: 1760px;
}

.menu-modal__top {
    min-height: 118px;
    align-items: center;
}

.menu-brand {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 22px;
    width: auto;
    min-width: 0;
    text-transform: uppercase;
}

.menu-brand__logo {
    width: 112px;
    height: auto;
    object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 1320px) {
    .site-shell,
    .menu-modal__top,
    .modal-nav {
        width: 90vw;
    }

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

    .hero__statement-line {
        white-space: normal;
    }
}

@media (max-width: 980px) {
    .site-shell,
    .menu-modal__top,
    .modal-nav {
        width: 92vw;
    }

    .site-header,
    .menu-modal__top {
        min-height: 108px;
        padding: 16px 18px;
    }

    .site-header .brand-mark,
    .menu-brand {
        gap: 16px;
    }

    .site-header .brand-mark__logo,
    .menu-brand__logo {
        width: 88px;
    }

    .brand-mark__title,
    .menu-brand__title {
        font-size: clamp(1.35rem, 4vw, 2.2rem);
    }

    .site-header .brand-mark__main,
    .site-header .brand-mark__sub,
    .menu-brand__main,
    .menu-brand__sub {
        white-space: normal;
    }

    .hero__kicker,
    .hero__title,
    .hero__topo-item h3 {
        white-space: normal;
    }

    .hero__topo-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .site-shell,
    .menu-modal__top,
    .modal-nav {
        width: 94vw;
    }

    .site-header,
    .menu-modal__top {
        border-radius: 20px;
        margin-bottom: 24px;
    }

    .site-header .brand-mark,
    .menu-brand {
        grid-template-columns: auto 1fr;
        gap: 14px;
    }

    .site-header .brand-mark__logo,
    .menu-brand__logo {
        width: 76px;
    }

    .brand-mark__title,
    .menu-brand__title {
        font-size: 1.28rem;
    }

    .hero-title-box {
        padding: 14px 16px 18px;
        border-radius: 20px;
    }

    .hero__title {
        font-size: clamp(2.4rem, 11vw, 4.4rem);
    }

    .hero__statement {
        font-size: clamp(1.2rem, 4.8vw, 1.75rem);
    }

    .hero__text {
        font-size: 1rem;
    }

    .hero__topo {
        border-radius: 20px;
    }
}
/* STEP-30-LAYOUT-OVERRIDES END */

/* STEP-31-MENU-BANNER-OVERRIDES START */

/* MODAL MENU USES THE SAME BANNER STRUCTURE AS HOME HEADER */
.menu-modal__panel {
    width: 100%;
    min-height: 100vh;
    padding: 24px 0 40px;
    display: grid;
    grid-template-rows: auto 1fr;
    background: #000000;
    transform: none;
    transition: none;
}

.menu-modal__top {
    width: 85vw;
    max-width: 1760px;
    min-height: 118px;
    margin: 0 auto 28px auto;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 3px solid rgba(160, 160, 160, 0.56);
    border-radius: 26px;
    background: #000000;
    box-sizing: border-box;
}

.menu-brand {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: start;
    gap: 22px;
    width: auto;
    min-width: 0;
    text-transform: uppercase;
}

.menu-brand__logo {
    width: 112px;
    height: auto;
    object-fit: contain;
}

.menu-brand__copy {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.menu-brand__title {
    display: block;
    color: var(--text-main);
    font-size: clamp(1.85rem, 2.2vw, 2.75rem);
    line-height: 0.9;
    letter-spacing: 0.22em;
    white-space: nowrap;
}

.menu-brand__main {
    display: block;
    margin: 0;
    color: var(--text-main);
    font-size: clamp(0.78rem, 0.95vw, 1.05rem);
    line-height: 1;
    letter-spacing: 0.16em;
    white-space: nowrap;
}

.menu-brand__sub {
    display: block;
    margin: 0;
    color: var(--text-dim);
    font-size: clamp(0.66rem, 0.82vw, 0.9rem);
    line-height: 1;
    letter-spacing: 0.18em;
    white-space: nowrap;
}

.menu-close {
    min-width: 92px;
    height: 42px;
    flex: 0 0 auto;
}

.modal-nav {
    width: 85vw;
    max-width: 1760px;
    margin: 0 auto;
    padding: 14px 0 32px;
    box-sizing: border-box;
}

@media (max-width: 1320px) {
    .menu-modal__top,
    .modal-nav {
        width: 90vw;
    }
}

@media (max-width: 980px) {
    .menu-modal__top,
    .modal-nav {
        width: 92vw;
    }

    .menu-modal__top {
        min-height: 108px;
        padding: 16px 18px;
    }

    .menu-brand {
        gap: 16px;
    }

    .menu-brand__logo {
        width: 88px;
    }

    .menu-brand__title {
        font-size: clamp(1.35rem, 4vw, 2.2rem);
    }

    .menu-brand__main,
    .menu-brand__sub {
        white-space: normal;
    }
}

@media (max-width: 760px) {
    .menu-modal__top,
    .modal-nav {
        width: 94vw;
    }

    .menu-modal__top {
        min-height: 96px;
        border-radius: 20px;
        margin-bottom: 24px;
    }

    .menu-brand {
        grid-template-columns: auto 1fr;
        gap: 14px;
    }

    .menu-brand__logo {
        width: 76px;
    }

    .menu-brand__title {
        font-size: 1.28rem;
    }
}
/* STEP-31-MENU-BANNER-OVERRIDES END */

/* STEP-33-LAYOUT-90 START */

/* GLOBAL PAGE WIDTH */
.site-shell {
    width: 90vw;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

/* SAME WIDTH FOR MENU MODAL */
.menu-modal__top,
.modal-nav {
    width: 90vw;
    max-width: 1800px;
    margin-left: auto;
    margin-right: auto;
}

/* KEEP ALL MAIN BLOCKS ALIGNED */
.site-header,
.hero-title-box,
.hero__topo {
    width: 100%;
}

/* RESPONSIVE FALLBACK */
@media (max-width: 980px) {
    .site-shell,
    .menu-modal__top,
    .modal-nav {
        width: 92vw;
    }
}

@media (max-width: 760px) {
    .site-shell,
    .menu-modal__top,
    .modal-nav {
        width: 94vw;
    }
}
/* STEP-33-LAYOUT-90 END */

/* STEP-35-TOPO-TYPO START */

/* TOPO ROW TITLES --> reduce by about 45% */
.hero__topo-item h3 {
    font-size: clamp(1.05rem, 1.82vw, 2.2rem);
    line-height: 1;
    letter-spacing: -0.01em;
}

/* TOPO DESCRIPTIONS --> increase by about 35% */
.hero__topo-item p {
    font-size: clamp(1.46rem, 1.65vw, 1.92rem);
    line-height: 1.42;
    letter-spacing: 0.018em;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    .hero__topo-item h3 {
        font-size: clamp(1rem, 2.6vw, 1.65rem);
    }

    .hero__topo-item p {
        font-size: clamp(1.08rem, 2.4vw, 1.34rem);
        line-height: 1.45;
    }
}

@media (max-width: 760px) {
    .hero__topo-item h3 {
        font-size: clamp(0.96rem, 4.8vw, 1.3rem);
    }

    .hero__topo-item p {
        font-size: 1rem;
        line-height: 1.5;
    }
}
/* STEP-35-TOPO-TYPO END */


/* v49 home title centering */
.page-home .hero__kicker {
    display: none !important;
}

.page-home .hero__title,
.page-home #heroTitle {
    display: block;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.page-home .hero__title-box,
.page-home .hero__title-panel,
.page-home .hero__headline,
.page-home .hero__headline-card,
.page-home .hero__headline-wrap {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-home .hero__statement {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.12em;
    margin: 1.25rem auto 0 auto;
    width: 100%;
}

.page-home .hero__statement-line {
    margin: 0;
    text-align: center;
    white-space: nowrap;
    font-size: clamp(1.2rem, 2vw, 2.5rem);
    line-height: 1.08;
}

\n\n\n\n\n\n

/* STEP-53-HOME-LAYOUT-FIX START */

/* LAYOUT GLOBAL 80% */
.site-shell {
    width: 80vw !important;
    max-width: 1680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.menu-modal__top,
.modal-nav {
    width: 80vw !important;
    max-width: 1680px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* HEADER / TITLE / TOPO ALIGNES */
.site-header,
.hero-title-box,
.hero__topo {
    width: 100% !important;
}

/* SUPPRESSION CONTOUR TITRE */
.page-home .hero-title-box {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 34px 0 30px 0 !important;
}

/* TITRE PRINCIPAL */
.page-home .hero__title,
.page-home #heroTitle {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: clamp(3.2rem, 5.4vw, 6.4rem) !important;
    line-height: 0.92 !important;
}

/* DEUX PHRASES SOUS LE TITRE */
.page-home .hero__statement {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 25px !important;
    text-align: center !important;
}

.page-home .hero__statement-line {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    white-space: nowrap !important;
    text-align: center !important;
    font-size: clamp(1.05rem, 1.48vw, 1.72rem) !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
}

/* TEXTE DE PRESENTATION */
.page-home .hero__text {
    width: 100% !important;
    max-width: 100% !important;
    margin: 34px auto 48px auto !important;
    text-align: center !important;
    white-space: normal !important;
    font-size: clamp(1.1rem, 1.42vw, 1.55rem) !important;
    line-height: 1.42 !important;
}

/* TOPO ALIGNEMENT */
.page-home .hero__topo {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* RESPONSIVE */
@media (max-width: 1400px) {
    .site-shell,
    .menu-modal__top,
    .modal-nav {
        width: 86vw !important;
    }

    .page-home .hero__title,
    .page-home #heroTitle {
        font-size: clamp(3rem, 5.2vw, 5.6rem) !important;
    }

    .page-home .hero__statement-line {
        font-size: clamp(0.95rem, 1.35vw, 1.35rem) !important;
    }
}

@media (max-width: 980px) {
    .site-shell,
    .menu-modal__top,
    .modal-nav {
        width: 92vw !important;
    }

    .page-home .hero__title,
    .page-home #heroTitle {
        white-space: normal !important;
        font-size: clamp(2.5rem, 9vw, 4.4rem) !important;
    }

    .page-home .hero__statement {
        gap: 16px !important;
    }

    .page-home .hero__statement-line {
        white-space: normal !important;
        font-size: clamp(0.95rem, 3.2vw, 1.25rem) !important;
        line-height: 1.15 !important;
    }

    .page-home .hero__text {
        font-size: 1rem !important;
        line-height: 1.5 !important;
    }
}
/* STEP-53-HOME-LAYOUT-FIX END */


/* STEP-54-HOME-MENU-REFONTE START */

/* MENU BUTTON REMOVED FROM HEADER */
.menu-trigger {
    display: none !important;
}

/* KEEP HEADER CLEAN WITHOUT MENU BUTTON */
.site-header {
    justify-content: flex-start !important;
}

/* HOME MENU DIRECTLY DISPLAYED */
.home-nav {
    width: 100%;
    margin: 52px 0 42px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.home-nav__item,
.home-nav__links-row {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-main);
    background: transparent;
    text-align: left;
    font-size: clamp(1.9rem, 3.3vw, 4rem);
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.home-nav__item {
    transition:
        color var(--transition-fast),
        border-color var(--transition-fast),
        padding-left var(--transition-fast);
}

.home-nav__item:hover {
    color: var(--text-soft);
    border-color: var(--border-strong);
    padding-left: 16px;
}

.home-nav__group {
    width: 100%;
}

.home-nav__links-label {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.home-nav__plus {
    margin-left: auto;
    width: 54px;
    height: 54px;
    border: 1px solid var(--border-soft);
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    font-size: clamp(1.2rem, 2.2vw, 2.6rem);
    line-height: 1;
    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast);
}

.home-nav__plus:hover,
.home-nav__plus[aria-expanded="true"] {
    background: var(--hover-bg);
    color: var(--hover-text);
    border-color: var(--hover-bg);
}

.home-nav__submenu[hidden] {
    display: none !important;
}

.home-nav__submenu {
    display: grid;
    gap: 0;
    padding: 14px 0 22px;
    border-bottom: 1px solid var(--border-soft);
}

.home-nav__subitem {
    display: flex;
    align-items: center;
    min-height: 40px;
    color: var(--text-dim);
    font-size: clamp(0.92rem, 1.25vw, 1.08rem);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    transition:
        color var(--transition-fast),
        padding-left var(--transition-fast);
}

.home-nav__subitem:hover {
    color: var(--text-main);
    padding-left: 18px;
}

/* TOPO BELOW MENU */
.hero__topo {
    margin-top: 0 !important;
}

/* TOPO TEXT -30% */
.hero__topo-title {
    font-size: clamp(1.03rem, 1.62vw, 1.96rem) !important;
}

.hero__topo-meta {
    font-size: clamp(0.50rem, 0.60vw, 0.68rem) !important;
}

.hero__topo-item h3 {
    font-size: clamp(0.74rem, 1.27vw, 1.54rem) !important;
    line-height: 1.05 !important;
}

.hero__topo-item p {
    font-size: clamp(0.71rem, 0.81vw, 0.94rem) !important;
    line-height: 1.45 !important;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    .home-nav__item,
    .home-nav__links-row {
        min-height: 58px;
        font-size: clamp(1.45rem, 4vw, 2.6rem);
        white-space: normal;
    }

    .home-nav__plus {
        width: 46px;
        height: 46px;
    }

    .hero__topo-title {
        font-size: clamp(1rem, 2.6vw, 1.65rem) !important;
    }

    .hero__topo-item h3 {
        font-size: clamp(0.88rem, 2.2vw, 1.18rem) !important;
    }

    .hero__topo-item p {
        font-size: clamp(0.82rem, 1.9vw, 1rem) !important;
    }
}

@media (max-width: 760px) {
    .home-nav {
        margin: 34px 0 32px;
    }

    .home-nav__item,
    .home-nav__links-row {
        min-height: 50px;
        font-size: clamp(1.1rem, 6vw, 2rem);
    }

    .home-nav__plus {
        width: 42px;
        height: 42px;
    }

    .home-nav__subitem {
        font-size: 0.82rem;
    }
}

/* STEP-54-HOME-MENU-REFONTE END */







/* STEP-58-HEADER-TRUE-CENTER START */

/* Banner reset: 3-column grid with equal left/right zones */
.site-header {
    width: 100% !important;
    min-height: 118px !important;
    max-height: 132px !important;
    padding: 14px 22px !important;
    display: grid !important;
    grid-template-columns: 132px minmax(0, 1fr) 132px !important;
    align-items: center !important;
    gap: 0 !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Left logo only */
.site-header .brand-mark {
    grid-column: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
}

.site-header .brand-mark__logo {
    display: block !important;
    width: 112px !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Hide any legacy brand text if still generated elsewhere */
.site-header .brand-mark__copy,
.site-header .brand-mark__title,
.site-header .brand-mark__main,
.site-header .brand-mark__sub,
.site-header__hero,
.site-header__hero-title,
.site-header__hero-main,
.site-header__hero-sub {
    display: none !important;
}

/* Exact centered title zone */
.header-title-block {
    grid-column: 2 !important;
    width: 100% !important;
    min-width: 0 !important;
    display: grid !important;
    justify-items: center !important;
    align-content: center !important;
    text-align: center !important;
    gap: 7px !important;
}

.header-title-block__title {
    width: 100% !important;
    margin: 0 !important;
    color: var(--text-main) !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    font-size: clamp(2.05rem, 3.05vw, 3.65rem) !important;
    line-height: 0.9 !important;
    letter-spacing: -0.035em !important;
}

.header-title-block__meta {
    width: 100% !important;
    margin: 0 !important;
    color: var(--text-main) !important;
    text-align: center !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    font-size: clamp(0.58rem, 0.76vw, 0.86rem) !important;
    line-height: 1 !important;
    letter-spacing: 0.18em !important;
}

/* Right empty column: same width as logo column */
.site-header__right-spacer {
    grid-column: 3 !important;
    width: 132px !important;
    min-width: 132px !important;
    height: 1px !important;
}

/* Responsive */
@media (max-width: 1180px) {
    .site-header {
        grid-template-columns: 108px minmax(0, 1fr) 108px !important;
        min-height: 112px !important;
        max-height: none !important;
    }

    .site-header .brand-mark,
    .site-header__right-spacer {
        width: 108px !important;
        min-width: 108px !important;
        max-width: 108px !important;
    }

    .site-header .brand-mark__logo {
        width: 88px !important;
    }

    .header-title-block__title {
        font-size: clamp(1.65rem, 3.8vw, 3rem) !important;
    }

    .header-title-block__meta {
        font-size: clamp(0.52rem, 0.9vw, 0.72rem) !important;
    }
}

@media (max-width: 760px) {
    .site-header {
        grid-template-columns: 68px minmax(0, 1fr) !important;
        min-height: auto !important;
        padding: 14px 16px !important;
        gap: 14px !important;
    }

    .site-header .brand-mark {
        width: 68px !important;
        min-width: 68px !important;
        max-width: 68px !important;
    }

    .site-header .brand-mark__logo {
        width: 68px !important;
    }

    .site-header__right-spacer {
        display: none !important;
    }

    .header-title-block {
        justify-items: start !important;
        text-align: left !important;
    }

    .header-title-block__title,
    .header-title-block__meta {
        text-align: left !important;
        white-space: normal !important;
    }

    .header-title-block__title {
        font-size: clamp(1.35rem, 6.5vw, 2.2rem) !important;
    }
}

/* STEP-58-HEADER-TRUE-CENTER END */

/* STEP-59-SINGLE-LINE-STATEMENT START */

/* One-line hero statement */
.page-home .hero__statement.hero__statement--single {
    width: 100% !important;
    max-width: 100% !important;
    margin: 34px auto 0 auto !important;
    display: block !important;
    text-align: center !important;
}

.page-home .hero__statement-single {
    display: block !important;
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: clamp(0.95rem, 1.32vw, 1.55rem) !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    color: var(--text-main) !important;
}

/* Disable old line behavior if still present */
.page-home .hero__statement-line {
    display: inline !important;
    width: auto !important;
}

/* Responsive fallback */
@media (max-width: 1180px) {
    .page-home .hero__statement-single {
        font-size: clamp(0.82rem, 1.75vw, 1.2rem) !important;
    }
}

@media (max-width: 760px) {
    .page-home .hero__statement-single {
        white-space: normal !important;
        font-size: clamp(0.9rem, 4vw, 1.15rem) !important;
        line-height: 1.2 !important;
    }
}

/* STEP-59-SINGLE-LINE-STATEMENT END */

/* STEP-60-HERO-PRESENTATION-TEXT START */

/* Presentation text uses the full layout width */
.page-home .hero__text,
.page-home .hero__text--extended {
    width: 100% !important;
    max-width: 100% !important;
    margin: 36px 0 54px 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 18px !important;
    text-align: left !important;
    color: var(--text-soft) !important;
}

.page-home .hero__text--extended p {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--text-soft) !important;
    font-size: clamp(1rem, 1.18vw, 1.32rem) !important;
    line-height: 1.5 !important;
    letter-spacing: 0.015em !important;
    white-space: normal !important;
}

/* Avoid paragraph compression on large screens */
@media (min-width: 1400px) {
    .page-home .hero__text--extended p {
        font-size: clamp(1.08rem, 1.12vw, 1.36rem) !important;
        line-height: 1.48 !important;
    }
}

/* Responsive */
@media (max-width: 980px) {
    .page-home .hero__text,
    .page-home .hero__text--extended {
        gap: 14px !important;
        margin: 28px 0 42px 0 !important;
    }

    .page-home .hero__text--extended p {
        font-size: 0.98rem !important;
        line-height: 1.55 !important;
    }
}

/* STEP-60-HERO-PRESENTATION-TEXT END */


/* STEP-61-PRESENTATION-CONTAINER START */

/* Main statement +40% */
.page-home .hero__statement.hero__statement--single {
    margin: 38px auto 0 auto !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
}

.page-home .hero__statement-single {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    white-space: nowrap !important;
    font-size: clamp(1.33rem, 1.85vw, 2.17rem) !important;
    line-height: 1 !important;
    letter-spacing: 0.02em !important;
    color: var(--text-main) !important;
}

/* Presentation container */
.page-home .hero__presentation-box {
    width: 100% !important;
    max-width: 100% !important;
    margin: 40px 0 54px 0 !important;
    padding: 28px 34px !important;
    border: 3px solid #6a6a6a !important;
    border-radius: 18px !important;
    background: transparent !important;
    box-sizing: border-box !important;
}

/* Text inside centered container */
.page-home .hero__text,
.page-home .hero__text--extended {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 20px !important;
    text-align: center !important;
    justify-items: center !important;
    color: var(--text-soft) !important;
}

.page-home .hero__text--extended p {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
    color: var(--text-soft) !important;
    font-size: clamp(1rem, 1.12vw, 1.24rem) !important;
    line-height: 1.55 !important;
    letter-spacing: 0.01em !important;
    white-space: normal !important;
}

/* Responsive */
@media (max-width: 1180px) {
    .page-home .hero__statement-single {
        font-size: clamp(1.05rem, 2.15vw, 1.6rem) !important;
        white-space: normal !important;
        line-height: 1.2 !important;
    }

    .page-home .hero__presentation-box {
        padding: 24px 24px !important;
        margin: 34px 0 44px 0 !important;
    }

    .page-home .hero__text--extended p {
        font-size: 0.98rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 760px) {
    .page-home .hero__presentation-box {
        padding: 20px 18px !important;
        border-radius: 14px !important;
    }

    .page-home .hero__statement-single {
        font-size: clamp(1rem, 4.4vw, 1.28rem) !important;
    }

    .page-home .hero__text--extended p {
        font-size: 0.94rem !important;
    }
}

/* STEP-61-PRESENTATION-CONTAINER END */

/* STEP-62-PRESENTATION-WIDTH-TEXT START */

/* Presentation container uses maximum available text width */
.page-home .hero__presentation-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 24px 18px !important;
    margin: 40px 0 54px 0 !important;
    box-sizing: border-box !important;
}

/* Text enlarged and stretched across the full container */
.page-home .hero__text,
.page-home .hero__text--extended {
    width: 100% !important;
    max-width: 100% !important;
    justify-items: stretch !important;
    text-align: center !important;
    gap: 22px !important;
}

.page-home .hero__text--extended p {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
    text-align: center !important;
    font-size: clamp(1.34rem, 1.56vw, 1.82rem) !important;
    line-height: 1.42 !important;
    letter-spacing: 0.006em !important;
    white-space: normal !important;
}

/* Large desktop: keep text visually dense */
@media (min-width: 1500px) {
    .page-home .hero__text--extended p {
        font-size: clamp(1.46rem, 1.45vw, 1.92rem) !important;
        line-height: 1.38 !important;
    }
}

/* Medium screens */
@media (max-width: 1180px) {
    .page-home .hero__presentation-box {
        padding: 22px 16px !important;
    }

    .page-home .hero__text--extended p {
        font-size: clamp(1.08rem, 2vw, 1.42rem) !important;
        line-height: 1.48 !important;
    }
}

/* Mobile */
@media (max-width: 760px) {
    .page-home .hero__presentation-box {
        padding: 20px 14px !important;
    }

    .page-home .hero__text--extended p {
        font-size: clamp(0.98rem, 4.2vw, 1.16rem) !important;
        line-height: 1.5 !important;
    }
}

/* STEP-62-PRESENTATION-WIDTH-TEXT END */
