:root {
    --sl-red: #ed1c24;
    --sl-red-dark: #b90812;
    --sl-black: #080c0f;
    --sl-black-deep: #030506;
    --sl-graphite: #11171c;
    --sl-graphite-soft: #172028;
    --sl-paper: #f5f6f4;
    --sl-paper-2: #ebeeec;
    --sl-white: #ffffff;
    --sl-ink: #101214;
    --sl-muted: #5c6264;
    --sl-light-muted: rgba(255, 255, 255, 0.72);
    --sl-line-dark: rgba(255, 255, 255, 0.1);
    --sl-line-light: rgba(16, 18, 20, 0.15);
    --sl-heading: "Manrope", "Helvetica Neue", Arial, sans-serif;
    --sl-body: "Inter", "Helvetica Neue", Arial, sans-serif;
    --sl-wrap: 1440px;
    --sl-section-y: clamp(72px, 8vw, 128px);
    --sl-header-height: 92px;
}

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

html {
    min-width: 320px;
    background: var(--sl-black);
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--sl-black);
    color: var(--sl-white);
    font-family: var(--sl-body);
    font-size: 16px;
    line-height: 1.62;
    font-synthesis: none;
}

body.nav-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.22em;
}

button,
input,
textarea {
    font: inherit;
}

button {
    border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--sl-red);
    outline-offset: 4px;
}

p,
h1,
h2,
h3,
figure {
    margin-top: 0;
}

h1,
h2,
h3,
.eyebrow,
.button,
.site-nav a,
.footer-heading {
    font-family: var(--sl-heading);
}

h1,
h2,
h3 {
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0;
}

h1 {
    max-width: 860px;
    font-size: clamp(46px, 7.2vw, 112px);
    text-transform: uppercase;
}

h2 {
    font-size: clamp(32px, 4.2vw, 64px);
}

h3 {
    font-size: clamp(18px, 2vw, 26px);
}

p {
    margin-bottom: 22px;
}

.skip-link {
    position: fixed;
    top: 14px;
    left: 14px;
    z-index: 2000;
    padding: 10px 14px;
    background: var(--sl-white);
    color: var(--sl-ink);
    transform: translateY(-170%);
}

.skip-link:focus {
    transform: translateY(0);
}

.wrap {
    width: min(calc(100% - 76px), var(--sl-wrap));
    margin-inline: auto;
}

.text-red {
    color: var(--sl-red);
}

.section {
    padding: var(--sl-section-y) 0;
}

.section--black,
.section--dark {
    background: var(--sl-black);
    color: var(--sl-white);
}

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

.section__header {
    display: grid;
    grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
    gap: clamp(34px, 6vw, 96px);
    align-items: end;
    margin-bottom: clamp(38px, 5vw, 72px);
}

.section__header p,
.source-copy,
.prose,
.hero__lead,
.inspire-band__panel p,
.cta__inner p {
    color: var(--sl-light-muted);
}

.eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--sl-red);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: 0;
    text-transform: uppercase;
}

.button,
.site-nav__catalogue,
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border: 1px solid currentColor;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: uppercase;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
    border-color: var(--sl-red);
    color: var(--sl-red);
    transform: translateY(-1px);
}

.button--primary,
.button--light,
.site-nav__catalogue {
    border-color: var(--sl-red);
    background: var(--sl-red);
    color: var(--sl-white);
}

.button--primary:hover,
.button--light:hover,
.site-nav__catalogue:hover,
.site-nav__catalogue:focus-visible {
    border-color: var(--sl-red-dark);
    background: var(--sl-red-dark);
    color: var(--sl-white);
}

.button--ghost,
.button--secondary {
    color: var(--sl-white);
}

.button--ghost:hover,
.button--secondary:hover {
    background: rgba(255, 255, 255, 0.04);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(8, 12, 15, 0.98);
    border-bottom: 1px solid var(--sl-line-dark);
    transition: transform 240ms ease, background 180ms ease, border-color 180ms ease;
    will-change: transform;
}

body.admin-bar .site-header {
    top: var(--wp-admin--admin-bar--height, 32px);
}

.site-header.is-scrolled {
    background: rgba(8, 12, 15, 0.98);
    border-color: rgba(255, 255, 255, 0.12);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

body.nav-open .site-header,
.site-header:focus-within {
    transform: translateY(0);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(calc(100% - 76px), var(--sl-wrap));
    min-height: var(--sl-header-height);
    margin-inline: auto;
    gap: 34px;
}

.brand,
.footer-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    text-decoration: none;
}

.brand img,
.brand__logo,
.custom-logo {
    width: auto;
    height: 58px;
    max-width: 180px;
    max-height: 58px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 38px;
    margin-left: auto;
}

.site-nav__list,
.footer-nav {
    display: flex;
    align-items: center;
    gap: 34px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.82);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--sl-white);
}

.site-nav__catalogue {
    min-height: 48px;
    padding: 0 28px;
    color: var(--sl-white);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 4px;
    border-radius: 999px;
    background: var(--sl-white);
    color: var(--sl-ink);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.site-nav .language-switcher__item {
    display: inline-grid;
    min-width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 999px;
    color: rgba(16, 18, 20, 0.64);
    font-family: var(--sl-heading);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease;
}

.site-nav .language-switcher__item:hover,
.site-nav .language-switcher__item:focus-visible {
    color: var(--sl-ink);
}

.site-nav .language-switcher__item.is-active {
    background: var(--sl-red);
    color: var(--sl-white);
}
.header-cta {
    display: none;
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    background: transparent;
    color: var(--sl-white);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 7px auto;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
}

.hero,
.page-hero,
.inspire-band,
.project-card,
.custom-band__image {
    background-color: var(--sl-black);
    background-position: center;
    background-size: cover;
}

.hero {
    position: relative;
    display: grid;
    min-height: calc(100svh - var(--sl-header-height));
    overflow: hidden;
    isolation: isolate;
}

.hero::before,
.hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    content: "";
}

.hero::before {
    background:
        linear-gradient(90deg, rgba(3, 5, 6, 0.92) 0%, rgba(3, 5, 6, 0.74) 35%, rgba(3, 5, 6, 0.28) 72%),
        linear-gradient(180deg, rgba(3, 5, 6, 0.16), rgba(3, 5, 6, 0.8));
}

.hero::after {
    background: radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.12), transparent 36%);
    opacity: 0.38;
}

.hero__video {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--sl-black);
}

.hero__inner {
    position: relative;
    display: grid;
    align-items: center;
    min-height: inherit;
    padding: clamp(54px, 7vh, 88px) 0;
}

.hero__copy {
    max-width: 840px;
}

.hero h1 {
    font-size: clamp(44px, 5.6vw, 96px);
    line-height: 0.98;
}

.hero__lead {
    max-width: 560px;
    font-size: clamp(17px, 1.6vw, 21px);
}

html[lang^="fr"] .hero__inner {
    padding: clamp(34px, 5vh, 58px) 0;
}

html[lang^="fr"] .hero h1 {
    font-size: clamp(40px, 4.2vw, 76px);
    line-height: 0.98;
}

html[lang^="fr"] .hero__lead {
    max-width: 620px;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.52;
}

html[lang^="fr"] .hero__actions {
    margin-top: 24px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.advantage-grid,
.service-grid,
.audience-grid,
.project-grid {
    display: grid;
    gap: 24px;
}

.advantage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-card,
.service-card,
.content-panel,
.contact-panel,
.contact-cards article {
    border: 1px solid var(--sl-line-dark);
    background: rgba(255, 255, 255, 0.025);
}

.advantage-card {
    min-height: 180px;
    padding: 34px;
}

.advantage-card > span,
.service-card > span,
.process-list > li > span {
    display: inline-grid;
    width: 36px;
    height: 36px;
    margin-bottom: 24px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--sl-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0;
}

.advantage-card h3,
.service-card h3,
.content-panel h2 {
    margin-bottom: 14px;
    font-size: clamp(20px, 2.2vw, 30px);
}

.advantage-card p,
.service-card p,
.project-card em,
.project-detail p,
.project-meta dd,
.content-panel p,
.contact-panel p,
.contact-cards p {
    color: var(--sl-light-muted);
}

.expertise__inner,
.split,
.custom-band__inner,
.contact-layout,
.cta__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: center;
}

.expertise__inner--solo {
    grid-template-columns: minmax(0, 580px);
}

.expertise__copy {
    max-width: 580px;
}

.inspire-band {
    min-height: clamp(560px, 68vw, 820px);
    background-image:
        linear-gradient(90deg, rgba(3, 5, 6, 0.88) 0%, rgba(3, 5, 6, 0.58) 38%, rgba(3, 5, 6, 0.1) 80%),
        var(--section-image);
}

.inspire-band__inner {
    display: grid;
    align-items: center;
    min-height: inherit;
}

.inspire-band__panel {
    max-width: 560px;
}

.projects-section .section__header {
    align-items: start;
}

.project-filter {
    display: grid;
    grid-template-columns: minmax(160px, auto) minmax(0, 1fr);
    gap: clamp(20px, 3vw, 44px);
    align-items: center;
    margin-bottom: 34px;
    padding: 0 0 30px;
    border-bottom: 1px solid var(--sl-line-dark);
}

.project-filter .eyebrow {
    margin-bottom: 0;
}

.project-filter__controls {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.project-filter__button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid var(--sl-line-dark);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.74);
    cursor: pointer;
    font-family: var(--sl-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.project-filter__button:hover,
.project-filter__button:focus-visible {
    border-color: rgba(255, 255, 255, 0.34);
    color: var(--sl-white);
    transform: translateY(-1px);
}

.project-filter__button.is-active {
    border-color: var(--sl-red);
    background: var(--sl-red);
    color: var(--sl-white);
}

.project-filter__count {
    display: inline-grid;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    line-height: 1;
}

.project-filter__button.is-active .project-filter__count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--sl-white);
}

.project-filter__empty {
    margin-top: 30px;
    padding: 26px;
    border: 1px solid var(--sl-line-dark);
    color: var(--sl-light-muted);
}

.project-card[hidden] {
    display: none;
}

.project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
    min-height: clamp(420px, 34vw, 560px);
    background-image:
        linear-gradient(180deg, rgba(3, 5, 6, 0.1), rgba(3, 5, 6, 0.82)),
        var(--section-image);
}

.project-card a,
.project-card__body {
    display: flex;
    min-height: inherit;
    padding: 30px;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
}

.project-card span,
.project-card strong,
.project-card em {
    display: block;
}

.project-card span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-card strong {
    margin-top: 10px;
    font-family: var(--sl-heading);
    font-size: 24px;
    line-height: 1.1;
    hyphens: auto;
    overflow-wrap: break-word;
}

.project-card em {
    margin-top: 12px;
    font-style: normal;
}


.project-card__read-more {
    align-self: flex-start;
    margin-top: 24px;
    padding: 0 0 8px;
    border: 0;
    border-bottom: 2px solid var(--sl-red);
    background: transparent;
    color: var(--sl-white);
    cursor: pointer;
    font-family: var(--sl-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    line-height: 1.2;
    text-transform: uppercase;
    transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.project-card__read-more:hover,
.project-card__read-more:focus-visible {
    border-color: var(--sl-white);
    color: var(--sl-white);
    transform: translateY(-1px);
}

body.project-modal-open {
    overflow: hidden;
}

.project-modal[hidden] {
    display: none;
}

.project-modal {
    position: fixed;
    inset: 0;
    z-index: 1400;
    display: grid;
    padding: clamp(20px, 4vw, 56px);
    place-items: center;
    color: var(--sl-white);
}

.project-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 5, 6, 0.86);
    backdrop-filter: blur(10px);
}

.project-modal__dialog {
    position: relative;
    width: min(100%, 1440px);
    max-height: min(84svh, 820px);
    overflow: auto;
    background: var(--sl-graphite);
    border: 1px solid var(--sl-line-dark);
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.52);
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.project-modal.is-open .project-modal__dialog {
    opacity: 1;
    transform: translateY(0);
}

.project-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--sl-red);
    color: var(--sl-white);
    cursor: pointer;
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    transition: background 180ms ease, transform 180ms ease;
}

.project-modal__close:hover,
.project-modal__close:focus-visible {
    background: var(--sl-red-dark);
    transform: translateY(-1px);
}

.project-detail.project-modal__detail {
    grid-template-columns: minmax(300px, 0.38fr) minmax(190px, 0.24fr) minmax(360px, 1fr);
    gap: clamp(26px, 3vw, 46px);
    align-items: start;
    border: 0;
    background: transparent;
}

.project-detail.project-modal__detail > div,
.project-detail.project-modal__detail .project-meta,
.project-detail.project-modal__detail .project-narrative {
    min-width: 0;
}

.project-detail.project-modal__detail h2 {
    max-width: 100%;
    margin-bottom: 18px;
    font-size: clamp(34px, 2.8vw, 50px);
    line-height: 1.02;
    hyphens: auto;
    overflow-wrap: break-word;
}

.project-detail.project-modal__detail > div > p:last-child {
    max-width: 30rem;
}

.project-detail.project-modal__detail .project-meta {
    align-content: start;
}

.project-detail.project-modal__detail .project-narrative {
    max-width: 760px;
}

.project-detail.project-modal__detail .project-meta dd,
.project-detail.project-modal__detail .project-narrative p {
    overflow-wrap: break-word;
}
.experience-section {
    background: var(--sl-black);
}

.experience-section__intro {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: end;
}

.experience-section__intro h2 {
    max-width: min(100%, 1280px);
    font-size: clamp(24px, 1.85vw, 32px);
    line-height: 1.16;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: break-word;
}

.experience-section__intro .source-copy {
    max-width: 760px;
}


.client-carousel-section {
    overflow: hidden;
    background: #eef0ed;
    color: var(--sl-ink);
}

.client-carousel-section h2,
.client-carousel-section .eyebrow {
    color: var(--sl-ink);
}

.client-carousel-section .source-copy {
    color: var(--sl-muted);
}

.client-carousel {
    position: relative;
    width: 100vw;
    margin: 58px 0 0 calc(50% - 50vw);
    overflow: hidden;
    background: var(--sl-white);
    border-top: 1px solid var(--sl-line-light);
    border-bottom: 1px solid var(--sl-line-light);
}

.client-carousel__viewport {
    overflow: hidden;
}

.client-carousel__track {
    display: flex;
    width: max-content;
    transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.client-carousel .client-logo {
    position: relative;
    display: grid;
    flex: 0 0 clamp(206px, 16vw, 268px);
    min-height: 146px;
    place-items: center;
    padding: 28px 34px;
    overflow: hidden;
    background: var(--sl-white);
    border-right: 1px solid var(--sl-line-light);
}

.client-carousel .client-logo img {
    width: auto;
    max-width: min(194px, 100%);
    height: auto;
    max-height: 76px;
    object-fit: contain;
}

.client-carousel .client-logo img[alt="CHUV"] {
    max-width: 198px;
    max-height: 88px;
}

.client-carousel .client-logo img[alt="Bordier"] {
    max-width: 180px;
    max-height: 64px;
    mix-blend-mode: multiply;
}

.client-carousel__button {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    background: var(--sl-ink);
    color: var(--sl-white);
    cursor: pointer;
    font-family: var(--sl-heading);
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    transform: translateY(-50%);
    transition: background 180ms ease, color 180ms ease;
}

.client-carousel__button:hover,
.client-carousel__button:focus-visible {
    background: var(--sl-red);
    color: var(--sl-white);
}

.client-carousel__button--prev {
    left: clamp(12px, 2.6vw, 34px);
}

.client-carousel__button--next {
    right: clamp(12px, 2.6vw, 34px);
}

.catalogue-cta,
.quote-cta {
    color: var(--sl-white);
}

.catalogue-cta {
    background: var(--sl-graphite);
}

.quote-cta {
    background: var(--sl-black);
}

.cta__inner {
    align-items: end;
}

.cta__inner .button {
    justify-self: end;
}

.page-hero {
    min-height: clamp(430px, 52vw, 700px);
    background-image:
        linear-gradient(90deg, rgba(3, 5, 6, 0.9) 0%, rgba(3, 5, 6, 0.64) 42%, rgba(3, 5, 6, 0.28) 100%),
        var(--section-image);
}

.page-hero__inner {
    display: grid;
    align-content: center;
    min-height: inherit;
    padding: clamp(80px, 9vw, 130px) 0;
}

.page-hero p:not(.eyebrow) {
    max-width: 700px;
    color: var(--sl-light-muted);
    font-size: 18px;
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.calculation-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-card,
.content-panel,
.contact-panel,
.contact-cards article {
    padding: clamp(26px, 3vw, 42px);
}

.process-list {
    display: grid;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.process-list li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--sl-line-dark);
}

.process-list h3 {
    margin-bottom: 8px;
}

.audience-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.audience-grid article {
    padding: 34px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--sl-line-dark);
}

.project-detail-list {
    display: grid;
    gap: 32px;
}

.project-detail {
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(220px, 0.36fr) minmax(0, 1fr);
    gap: 32px;
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid var(--sl-line-dark);
    background: rgba(255, 255, 255, 0.025);
}

.project-meta {
    display: grid;
    gap: 16px;
    margin: 0;
}

.project-meta div {
    display: grid;
    gap: 4px;
}

.project-meta dt,
.project-narrative h3,
.contact-cards span {
    display: block;
    margin-bottom: 10px;
    color: var(--sl-red);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
}

.project-meta dd {
    margin: 0;
}

.project-narrative h3 {
    margin-bottom: 8px;
}

.custom-band {
    background: var(--sl-black);
    color: var(--sl-white);
}

.custom-band__inner {
    align-items: stretch;
}

.custom-band__image {
    min-height: 560px;
    background-image: var(--section-image);
}

.custom-band__content {
    display: grid;
    align-content: center;
}

.check-list {
    display: grid;
    gap: 16px;
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--sl-light-muted);
}

.check-list li::before {
    position: absolute;
    top: 0.82em;
    left: 0;
    width: 16px;
    height: 1px;
    background: var(--sl-red);
    content: "";
}

.contact-layout {
    align-items: start;
}

.contact-form {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.form-notice {
    padding: 14px 16px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--sl-white);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--sl-light-muted);
    font-size: 13px;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--sl-line-dark);
    background: rgba(255, 255, 255, 0.05);
    color: var(--sl-white);
    padding: 14px 16px;
}

.contact-form textarea {
    resize: vertical;
}

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

.contact-cards {
    display: grid;
    gap: 18px;
}

.contact-cards a {
    color: var(--sl-white);
}

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

.section--editor {
    background: var(--sl-paper);
    color: var(--sl-ink);
}

.prose {
    max-width: 860px;
    color: var(--sl-muted);
}

.prose h1,
.prose h2,
.prose h3 {
    color: var(--sl-ink);
}

.legal-document {
    display: grid;
    gap: 18px;
}

.legal-document h2 {
    margin-top: 28px;
    font-size: clamp(24px, 2.2vw, 34px);
}

.legal-document h3 {
    margin: 8px 0 -4px;
    font-size: 17px;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.solution-card a {
    display: grid;
    min-height: 100%;
    background: var(--sl-white);
    color: var(--sl-ink);
    text-decoration: none;
}

.solution-card a::before {
    display: block;
    aspect-ratio: 16 / 8.7;
    background-color: #e6e7e5;
    background-image: url("../images/linear-luminaire-closeup.png");
    background-position: center;
    background-size: cover;
    content: "";
}

.solution-card:nth-child(2) a::before {
    background-image: url("../images/interior-cove-lighting.png");
}

.solution-card:nth-child(3) a::before {
    background-image: url("../images/hero-blue-hour.png");
}

.solution-card:nth-child(4) a::before {
    background-image: url("../images/architectural-hero.png");
}

.solution-card__icon {
    display: none;
}

.solution-card__body {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.solution-card strong {
    font-family: var(--sl-heading);
    font-size: 20px;
}

.solution-card .eyebrow {
    margin-bottom: 0;
}

.site-footer {
    background: var(--sl-black-deep);
    color: var(--sl-white);
    border-top: 1px solid var(--sl-line-dark);
}

.site-footer__inner {
    display: grid;
    grid-template-columns: minmax(250px, 1fr) minmax(160px, 0.7fr) minmax(180px, 0.8fr) minmax(260px, 1.1fr);
    gap: clamp(30px, 5vw, 78px);
    width: min(calc(100% - 76px), var(--sl-wrap));
    margin-inline: auto;
    padding: clamp(56px, 6vw, 84px) 0;
}

.footer-brand__logo {
    width: auto;
    height: 56px;
    max-width: 180px;
    object-fit: contain;
}

.site-footer p,
.footer-catalogue span,
.footer-contact p {
    color: var(--sl-light-muted);
}

.footer-heading {
    margin-bottom: 18px;
    color: var(--sl-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-nav {
    display: grid;
    gap: 10px;
}

.footer-nav a,
.footer-catalogue a,
.site-footer__bottom a {
    color: var(--sl-white);
    text-decoration: none;
}

.footer-office + .footer-office {
    margin-top: 22px;
}

.footer-office strong {
    display: block;
    margin-bottom: 8px;
}

.footer-contact {
    font-style: normal;
}

.site-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    width: min(calc(100% - 76px), var(--sl-wrap));
    margin-inline: auto;
    padding: 18px 0 28px;
    border-top: 1px solid var(--sl-line-dark);
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
}

.site-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    justify-content: flex-end;
}

.reveal-ready .section-reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.reveal-ready .section-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .site-nav__list {
        gap: 20px;
    }

    .site-nav {
        gap: 20px;
    }

    .advantage-grid,
    .audience-grid,
    .service-grid,
    .calculation-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-detail {
        grid-template-columns: 1fr;
    }

    .project-detail.project-modal__detail {
        grid-template-columns: 1fr;
    }

    .project-detail.project-modal__detail h2 {
        max-width: 18ch;
        font-size: clamp(32px, 5.8vw, 48px);
    }

    .site-footer__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 940px) {
    :root {
        --sl-header-height: 82px;
    }

    .wrap,
    .site-header__inner,
    .site-footer__inner,
    .site-footer__bottom {
        width: min(calc(100% - 40px), var(--sl-wrap));
    }

    .brand img,
    .brand__logo,
    .custom-logo {
        height: 56px;
        max-width: 190px;
        max-height: 56px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .site-nav {
        position: fixed;
        inset: var(--sl-header-height) 0 0;
        display: none;
        height: calc(100vh - var(--sl-header-height));
        height: calc(100svh - var(--sl-header-height));
        max-height: none;
        margin: 0;
        padding: 28px 20px 34px;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: start;
        gap: 22px;
        background: var(--sl-black);
        border-top: 1px solid var(--sl-line-dark);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
    }

    body.admin-bar .site-nav {
        top: calc(var(--sl-header-height) + var(--wp-admin--admin-bar--height, 32px));
        height: calc(100vh - var(--sl-header-height) - var(--wp-admin--admin-bar--height, 32px));
        height: calc(100svh - var(--sl-header-height) - var(--wp-admin--admin-bar--height, 32px));
    }

    .site-nav.is-open {
        display: flex;
    }

    .site-nav__list {
        display: grid;
        gap: 18px;
    }

    .site-nav__catalogue {
        width: 100%;
    }

    .hero {
        min-height: 720px;
        background-position: center right;
    }
.section__header,
    .expertise__inner,
    .split,
    .custom-band__inner,
    .contact-layout,
    .cta__inner,
    .experience-section__intro {
        grid-template-columns: 1fr;
    }

    .cta__inner .button {
        justify-self: start;
    }

    .project-filter {
        grid-template-columns: 1fr;
    }

    .project-filter__controls {
        justify-content: flex-start;
    }

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

    .custom-band__image {
        min-height: 420px;
    }
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: var(--wp-admin--admin-bar--height, 46px);
    }

    body.admin-bar .site-nav {
        top: calc(var(--sl-header-height) + var(--wp-admin--admin-bar--height, 46px));
        height: calc(100vh - var(--sl-header-height) - var(--wp-admin--admin-bar--height, 46px));
        height: calc(100svh - var(--sl-header-height) - var(--wp-admin--admin-bar--height, 46px));
    }
}

@media (max-width: 680px) {
    .section {
        padding: 64px 0;
    }

    .advantage-grid,
    .service-grid,
    .calculation-grid,
    .audience-grid,
    .solution-grid,
    .site-footer__inner {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 660px;
    }

    .hero__actions,
    .button {
        width: 100%;
    }

    .client-carousel .client-logo {
        flex-basis: 214px;
        min-height: 124px;
        padding: 22px 28px;
    }

    .client-carousel__button {
        width: 40px;
        height: 40px;
    }

    .project-filter__controls {
        display: grid;
        grid-template-columns: 1fr;
    }

    .project-filter__button {
        width: 100%;
        justify-content: space-between;
    }

    .project-modal {
        padding: 20px;
    }

    .project-modal__dialog {
        max-height: calc(100svh - 40px);
    }

    .project-detail.project-modal__detail {
        padding: 30px 22px;
    }

    .project-detail.project-modal__detail h2 {
        max-width: 100%;
        font-size: clamp(30px, 10vw, 40px);
    }

    .site-footer__bottom {
        flex-direction: column;
    }

    .site-footer__legal {
        justify-content: flex-start;
    }
}

html[dir="rtl"] body {
    text-align: right;
}

html[dir="rtl"] .site-nav {
    margin-right: auto;
    margin-left: 0;
}

html[dir="rtl"] .hero::before {
    background:
        linear-gradient(270deg, rgba(3, 5, 6, 0.92) 0%, rgba(3, 5, 6, 0.74) 35%, rgba(3, 5, 6, 0.28) 72%),
        linear-gradient(180deg, rgba(3, 5, 6, 0.16), rgba(3, 5, 6, 0.8));
}

html[dir="rtl"] .inspire-band {
    background-image:
        linear-gradient(270deg, rgba(3, 5, 6, 0.88) 0%, rgba(3, 5, 6, 0.58) 38%, rgba(3, 5, 6, 0.1) 80%),
        var(--section-image);
}

html[dir="rtl"] .page-hero {
    background-image:
        linear-gradient(270deg, rgba(3, 5, 6, 0.9) 0%, rgba(3, 5, 6, 0.64) 42%, rgba(3, 5, 6, 0.28) 100%),
        var(--section-image);
}

html[dir="rtl"] .project-modal__close {
    right: auto;
    left: 18px;
}

html[dir="rtl"] .check-list li {
    padding-right: 30px;
    padding-left: 0;
}

html[dir="rtl"] .check-list li::before {
    right: 0;
    left: auto;
}

html[dir="rtl"] .cta__inner .button {
    justify-self: start;
}


@media (max-width: 940px) {
    html[dir="rtl"] .site-nav {
        margin: 0;
    }
}
@media (max-width: 380px) {
    .hero {
        min-height: calc(100svh - var(--sl-header-height));
    }

    .hero__inner {
        align-items: start;
        padding: 24px 0 20px;
    }

    .hero h1 {
        font-size: clamp(31px, 11.2vw, 36px);
        line-height: 0.95;
    }

    .hero__lead {
        font-size: 14.5px;
        line-height: 1.4;
    }

    .hero__actions {
        flex-wrap: nowrap;
        gap: 10px;
        margin-top: 14px;
    }

    .hero__actions .button {
        flex: 1 1 0;
        width: auto;
        min-width: 0;
        min-height: 44px;
        padding-inline: 8px;
        font-size: 11px;
    }
}
@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;
    }

    .site-header {
        transition: background 180ms ease, border-color 180ms ease;
    }

    .reveal-ready .section-reveal {
        opacity: 1;
        transform: none;
    }
}
