/* raulonrepeat — Equinox PT × Coachella */

:root {
    --black: #000000;
    --white: #ffffff;
    --blue: #2962ff;
    --blue-hover: #1a4fd6;
    --gray: #888888;
    --gray-dark: #1a1a1a;
    --overlay: rgba(0, 0, 0, 0.55);
    --overlay-heavy: rgba(0, 0, 0, 0.72);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --nav-height: 200px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ── Navigation ── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    transition: background var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__logo img {
    height: 180px;
    width: auto;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    list-style: none;
}

.nav__links a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.85;
    transition: opacity 0.2s, color 0.2s;
}

.nav__links a:hover {
    opacity: 1;
    color: var(--blue);
}

.nav__cta {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    padding: 0.65rem 1.4rem;
    border: 1px solid var(--white);
    transition: background 0.25s, border-color 0.25s, color 0.25s !important;
    opacity: 1 !important;
}

.nav__cta:hover {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    color: var(--white) !important;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--white);
    margin: 5px 0;
    transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--nav-height) + 2rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 8vw, 6rem);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.08);
    transition: transform 8s ease-out;
}

.hero.loaded .hero__bg {
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--black) 0%,
        rgba(0, 0, 0, 0.4) 40%,
        rgba(0, 0, 0, 0.25) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1.25rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.3s forwards;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 10vw, 8rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.9s 0.5s forwards;
}

.hero__title em {
    font-style: normal;
    color: var(--blue);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 300;
    max-width: 520px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.7s forwards;
    color: rgba(255, 255, 255, 0.85);
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s 0.9s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Buttons ── */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn--primary {
    background: var(--blue);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 30px rgba(41, 98, 255, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

/* ── Marquee ── */

.marquee {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    white-space: nowrap;
}

.marquee__track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.marquee__item {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0 2rem;
    color: rgba(255, 255, 255, 0.15);
}

.marquee__item span {
    color: var(--blue);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hero--centered {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: clamp(3rem, 8vw, 6rem);
}

.hero__overlay--centered {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.hero__content--centered {
    max-width: 820px;
    margin: 0 auto;
}

.hero__label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
    color: rgba(255, 255, 255, 0.9);
}

.hero__title--sm {
    font-size: clamp(2.75rem, 7vw, 5.5rem);
    margin-bottom: 2rem;
}

.hero__actions--centered {
    justify-content: center;
}

/* ── Editorial intro ── */

.editorial {
    position: relative;
    padding: clamp(5rem, 12vw, 9rem) clamp(1.5rem, 4vw, 4rem);
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.editorial--visual {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.editorial__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.editorial__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.editorial__inner {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.editorial__headline {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 2.5rem;
}

.editorial__text {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.85;
    margin-bottom: 1.5rem;
}

.editorial__text:last-child {
    margin-bottom: 0;
}

/* ── The Difference ── */

.difference {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 4rem);
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.difference__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.difference__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 2.5rem;
}

.difference__list {
    list-style: none;
}

.difference__item {
    padding: 1.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.difference__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.difference__item h3 {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.difference__item p {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.difference__media {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--gray-dark);
}

.difference__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.difference__media:hover img {
    transform: scale(1.04);
}

/* ── Pillars (EQX OS) ── */

.pillars {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 4rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pillars__header {
    max-width: 680px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.pillars__intro {
    max-width: 560px;
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin: 0 auto;
}

.pillar {
    background: var(--black);
    padding: clamp(2rem, 4vw, 3rem);
    min-height: 240px;
    transition: background 0.3s;
}

.pillar:hover {
    background: rgba(41, 98, 255, 0.06);
}

.pillar__num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--blue);
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
}

.pillar__title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.pillar__text {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
}

/* ── Split modules ── */

.split-module {
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.split-module__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    max-width: 1400px;
    margin: 0 auto;
}

.split-module--reverse .split-module__grid {
    direction: rtl;
}

.split-module--reverse .split-module__content,
.split-module--reverse .split-module__media {
    direction: ltr;
}

.split-module__media {
    overflow: hidden;
    background: var(--gray-dark);
    min-height: 400px;
}

.split-module__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--transition);
}

.split-module:hover .split-module__media img {
    transform: scale(1.03);
}

.split-module__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(2.5rem, 5vw, 5rem);
}

.split-module__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.split-module__text {
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 440px;
}

/* ── Filmstrip ── */

.filmstrip {
    overflow: hidden;
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.filmstrip__track {
    display: flex;
    width: max-content;
    animation: filmstrip 40s linear infinite;
}

.filmstrip__slide {
    flex-shrink: 0;
    width: clamp(220px, 28vw, 380px);
    height: clamp(160px, 22vw, 280px);
    overflow: hidden;
}

.filmstrip__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) saturate(1.1);
    transition: filter 0.4s, transform 0.6s var(--transition);
}

.filmstrip__slide:hover img {
    filter: brightness(1) saturate(1.2);
    transform: scale(1.05);
}

@keyframes filmstrip {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ── Mosaic ── */

.mosaic {
    padding: clamp(4rem, 10vw, 7rem) clamp(1.5rem, 4vw, 4rem);
    background: var(--black);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mosaic__header {
    max-width: 680px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mosaic__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: clamp(200px, 28vw, 360px);
    gap: 4px;
    max-width: 1400px;
    margin: 0 auto;
}

.mosaic__grid--dynamic {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    grid-auto-rows: clamp(220px, 24vw, 320px);
}

.mosaic__item {
    overflow: hidden;
    position: relative;
    background: var(--gray-dark);
}

.mosaic__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition), filter 0.4s;
    filter: brightness(0.8);
}

.mosaic__item:hover img {
    transform: scale(1.08);
    filter: brightness(1);
}

.mosaic__item--hero {
    grid-column: span 2;
    grid-row: span 2;
}

.mosaic__item--wide {
    grid-column: span 2;
}

/* ── Results visual ── */

.results-visual {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 4rem);
    overflow: hidden;
}

.results-visual__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: 70% 80%;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.results-visual__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.55) 40%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.results-visual__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.results-visual__content .section__desc {
    max-width: 520px;
}

/* ── CTA visual ── */

.cta--visual {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}

.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.92) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.65) 100%
    );
}

.cta__inner {
    position: relative;
    z-index: 2;
}

/* ── Sections ── */

.section {
    padding: clamp(4rem, 10vw, 8rem) clamp(1.5rem, 4vw, 4rem);
}

.section--dark {
    background: var(--black);
}

.section--gray {
    background: var(--gray-dark);
}

.section__header {
    max-width: 680px;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section__eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 1rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section__desc {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* ── Feature cards (Equinox-style modules) ── */

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.card {
    position: relative;
    background: var(--black);
    min-height: 480px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    cursor: default;
}

.card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s var(--transition);
}

.card:hover .card__img {
    transform: scale(1.06);
}

.card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--overlay-heavy) 0%, transparent 60%);
    transition: background 0.4s;
}

.card:hover .card__overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(41, 98, 255, 0.15) 100%);
}

.card__body {
    position: relative;
    z-index: 2;
}

.card__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.card__text {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.card__link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
}

.card:hover .card__link {
    gap: 0.75rem;
}

/* ── Full-bleed banner ── */

.banner {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem clamp(1.5rem, 4vw, 4rem);
    overflow: hidden;
}

.banner__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background: var(--overlay-heavy);
}

.banner__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.banner__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.banner__text {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* ── Gallery grid ── */

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 4px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    background: var(--gray-dark);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition), filter 0.4s;
    filter: brightness(0.85);
}

.gallery__item:hover img {
    transform: scale(1.05);
    filter: brightness(1);
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.gallery__item:hover .gallery__caption {
    opacity: 1;
    transform: translateY(0);
}

/* ── CTA block ── */

.cta {
    text-align: center;
    padding: clamp(5rem, 12vw, 10rem) clamp(1.5rem, 4vw, 4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.cta__title em {
    font-style: normal;
    color: var(--blue);
}

.cta__text {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.65);
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

/* ── Footer ── */

.footer {
    padding: 3rem clamp(1.5rem, 4vw, 4rem);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer__logo img {
    height: 100px;
    opacity: 0.7;
}

.footer__links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
}

.footer__links a {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--blue);
}

.footer__copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.35);
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* ── Scroll reveal ── */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Responsive ── */

@media (max-width: 1024px) {
    .mosaic__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .mosaic__item--hero {
        grid-column: span 2;
        grid-row: span 1;
        min-height: 320px;
    }

    .mosaic__item--wide {
        grid-column: span 2;
    }

    .mosaic__item {
        min-height: 220px;
    }

    .difference__grid,
    .split-module__grid {
        grid-template-columns: 1fr;
    }

    .difference__media {
        aspect-ratio: 16 / 10;
        order: -1;
    }

    .split-module--reverse .split-module__grid {
        direction: ltr;
    }

    .split-module__media {
        min-height: 320px;
    }

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

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

    .card {
        min-height: 380px;
    }

    .gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item--tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .mosaic__grid {
        grid-template-columns: 1fr;
    }

    .mosaic__item--hero,
    .mosaic__item--wide {
        grid-column: span 1;
    }

    :root {
        --nav-height: 120px;
    }

    .nav__logo img {
        height: 100px;
    }

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

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transition: right 0.4s var(--transition);
    }

    .nav__links.open {
        right: 0;
    }

    .nav__links a {
        font-size: 0.85rem;
    }

    .nav__toggle {
        display: block;
        z-index: 101;
    }

    .nav__toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav__toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .banner__bg,
    .editorial__bg,
    .cta__bg,
    .results-visual__bg {
        background-attachment: scroll;
    }

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

    .gallery__item--wide {
        grid-column: span 1;
    }
}
