:root {
    --bg: #f5f0e8;
    --bg-soft: #fbf8f2;
    --bg-strong: #ede2d3;
    --surface: rgba(255, 252, 247, 0.88);
    --surface-strong: rgba(255, 251, 245, 0.96);
    --surface-dark: #1e2523;
    --text: #1e2523;
    --text-soft: #46504c;
    --line: rgba(30, 37, 35, 0.14);
    --accent: #b88248;
    --accent-deep: #8f6336;
    --accent-soft: #dfc3a1;
    --success: #2f6e52;
    --error: #9f3d2f;
    --shadow: 0 24px 64px rgba(18, 22, 21, 0.14);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --content-max: 1240px;
    --header-height: 102px;
    --header-offset: var(--header-height);
    --viewport-height: 100svh;
    --font-body: "Trebuchet MS", "Segoe UI", sans-serif;
    --font-heading: Georgia, "Times New Roman", serif;
}

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

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    margin: 0;
    color: var(--text);
    font-family: var(--font-body);
    background:
        radial-gradient(circle at top left, rgba(223, 195, 161, 0.28), transparent 34%),
        linear-gradient(180deg, #f7f2ea 0%, #efe4d5 100%);
    line-height: 1.6;
}

body.page-home {
    overscroll-behavior-y: contain;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 1000;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: var(--surface-dark);
    color: #fff;
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
    background: rgba(250, 246, 240, 0.84);
    box-shadow: 0 16px 40px rgba(18, 22, 21, 0.08);
    backdrop-filter: blur(18px);
}

.site-header__inner {
    width: fit-content;
    max-width: calc(100% - 2.5rem);
    margin: 0 auto;
    min-height: var(--header-height);
    padding: 0 clamp(0.75rem, 1.6vw, 1.25rem);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(0.8rem, 1.5vw, 1.15rem);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    margin-left: -2rem;
}

.brand__logo {
    width: auto;
    height: clamp(67px, 5.9vw, 83px);
    filter: drop-shadow(0 10px 24px rgba(18, 22, 21, 0.18));
}

.nav-toggle {
    display: none;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(30, 37, 35, 0.18);
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.nav-toggle__line {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(0.7rem, 1.2vw, 1rem);
    flex: 0 0 auto;
}

.site-nav__link {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0.15rem 0;
    font-size: 1.16rem;
    color: rgba(30, 37, 35, 0.84);
    transition: color 0.25s ease;
}

.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.1rem;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    opacity: 0;
    transform: scaleX(0.45);
    transform-origin: center;
    transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.page-home .site-header:not(.is-scrolled) .site-nav__link {
    color: #fff;
}

.page-news .site-header:not(.is-scrolled) .site-nav__link {
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 14px rgba(12, 16, 16, 0.42);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active,
.site-nav__link[aria-current] {
    color: var(--accent-deep);
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after {
    opacity: 0.45;
    transform: scaleX(0.8);
}

.site-nav__link.is-active::after,
.site-nav__link[aria-current]::after {
    opacity: 1;
    transform: scaleX(1);
}

.page-home .site-header:not(.is-scrolled) .site-nav__link:hover,
.page-home .site-header:not(.is-scrolled) .site-nav__link:focus-visible,
.page-home .site-header:not(.is-scrolled) .site-nav__link.is-active,
.page-home .site-header:not(.is-scrolled) .site-nav__link[aria-current] {
    color: #fff;
}

.page-news .site-header:not(.is-scrolled) .site-nav__link:hover,
.page-news .site-header:not(.is-scrolled) .site-nav__link:focus-visible,
.page-news .site-header:not(.is-scrolled) .site-nav__link.is-active,
.page-news .site-header:not(.is-scrolled) .site-nav__link[aria-current] {
    color: #fff;
}

.page-home .site-header:not(.is-scrolled) .site-nav__link::after {
    background: rgba(255, 255, 255, 0.86);
}

.page-news .site-header:not(.is-scrolled) .site-nav__link::after {
    background: rgba(255, 255, 255, 0.92);
}

.site-nav .button.is-active {
    box-shadow:
        0 0 0 2px rgba(184, 130, 72, 0.24),
        0 18px 36px rgba(143, 99, 54, 0.25);
}

.page-home .site-header:not(.is-scrolled) .site-nav .button.is-active {
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 0.28),
        0 18px 36px rgba(143, 99, 54, 0.25);
}

.page-news .site-header:not(.is-scrolled) .brand__logo {
    filter:
        drop-shadow(0 10px 24px rgba(8, 12, 12, 0.34))
        drop-shadow(0 2px 10px rgba(8, 12, 12, 0.18));
}

.page-news .site-header:not(.is-scrolled) .site-nav .button {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 18px 36px rgba(143, 99, 54, 0.25);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 1.35rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--solid {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #fff;
    box-shadow: 0 18px 36px rgba(143, 99, 54, 0.25);
}

.button--ghost {
    border-color: rgba(30, 37, 35, 0.16);
    background: rgba(255, 255, 255, 0.3);
    color: var(--text);
}

.button--sm {
    min-height: 44px;
    padding-inline: 1rem;
}

.section,
.home-section {
    position: relative;
    padding: clamp(4.5rem, 7vw, 7rem) 0;
    z-index: 2;
}

.home-section {
    min-height: auto;
}

.home-main {
    position: relative;
}

.section-shell {
    max-width: var(--content-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

.section-scene {
    position: relative;
    padding: clamp(1.7rem, 3vw, 2.7rem);
    border-radius: 48px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid rgba(184, 130, 72, 0.12);
    background:
        linear-gradient(145deg, #fcf8f2 0%, #f1e7d9 52%, #fbf7f0 100%);
    box-shadow:
        0 32px 82px rgba(34, 28, 23, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.section-scene > * {
    position: relative;
    z-index: 1;
}

.section-scene::before,
.section-scene::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: 0;
    border-radius: 999px;
}

.section-head {
    max-width: 760px;
    margin-bottom: 2.5rem;
}

.section-head--without-eyebrow {
    position: relative;
    display: grid;
    gap: 0.55rem;
}

.section-head--without-eyebrow::before {
    content: "";
    width: 4.8rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(184, 130, 72, 0.12));
}

.section-head--without-eyebrow h2 {
    margin-bottom: 0;
}

.section-head--without-eyebrow p:last-child {
    margin-bottom: 0;
}

.eyebrow {
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--accent-deep);
}

h1,
h2,
h3 {
    margin: 0 0 0.9rem;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.06;
}

h1 {
    font-size: clamp(2.8rem, 7vw, 5.8rem);
}

h2 {
    font-size: clamp(1.65rem, 2.8vw, 2.5rem);
    color: var(--text);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

p {
    margin: 0 0 1rem;
    color: var(--text-soft);
}

.hero {
    min-height: var(--viewport-height);
    padding: 0;
    display: grid;
    align-items: stretch;
    overflow: clip;
    z-index: 0;
    isolation: isolate;
    background: #131817;
}

.hero__stage {
    position: relative;
    min-height: var(--viewport-height);
    overflow: clip;
}

.hero__media,
.hero__veil {
    position: absolute;
    pointer-events: none;
}

.hero__media {
    inset: 0;
    z-index: 0;
    overflow: clip;
}

.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 20, 19, 0.64) 8%, rgba(16, 20, 19, 0.28) 42%, rgba(16, 20, 19, 0.14) 100%);
    z-index: 1;
}

.hero__picture,
.hero__image {
    width: 100%;
    height: 100%;
}

.hero__picture,
.section-bg-media__picture {
    display: block;
}

.hero__image {
    display: block;
    object-fit: cover;
    object-position: center 46%;
    transform: scale(1.08);
    filter: saturate(1.04) contrast(1.05);
    animation: heroMediaSettle 4.2s cubic-bezier(0.2, 0.7, 0.16, 1) both;
}

.hero__veil {
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(247, 242, 234, 0) 60%, rgba(247, 242, 234, 0.72) 100%),
        linear-gradient(90deg, rgba(18, 22, 21, 0.5) 0%, rgba(18, 22, 21, 0.14) 58%, rgba(18, 22, 21, 0.04) 100%);
    animation: heroVeilSettle 2.2s ease-out both;
}

.hero__content {
    position: relative;
    z-index: 1;
    min-height: calc(var(--viewport-height) - var(--header-offset));
    padding-top: calc(var(--header-height) + 1.5rem);
    padding-bottom: 4.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1.22fr) minmax(240px, 0.58fr);
    align-items: center;
    gap: clamp(1.5rem, 3vw, 2.75rem);
    z-index: 3;
}

.hero__copy {
    max-width: 840px;
    min-width: 0;
}

.hero__copy.reveal {
    transform: translateY(28px);
    transition-duration: 0.95s;
    transition-delay: 0.12s;
}

.hero__copy h1,
.hero__copy p,
.hero__copy .eyebrow {
    color: #fff;
    text-shadow: 0 10px 28px rgba(12, 16, 16, 0.28);
}

.hero__title span {
    display: block;
    white-space: nowrap;
}

.hero__copy h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.98;
    margin-bottom: 0.45rem;
}

.hero__lead {
    max-width: 58ch;
    font-size: clamp(1.08rem, 1.7vw, 1.3rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0;
}

.hero__actions {
    display: flex;
    gap: 0.95rem;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}

.hero__panel {
    padding: 1.4rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(155deg, rgba(34, 93, 68, 0.82), rgba(47, 110, 82, 0.64));
    border: 1px solid rgba(233, 245, 239, 0.34);
    backdrop-filter: blur(18px);
    color: #fff;
    box-shadow: var(--shadow);
    min-width: 0;
    max-width: 340px;
    justify-self: end;
    align-self: center;
}

.hero__panel.reveal {
    transform: translateY(34px);
    transition-duration: 1.05s;
    transition-delay: 0.3s;
}

.hero__facts {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2rem;
    display: grid;
    gap: 0.85rem;
}

.hero__facts li {
    position: relative;
    padding-left: 1.1rem;
}

.hero__facts li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-soft);
}

.hero__contact-card {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: grid;
    gap: 0.3rem;
}

.hero__contact-card a {
    font-size: 1.3rem;
    font-weight: 700;
}

.hero__socials {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    padding-top: 0.7rem;
}

.hero__socials-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 22px rgba(12, 16, 16, 0.18);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hero__socials-link:hover,
.hero__socials-link:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow: 0 14px 26px rgba(12, 16, 16, 0.24);
}

.hero__socials-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 1.25rem;
    transform: translateX(-50%);
    z-index: 1;
    width: 42px;
    height: 62px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.32);
    display: grid;
    place-items: center;
}

.scroll-cue span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation: scrollCue 1.7s ease-in-out infinite;
}

@keyframes scrollCue {
    0%, 100% { transform: translateY(-10px); opacity: 0.3; }
    50% { transform: translateY(10px); opacity: 1; }
}

@keyframes heroMediaSettle {
    from {
        transform: scale(1.08);
    }
    to {
        transform: scale(1);
    }
}

@keyframes heroVeilSettle {
    from {
        opacity: 0.78;
    }
    to {
        opacity: 1;
    }
}

@keyframes actualitesMediaSettle {
    from {
        transform: scale(1.13);
        filter: saturate(1.08) contrast(1.08);
    }
    to {
        transform: scale(1.05);
        filter: saturate(1.04) contrast(1.05);
    }
}

@keyframes actualitesVeilSettle {
    from {
        opacity: 0.78;
    }
    to {
        opacity: 1;
    }
}

@keyframes signatureSheen {
    from {
        background-position: 112% 50%;
    }
    to {
        background-position: -16% 50%;
    }
}

.intro__grid,
.service-grid,
.portfolio-grid,
.trust__grid,
.catalog-grid,
.masonry-grid {
    display: grid;
    gap: 1.25rem;
}

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

.intro__team {
    margin: 0 auto 1.5rem;
    width: min(100%, 320px);
    display: grid;
    justify-items: center;
    gap: 0.7rem;
}

.intro__team img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
    border: 6px solid rgba(255, 252, 247, 0.88);
    box-shadow: 0 18px 34px rgba(34, 28, 23, 0.1);
    background: rgba(255, 252, 247, 0.72);
}

.intro__team figcaption {
    text-align: center;
    font-family: "Allura", "Segoe Script", "Lucida Handwriting", cursive;
    font-size: clamp(1.9rem, 7vw, 2.45rem);
    line-height: 1;
    color: rgba(18, 22, 21, 0.94);
    text-shadow: 0 6px 14px rgba(34, 28, 23, 0.08);
}

.intro__card,
.service-card,
.portfolio-card,
.trust__card,
.catalog-card,
.realization-card,
.slider-card,
.catalog-stack,
.preview-strip,
.compact-cta,
.form-shell,
.contact-box,
.preview-mini-card {
    border: 1px solid var(--line);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.intro__card,
.trust__card,
.compact-cta,
.form-shell,
.slider-card,
.catalog-stack,
.preview-strip {
    border-radius: var(--radius-xl);
}

.intro__card,
.trust__card {
    padding: 1.35rem;
}

.intro__band {
    margin-top: 1.4rem;
    padding: 1rem 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    border-top: 1px solid var(--line);
}

.intro__band-item {
    display: grid;
    gap: 0.3rem;
    align-content: start;
    min-width: 0;
}

.intro__layout {
    display: grid;
    gap: 1.4rem;
    align-items: center;
}

.intro__content {
    display: grid;
    gap: 1.1rem;
    min-width: 0;
}

.intro__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.intro__visual {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 1rem;
    min-width: 0;
}

.intro__badge {
    width: min(100%, 320px);
    padding: 0.95rem 1.05rem;
    display: grid;
    gap: 0.2rem;
    text-align: center;
    border: 1px solid rgba(143, 99, 54, 0.34);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at top center, rgba(255, 244, 225, 0.22), transparent 52%),
        linear-gradient(145deg, rgba(184, 130, 72, 0.98), rgba(143, 99, 54, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 245, 228, 0.28),
        0 16px 34px rgba(143, 99, 54, 0.2);
    backdrop-filter: blur(10px);
}

.intro__badge span,
.intro__badge-link {
    color: rgba(255, 247, 236, 0.92);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
}

.intro__badge-link {
    justify-self: center;
    text-decoration: underline;
    text-decoration-color: rgba(255, 247, 236, 0.55);
    text-decoration-thickness: 0.1em;
    text-underline-offset: 0.22em;
}

.intro__badge-link:hover,
.intro__badge-link:focus-visible {
    color: #fffdf9;
    text-decoration-color: currentColor;
}

.intro__badge strong {
    color: #fffdf9;
    font-size: 1rem;
    line-height: 1.25;
}

.intro__band strong,
.contact-box a:first-child {
    display: block;
    color: var(--text);
}

.section--warm {
    background:
        linear-gradient(180deg, #f4ebdf, #efe3d2);
}

.section--soft {
    background:
        radial-gradient(circle at top right, rgba(184, 130, 72, 0.08), transparent 25%),
        linear-gradient(180deg, #f7f2ea, #f1e7d9);
}

.page-home .home-section:not(.hero),
.page-news .section,
.page-legal .section {
    background-color: #f7f2ea;
    background-blend-mode: normal;
}

.page-home .home-section:not(.hero)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    z-index: -1;
}

.page-home #presentation {
    background: linear-gradient(180deg, #f7f2ea 0%, #efe6da 100%);
}

.page-home #prestations {
    background: transparent;
    overflow: hidden;
    isolation: isolate;
}

.page-news #actualites {
    background: transparent;
    overflow: hidden;
    isolation: isolate;
}

.page-home #prestations::before {
    content: none;
}

.page-news #actualites::before {
    content: none;
}

.page-home #prestations .section-bg-media,
.page-news #actualites .section-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: clip;
    pointer-events: none;
}

.page-home #prestations .section-bg-media::after,
.page-news #actualites .section-bg-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(16, 20, 19, 0.72) 0%, rgba(16, 20, 19, 0.3) 48%, rgba(16, 20, 19, 0.12) 100%);
}

.section-bg-media__picture,
.section-bg-media__image {
    width: 100%;
    height: 100%;
}

.section-bg-media__image {
    display: block;
    object-fit: cover;
    object-position: center 44%;
    transform: scale(1.05);
    filter: saturate(1.02) contrast(1.04);
}

.page-home #prestations::after,
.page-news #actualites::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(247, 242, 234, 0.02) 0%, rgba(247, 242, 234, 0.08) 36%, rgba(247, 242, 234, 0.82) 100%),
        linear-gradient(90deg, rgba(18, 22, 21, 0.42) 0%, rgba(18, 22, 21, 0.14) 56%, rgba(18, 22, 21, 0.04) 100%);
    z-index: 1;
}

.page-home #prestations > .section-shell,
.page-news #actualites > .section-shell {
    position: relative;
    z-index: 2;
}

.page-home #prestations .section-head {
    color: rgba(255, 251, 245, 0.98);
}

.page-home #prestations .section-head .eyebrow {
    color: var(--accent-soft);
    text-shadow: 0 4px 18px rgba(8, 10, 10, 0.26);
}

.page-home #prestations .section-head h2,
.page-home #prestations .section-head p {
    color: #fff;
    text-shadow: 0 10px 28px rgba(8, 10, 10, 0.36);
}

.page-news #actualites .section-bg-media__image {
    object-position: 58% 52%;
    transform: scale(1.05);
    filter: saturate(1.04) contrast(1.05);
    animation: none;
}

.page-news #actualites .section-bg-media::after {
    animation: none;
}

.page-news #actualites .news-section__head {
    color: rgba(255, 251, 245, 0.98);
}

.page-news #actualites .news-section__head.reveal {
    transform: translateY(28px);
    transition-duration: 0.95s;
    transition-delay: 0.12s;
}

.page-news #actualites .news-overview.reveal {
    opacity: 1;
    transform: translateY(34px);
    transition-duration: 1.05s;
    transition-delay: 0.3s;
    transition-property: transform;
}

.page-news #actualites .news-section__head .eyebrow {
    color: var(--accent-soft);
    text-shadow: 0 4px 18px rgba(8, 10, 10, 0.26);
}

.page-news #actualites .news-section__head h1,
.page-news #actualites .news-section__head h2 {
    color: #fff;
    text-shadow: 0 10px 28px rgba(8, 10, 10, 0.34);
}

.page-news #actualites .news-section__lead > p {
    color: rgba(245, 239, 231, 0.92);
    text-shadow: 0 4px 20px rgba(8, 10, 10, 0.28);
}

.page-home #realisations {
    background: linear-gradient(180deg, #eee6da 0%, #f7f2ea 100%);
}

.page-home #avis-clients {
    background: linear-gradient(180deg, #efe6da 0%, #f5ecdf 100%);
}

.page-home #contact {
    background: linear-gradient(180deg, #f4ecdf 0%, #fbf7f0 100%);
}

.section-scene--presentation {
    background:
        radial-gradient(circle at 78% 20%, rgba(223, 195, 161, 0.36), transparent 20%),
        linear-gradient(145deg, #fcf8f2 0%, #f1e6d8 52%, #faf5ee 100%);
}

.section-scene--presentation::before {
    left: -16%;
    top: -46%;
    width: min(58%, 700px);
    height: 185%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.2));
    transform: rotate(-16deg);
}

.section-scene--presentation::after {
    right: -10%;
    bottom: -42%;
    width: min(40%, 460px);
    height: 122%;
    background: linear-gradient(180deg, rgba(223, 195, 161, 0.62), rgba(223, 195, 161, 0.1));
    transform: rotate(22deg);
}

.section-scene--realisations {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, transparent 32%, rgba(184, 130, 72, 0.06) 68%, transparent 100%),
        repeating-linear-gradient(125deg, rgba(255, 252, 247, 0.12) 0 2px, rgba(255, 252, 247, 0) 2px 20px),
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.38), transparent 18%),
        radial-gradient(circle at 82% 76%, rgba(223, 195, 161, 0.4), transparent 22%),
        radial-gradient(circle at 56% 52%, rgba(205, 166, 116, 0.1), transparent 30%),
        linear-gradient(145deg, #f8f1e7 0%, #ecddca 48%, #fbf5ec 100%);
}

.section-scene--realisations::before {
    right: -18%;
    top: -40%;
    width: min(56%, 680px);
    height: 178%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.16));
    transform: rotate(18deg);
}

.section-scene--realisations::after {
    left: -12%;
    bottom: -38%;
    width: min(38%, 420px);
    height: 116%;
    background: linear-gradient(180deg, rgba(223, 195, 161, 0.56), rgba(223, 195, 161, 0.1));
    transform: rotate(-18deg);
}

.section-scene--contact {
    background:
        radial-gradient(circle at 88% 18%, rgba(223, 195, 161, 0.34), transparent 18%),
        linear-gradient(145deg, #fbf7f0 0%, #f0e4d3 52%, #fcf8f2 100%);
}

.section-scene--contact::before {
    left: -18%;
    top: -36%;
    width: min(58%, 700px);
    height: 176%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.18));
    transform: rotate(-14deg);
}

.section-scene--contact::after {
    right: -8%;
    bottom: -34%;
    width: min(38%, 420px);
    height: 118%;
    background: linear-gradient(180deg, rgba(223, 195, 161, 0.58), rgba(223, 195, 161, 0.1));
    transform: rotate(18deg);
}

.section--contrast {
    background:
        linear-gradient(180deg, rgba(30, 37, 35, 0.97), rgba(30, 37, 35, 0.9)),
        radial-gradient(circle at top left, rgba(223, 195, 161, 0.22), transparent 25%);
}

.section--contrast h3,
.section--contrast p,
.section--contrast .chip,
.section--contrast time {
    color: #f7f3ed;
}

.section--contrast .trust__card,
.section--contrast .compact-cta {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
}

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

.service-card {
    position: relative;
    padding: 1.35rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 100%;
}

.service-card h3 {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--accent-deep);
    font-size: clamp(1.32rem, 1.75vw, 1.68rem);
    letter-spacing: -0.03em;
}

.service-card h3::after {
    content: "";
    display: block;
    width: 2.4rem;
    height: 3px;
    margin-top: 0.45rem;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(184, 130, 72, 0.18));
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.service-family {
    position: relative;
    min-height: 100%;
    padding: 1rem 0.95rem 0.95rem;
    display: grid;
    gap: 0.5rem;
    align-content: start;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(184, 130, 72, 0.14);
    background: linear-gradient(165deg, rgba(255, 252, 247, 0.88), rgba(248, 241, 232, 0.78));
    box-shadow: 0 18px 38px rgba(18, 22, 21, 0.08);
    overflow: hidden;
}

.service-family::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.service-family h3 {
    margin-bottom: 0;
    font-size: clamp(1.35rem, 3vw, 1.6rem);
    line-height: 1.1;
    color: var(--accent-deep);
    letter-spacing: -0.02em;
}

.service-family__text {
    margin: 0;
    color: rgba(24, 28, 27, 0.94);
}

.service-family__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.service-family__list li {
    position: relative;
    padding: 0.56rem 0.72rem 0.56rem 1.28rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.56);
    border: 1px solid rgba(184, 130, 72, 0.14);
    font-size: 0.87rem;
    line-height: 1.42;
    font-weight: 700;
    color: var(--text);
}

.service-family__list li::before {
    content: "";
    position: absolute;
    top: 1rem;
    left: 0.58rem;
    width: 0.32rem;
    height: 0.32rem;
    border-radius: 999px;
    background: var(--accent);
}

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

.portfolio-card,
.catalog-card,
.realization-card {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.portfolio-card__media,
.catalog-card__media,
.realization-card__media,
.slide__media {
    margin: 0;
    aspect-ratio: 4 / 4.5;
    overflow: hidden;
}

.portfolio-card__media img,
.catalog-card__media img,
.realization-card__media img,
.slide__media img,
.preview-mini-card img,
.catalog-stack__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-card:hover img,
.catalog-card:hover img,
.realization-card:hover img,
.catalog-stack__card:hover img,
.preview-mini-card:hover img {
    transform: scale(1.04);
}

.portfolio-card__body,
.catalog-card__body,
.realization-card__body,
.slide__body {
    padding: 1.15rem;
}

.portfolio-card[data-realization-card],
.realization-card[data-realization-card] {
    cursor: pointer;
}

.portfolio-card[data-realization-card]:focus-visible,
.realization-card[data-realization-card]:focus-visible {
    outline: 2px solid rgba(184, 130, 72, 0.45);
    outline-offset: 4px;
    border-radius: var(--radius-lg);
}

.section-cta {
    margin-top: 2rem;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: start;
}

.contact-section-head {
    max-width: 700px;
    margin-bottom: 1.6rem;
}

.contact-layout__intro {
    position: relative;
    display: grid;
    align-content: start;
    gap: 1.1rem;
    padding: 1.55rem;
    border-radius: 32px;
    border: 1px solid rgba(184, 130, 72, 0.14);
    background: linear-gradient(155deg, rgba(255, 252, 247, 0.72), rgba(246, 237, 225, 0.48));
    box-shadow: 0 18px 38px rgba(34, 28, 23, 0.06);
    backdrop-filter: blur(12px);
}

.contact-layout__eyebrow {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.contact-layout__intro h3 {
    margin: 0;
    font-size: clamp(1.55rem, 2vw, 2rem);
    line-height: 1.1;
    color: var(--text);
}

.contact-layout__summary {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.58;
    color: var(--text-soft);
}

.contact-layout__notes {
    display: grid;
    gap: 0.75rem;
}

.contact-layout__note {
    display: grid;
    gap: 0.2rem;
    padding: 0.9rem 0.95rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(184, 130, 72, 0.12);
}

.contact-layout__note strong {
    display: block;
    margin-bottom: 0.12rem;
    color: var(--text);
}

.contact-layout__note span {
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.45;
}

.contact-box {
    display: grid;
    gap: 0.6rem;
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.42);
}

.contact-box--phone {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(184, 130, 72, 0.2);
    background: linear-gradient(145deg, rgba(184, 130, 72, 0.16), rgba(255, 255, 255, 0.72));
    box-shadow: 0 16px 32px rgba(34, 28, 23, 0.08);
}

.contact-box a,
.contact-box span {
    line-height: 1.45;
}

.contact-box__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text);
    font-size: clamp(1rem, 1.35vw, 1.18rem);
    font-weight: 700;
}

.contact-box__phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    box-shadow: 0 12px 24px rgba(143, 99, 54, 0.16);
    flex: 0 0 auto;
}

.contact-box__phone-icon svg {
    width: 1.05rem;
    height: 1.05rem;
    display: block;
}

.contact-box__phone-text {
    letter-spacing: 0.01em;
}

.contact-socials {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    flex-wrap: wrap;
    padding-top: 0.8rem;
}

.contact-socials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4.4rem;
    height: 1px;
    background: linear-gradient(90deg, rgba(143, 99, 54, 0.42), rgba(143, 99, 54, 0.04));
}

.contact-socials__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    color: var(--accent-deep);
    background: linear-gradient(145deg, rgba(184, 130, 72, 0.16), rgba(184, 130, 72, 0.08));
    border: 1px solid rgba(143, 99, 54, 0.2);
    box-shadow: 0 10px 24px rgba(143, 99, 54, 0.08);
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-socials__link:hover,
.contact-socials__link:focus-visible {
    transform: translateY(-2px);
    color: #fff;
    border-color: rgba(143, 99, 54, 0.36);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    box-shadow: 0 14px 28px rgba(143, 99, 54, 0.18);
}

.contact-socials__link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.form-shell {
    padding: 1.4rem;
}

.form-shell__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.35rem, 1.8vw, 1.75rem);
    line-height: 1.15;
    color: var(--accent-deep);
}

.form-shell__intro {
    margin: 0 0 1.15rem;
    max-width: 62ch;
    color: var(--text-soft);
    font-size: 0.94rem;
    line-height: 1.5;
}

.alert {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
}

.alert ul {
    margin: 0.6rem 0 0;
    padding-left: 1.2rem;
}

.alert--success {
    background: rgba(47, 110, 82, 0.12);
    color: var(--success);
    border: 1px solid rgba(47, 110, 82, 0.24);
}

.alert--error {
    background: rgba(159, 61, 47, 0.1);
    color: #67261d;
    border: 1px solid rgba(159, 61, 47, 0.22);
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form label {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.contact-form span {
    font-weight: 600;
    color: var(--text);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 0.95rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(30, 37, 35, 0.14);
    background: rgba(255, 255, 255, 0.82);
}

.contact-form textarea {
    resize: vertical;
}

.checkbox {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.8rem;
}

.checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 0.2rem;
}

.form-note {
    font-size: 0.92rem;
}

.news-main .section:first-child,
.legal-main .section:first-child {
    padding-top: calc(var(--header-height) - 10px);
}

.news-overview {
    margin-bottom: 0.85rem;
}

.news-section {
    position: relative;
}

.news-section__head {
    max-width: 880px;
}

.news-section__heading-copy {
    max-width: 880px;
}

.news-section__lead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
}

.news-section__lead > p {
    margin-bottom: 0;
    flex: 1 1 auto;
}

.news-section__head .eyebrow {
    margin-bottom: 0.25rem;
}

.news-history__grid,
.masonry-grid {
    gap: 1rem;
    align-items: stretch;
}

.news-hero .section-head,
.news-section--actualites .section-head {
    max-width: none;
    margin-bottom: 0.5rem;
}

.news-hero .section-head h1,
.news-section--actualites .section-head h1,
.news-section--actualites .section-head h2 {
    margin-bottom: 0.35rem;
    font-size: clamp(1.65rem, 2.8vw, 2.5rem);
    white-space: nowrap;
}

.news-hero .section-head p:last-child,
.news-section--actualites .section-head p:last-child {
    margin-bottom: 0;
    font-size: 0.88rem;
}

.news-section--actualites .news-section__head {
    max-width: none;
}

.news-section--actualites .news-section__heading-copy {
    max-width: 880px;
}

.news-section--actualites .news-section__lead > p {
    max-width: 68ch;
}

.news-section--actualites .news-section__controls {
    flex: 0 0 auto;
    justify-content: flex-end;
}

.slider-card {
    padding: 0.8rem;
    min-height: 100%;
}

.slider-card__header,
.catalog-stack__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.slider-card__header h2,
.catalog-stack__header h2 {
    margin-bottom: 0;
    font-size: clamp(1.3rem, 1.7vw, 1.7rem);
}

.slider-card__controls {
    display: flex;
    gap: 0.5rem;
}

.slider-card__button {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.slider-card__viewport {
    position: relative;
    min-height: 300px;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    display: grid;
    grid-template-columns: minmax(0, 1.28fr) minmax(250px, 0.72fr);
    gap: 0.8rem;
    align-items: center;
}

.slide.is-active {
    opacity: 1;
    visibility: visible;
}

.slide__media {
    margin: 0;
    height: auto;
    aspect-ratio: 5 / 2;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #f8f1e7 0%, #efe4d5 100%);
    overflow: hidden;
}

.slide__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.slide__body {
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.8);
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0.75rem;
    min-width: 0;
    overflow: hidden;
}

.slide__main,
.slide__footer {
    display: grid;
}

.slide__main {
    gap: 0.35rem;
    align-content: start;
}

.slide__footer {
    gap: 0.75rem;
}

.slide__support {
    display: grid;
    gap: 0.35rem;
    margin-top: 0;
    padding: 0.9rem 0.95rem;
    border-radius: 24px;
    border: 1px solid rgba(184, 130, 72, 0.14);
    background:
        linear-gradient(155deg, rgba(255, 252, 247, 0.96), rgba(244, 233, 219, 0.82)),
        linear-gradient(135deg, rgba(184, 130, 72, 0.08), transparent);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.78),
        0 12px 26px rgba(34, 28, 23, 0.06);
}

.slide__support-title {
    margin: 0;
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.slide__support-list {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.18rem;
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.32;
}

.slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: auto;
}

.page-news .news-section--actualites .slide__actions .button {
    height: 34px;
    min-height: 0;
    padding: 0 0.78rem;
    font-size: 0.74rem;
    line-height: 1;
    white-space: nowrap;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.page-news .news-section--actualites .slide__actions .button:hover,
.page-news .news-section--actualites .slide__actions .button:focus-visible {
    transform: none;
}

.page-news .news-section--actualites .slide {
    --actualites-panel-radius: 28px;
    --actualites-media-inner-radius: var(--actualites-panel-radius);
    --actualites-body-surface: linear-gradient(155deg, #fffdf9, #f3e8db 84%);
    --actualites-support-surface:
        linear-gradient(145deg, rgba(255, 255, 255, 0.52), rgba(248, 240, 229, 0.36));
    display: none;
    opacity: 1;
    visibility: visible;
    transition: none;
}

.page-news .news-section--actualites .slide.is-active {
    display: grid;
}

.page-news .news-section--actualites .slide__media,
.page-news .news-section--actualites .slide__body {
    position: relative;
    border-radius: var(--actualites-panel-radius);
    overflow: hidden;
    isolation: isolate;
    background-clip: padding-box;
}

.page-news .news-section--actualites .slide__media::after,
.page-news .news-section--actualites .slide__body::after {
    content: none;
}

.page-news .news-section--actualites .slide__media img {
    border-radius: var(--actualites-media-inner-radius);
    clip-path: none;
}

.page-news .news-section--actualites .slide__body {
    background: var(--actualites-body-surface);
    border-color: rgba(184, 130, 72, 0.14);
}

.page-news .news-section--actualites .slide__support {
    border-radius: 20px;
    background: var(--actualites-support-surface);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
    border-color: rgba(184, 130, 72, 0.16);
}

.page-news .news-section--actualites .slide__actions .button--solid {
    box-shadow: 0 9px 18px rgba(143, 99, 54, 0.16);
}

.catalog-partners {
    display: grid;
    gap: 0.8rem;
    min-width: 0;
}

.catalog-partners__panel {
    position: relative;
    min-width: 0;
    padding: 0.92rem;
    border-radius: 32px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 42%),
        linear-gradient(155deg, rgba(255, 252, 247, 0.95), rgba(243, 234, 221, 0.82)),
        linear-gradient(135deg, rgba(184, 130, 72, 0.06), transparent);
    border: 1px solid rgba(30, 37, 35, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.72),
        0 24px 56px rgba(34, 28, 23, 0.08);
}

.catalog-partners__panel::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 31px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    pointer-events: none;
}

.catalog-partners__panel-head {
    position: relative;
    z-index: 30;
    margin-bottom: 0.72rem;
}

.catalog-partners__panel-head--split {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.9rem;
}

.catalog-partners__panel-head--rail {
    align-items: center;
    gap: 0.56rem;
}

.catalog-partners__panel-head--rail h3 {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
}

.catalog-partners__panel-head h3 {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.catalog-partners__panel-head p {
    margin: 0.24rem 0 0;
    max-width: 52ch;
    color: rgba(59, 64, 62, 0.84);
    font-size: 0.9rem;
    line-height: 1.45;
}

.catalog-partners__hero {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(280px, 0.92fr);
    gap: 0.8rem;
    align-items: stretch;
}

.catalog-partners__hero--solo {
    grid-template-columns: 1fr;
}

.catalog-feature,
.catalog-rail__card {
    position: relative;
}

.catalog-feature > :not(.catalog-feature__link),
.catalog-rail__card > :not(.catalog-rail__link) {
    position: relative;
    z-index: 1;
}

.catalog-feature__link,
.catalog-rail__link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.catalog-feature__link:focus-visible,
.catalog-rail__link:focus-visible {
    outline: 3px solid rgba(184, 130, 72, 0.42);
    outline-offset: 3px;
}

.catalog-feature {
    display: grid;
    grid-template-columns: minmax(240px, 0.78fr) minmax(0, 1fr);
    gap: 1rem;
    min-height: 100%;
    padding: 0.25rem;
    border-radius: 28px;
}

.catalog-feature__cover,
.catalog-rail__cover {
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(30, 37, 35, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.catalog-feature__cover {
    min-height: 360px;
    padding: 1.2rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(223, 195, 161, 0.32), transparent 55%),
        linear-gradient(180deg, #fffdf9, #eadccb);
}

.catalog-feature__cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.98);
    transition: transform 0.3s ease;
}

.catalog-feature:hover .catalog-feature__cover img,
.catalog-feature:focus-within .catalog-feature__cover img {
    transform: scale(1);
}

.catalog-feature__body {
    display: grid;
    gap: 0.75rem;
    align-content: start;
    min-width: 0;
}

.catalog-feature__meta,
.catalog-feature__footer,
.catalog-rail__meta {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.catalog-feature__tag,
.catalog-rail__pages {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 0.72rem;
    border-radius: 999px;
    background: rgba(184, 130, 72, 0.1);
    color: var(--accent-deep);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
}

.catalog-feature__body h3,
.catalog-feature__body p,
.catalog-rail__body h3,
.catalog-rail__body p {
    margin: 0;
}

.catalog-feature__body h3 {
    font-size: clamp(1.36rem, 1.9vw, 1.76rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
}

.catalog-feature__body p {
    max-width: 46ch;
    color: rgba(59, 64, 62, 0.84);
    font-size: 1rem;
    line-height: 1.58;
}

.catalog-feature__tips {
    display: grid;
    gap: 0.34rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.catalog-feature__tips li {
    position: relative;
    padding-left: 1.05rem;
    color: rgba(59, 64, 62, 0.82);
    font-size: 0.82rem;
    line-height: 1.35;
}

.catalog-feature__tips li::before {
    content: "";
    position: absolute;
    top: 0.52em;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.catalog-feature__facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
    margin: 0;
}

.catalog-feature__fact {
    display: grid;
    gap: 0.22rem;
    padding: 0.85rem 0.95rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(30, 37, 35, 0.08);
}

.catalog-feature__fact dt {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-feature__fact dd {
    margin: 0;
    color: var(--text);
    font-size: 0.92rem;
    line-height: 1.35;
    font-weight: 600;
}

.catalog-feature__footer {
    margin-top: auto;
    padding-top: 0.25rem;
}

.catalog-feature__cta,
.catalog-rail__cta {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 0.88rem;
    border-radius: 999px;
    border: 1px solid rgba(143, 99, 54, 0.22);
    background: linear-gradient(135deg, rgba(184, 130, 72, 0.2), rgba(184, 130, 72, 0.08));
    color: var(--accent-deep);
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.catalog-partners__videos {
    display: grid;
    grid-template-columns: 1fr;
    align-content: stretch;
    gap: 0.55rem;
    height: 100%;
}

.catalog-partners__video-link {
    display: inline-flex;
    align-items: center;
    gap: 0.68rem;
    width: 100%;
    min-height: 58px;
    padding: 0.56rem 0.78rem;
    border-radius: 22px;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;
}

.catalog-partners__video-link:hover,
.catalog-partners__video-link:focus-visible,
.catalog-partners__video-link:visited {
    text-decoration: none !important;
}

.catalog-partners__video-link:hover,
.catalog-partners__video-link:focus-visible {
    transform: translateY(-1px);
}

.catalog-partners__video-link:focus-visible {
    outline: 2px solid rgba(201, 29, 29, 0.24);
    outline-offset: 3px;
}

.catalog-partners__video-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.catalog-partners__video-play {
    width: 0;
    height: 0;
    margin-left: 0.1rem;
    border-top: 0.34rem solid transparent;
    border-bottom: 0.34rem solid transparent;
    border-left: 0.56rem solid #fff;
}

.catalog-partners__video-copy {
    display: grid;
    gap: 0.12rem;
    min-width: 0;
}

.catalog-partners__video-caption {
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-partners__video-label {
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.24;
}

.catalog-partners__video-link--badge {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(184, 130, 72, 0.2);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.82),
        0 12px 22px rgba(35, 29, 24, 0.05);
}

.catalog-partners__video-link--badge .catalog-partners__video-icon {
    width: 2.22rem;
    height: 1.56rem;
    border-radius: 0.82rem;
    background: linear-gradient(145deg, #ff4a4a, #d41616);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.24),
        0 10px 18px rgba(191, 23, 23, 0.18);
}

.catalog-partners__video-link--badge .catalog-partners__video-copy {
    display: grid;
    gap: 0.24rem;
}

.catalog-partners__video-link--badge .catalog-partners__video-caption {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 0 0.48rem;
    border-radius: 999px;
    background: rgba(212, 22, 22, 0.08);
    color: #c91d1d;
}

.catalog-partners__video-link--badge .catalog-partners__video-label {
    color: #5b3a20;
}

.catalog-partners__video-link--badge:hover,
.catalog-partners__video-link--badge:focus-visible {
    border-color: rgba(212, 22, 22, 0.28);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.86),
        0 16px 28px rgba(191, 23, 23, 0.12);
}

.catalog-partners__panel--videos {
    display: flex;
    flex-direction: column;
}

.catalog-partners__panel--rail {
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 40%),
        linear-gradient(155deg, #fffdf9, #f1e4d4 84%);
}

.catalog-rail__filter {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 1 clamp(180px, 18vw, 230px);
    min-width: 170px;
}

.catalog-rail__filter::after {
    content: "";
    position: absolute;
    right: 0.78rem;
    width: 0.46rem;
    height: 0.46rem;
    border-right: 2px solid rgba(143, 99, 54, 0.72);
    border-bottom: 2px solid rgba(143, 99, 54, 0.72);
    transform: rotate(45deg) translateY(-2px);
    pointer-events: none;
}

.catalog-rail__filter select {
    width: 100%;
    min-height: 34px;
    padding: 0 2.05rem 0 0.78rem;
    border: 1px solid rgba(143, 99, 54, 0.22);
    border-radius: 999px;
    appearance: none;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.78);
    color: var(--accent-deep);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.catalog-rail__filter select:focus-visible {
    outline: 3px solid rgba(184, 130, 72, 0.36);
    outline-offset: 2px;
}

.catalog-rail__controls {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.36rem;
    flex: 0 0 auto;
}

.catalog-rail__button {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(143, 99, 54, 0.22);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--accent-deep);
    font: inherit;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.catalog-rail__button:hover,
.catalog-rail__button:focus-visible {
    background: rgba(184, 130, 72, 0.16);
    transform: translateY(-1px);
}

.catalog-rail__button:disabled {
    cursor: default;
    opacity: 0.35;
    transform: none;
}

.catalog-rail {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.68rem;
    min-width: 0;
    max-width: 100%;
    min-height: 264px;
    overflow-x: auto;
    overflow-y: hidden;
    isolation: isolate;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(143, 99, 54, 0.36) transparent;
    padding: 0.56rem 0.56rem 1.9rem;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.86), transparent 40%),
        linear-gradient(155deg, rgba(255, 252, 247, 0.96), rgba(241, 230, 214, 0.92));
    border: 1px solid rgba(184, 130, 72, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.catalog-rail__card {
    flex: 0 0 clamp(184px, 16vw, 212px);
    scroll-snap-align: start;
    display: grid;
    align-content: start;
    min-height: 228px;
    gap: 0.42rem;
    padding: 0.58rem 0.6rem 0.7rem;
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(249, 245, 238, 0.94));
    border: 1px solid rgba(30, 37, 35, 0.08);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 12px 24px rgba(35, 29, 24, 0.06);
    transition: border-color 0.25s ease;
}

.catalog-rail__card[hidden] {
    display: none;
}

.catalog-rail__card:hover,
.catalog-rail__card:focus-within {
    border-color: rgba(184, 130, 72, 0.24);
}

.catalog-rail__cover {
    height: 116px;
    min-height: 0;
    padding: 0.58rem;
    border-radius: 16px;
    background:
        radial-gradient(circle at top left, rgba(223, 195, 161, 0.28), transparent 55%),
        linear-gradient(180deg, #fffdf9, #ede1d1);
}

.catalog-rail__cover img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(0.96);
    transition: transform 0.3s ease;
}

.catalog-rail__card:hover .catalog-rail__cover img,
.catalog-rail__card:focus-within .catalog-rail__cover img {
    transform: scale(0.985);
}

.catalog-rail__meta {
    justify-content: space-between;
}

.catalog-rail__body {
    display: grid;
    gap: 0.22rem;
    align-content: start;
    min-width: 0;
}

.catalog-rail__body h3 {
    font-size: 0.9rem;
    line-height: 1.16;
    color: var(--text);
    font-weight: 650;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.catalog-rail__body p {
    color: rgba(59, 64, 62, 0.84);
    font-size: 0.78rem;
    line-height: 1.32;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.catalog-stack {
    padding: 0.75rem 0.85rem 0.8rem;
    display: grid;
    gap: 0.55rem;
}

.catalog-stack__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.4rem;
}

.catalog-stack__card,
.preview-mini-card {
    display: grid;
    gap: 0.45rem;
    padding: 0.35rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(30, 37, 35, 0.08);
}

.catalog-stack__card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: 0;
    gap: 0.45rem;
}

.preview-mini-card {
    grid-template-columns: 88px 1fr;
    align-items: center;
}

.catalog-stack__card img,
.preview-mini-card img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 14px;
    object-fit: cover;
}

.catalog-stack__card img {
    object-fit: contain;
    max-width: 62px;
    padding: 0.1rem;
    background:
        radial-gradient(circle at top left, rgba(223, 195, 161, 0.5), transparent 55%),
        linear-gradient(180deg, #fffdf9, #f2e8db);
    border: 1px solid rgba(30, 37, 35, 0.08);
}

.catalog-stack__label {
    min-width: 0;
    font-size: 0.78rem;
    font-family: var(--font-heading);
    line-height: 1.15;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
}

.news-history {
    margin-top: 0.8rem;
}

.news-history__head {
    margin-bottom: 0.7rem;
    max-width: none;
}

.news-history__head h2 {
    margin-bottom: 0.35rem;
}

.news-history__head p:last-child {
    margin-bottom: 0;
    max-width: 70ch;
    font-size: 0.9rem;
}

.news-history__grid {
    margin-top: 0;
}

.news-history__toolbar {
    margin-bottom: 0.85rem;
}

.news-history__count {
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.92rem;
}

.page-news #realisations-list .news-history__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-news #realisations-list .realization-card__media {
    aspect-ratio: 4 / 3.2;
}

.page-news #realisations-list .realization-card__body {
    padding: 1rem;
    gap: 0.4rem;
}

.page-news #realisations-list .realization-card__body h3 {
    display: block;
    font-size: 1.04rem;
    line-height: 1.2;
    padding-bottom: 0.16rem;
    overflow: visible;
    -webkit-line-clamp: unset;
}

.page-news #realisations-list .realization-card__body p {
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.45;
}

.realization-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 240, 229, 0.82));
    border: 1px solid rgba(184, 130, 72, 0.16);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.84),
        0 14px 30px rgba(34, 28, 23, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.realization-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: linear-gradient(90deg, rgba(184, 130, 72, 0.24), rgba(184, 130, 72, 0.04));
    pointer-events: none;
}

.realization-card__media {
    flex: 0 0 auto;
    background:
        radial-gradient(circle at top left, rgba(223, 195, 161, 0.22), transparent 52%),
        linear-gradient(180deg, #fffdf9, #eadbc8);
    border-bottom: 1px solid rgba(184, 130, 72, 0.12);
}

.realization-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.45rem;
}

.realization-card:hover,
.realization-card:focus-within {
    transform: translateY(-4px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 231, 0.9));
    border-color: rgba(184, 130, 72, 0.24);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 22px 42px rgba(34, 28, 23, 0.12);
}

.portfolio-card__body h3,
.portfolio-card__body p,
.realization-card__body h3,
.realization-card__body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-card__body h3,
.realization-card__body h3 {
    -webkit-line-clamp: 2;
}

.portfolio-card__body p,
.realization-card__body p {
    -webkit-line-clamp: 3;
}

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

.realization-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

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

.realization-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 16, 13, 0.7);
    backdrop-filter: blur(8px);
}

.realization-modal__dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    width: min(1080px, 100%);
    max-height: min(88vh, 920px);
    overflow: auto;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 236, 225, 0.96));
    border: 1px solid rgba(184, 130, 72, 0.2);
    box-shadow: 0 30px 80px rgba(20, 16, 13, 0.28);
}

.realization-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 30px rgba(20, 16, 13, 0.12);
    color: var(--text);
    cursor: pointer;
}

.realization-modal__close span {
    font-size: 1.7rem;
    line-height: 1;
}

.realization-modal__media {
    margin: 0;
    min-height: 100%;
    background:
        radial-gradient(circle at top left, rgba(184, 130, 72, 0.18), transparent 42%),
        rgba(232, 221, 207, 0.82);
}

.realization-modal__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.realization-modal__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    padding: 2rem 1.75rem;
}

.realization-modal__body .meta-row {
    margin-bottom: 0;
}

.realization-modal__body h2,
.realization-modal__body p {
    margin-bottom: 0;
}

.realization-modal__body h2 {
    font-size: clamp(1.45rem, 2vw, 2.2rem);
}

.realization-modal__body p {
    color: var(--text-soft);
    font-size: 1rem;
    line-height: 1.7;
}

.realization-modal__nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.45rem;
}

.realization-modal__count {
    min-width: 4.5rem;
    color: var(--text-soft);
    font-size: 0.95rem;
    text-align: center;
}

.realization-modal__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(143, 99, 54, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.74);
    color: var(--text);
    font: inherit;
    font-size: 1.15rem;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.realization-modal__arrow:hover,
.realization-modal__arrow:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(143, 99, 54, 0.32);
    background: rgba(255, 255, 255, 0.92);
}

.preview-mini-card h3,
.slide__body h3 {
    margin-bottom: 0.25rem;
}

.preview-mini-card h3,
.slide__body h3,
.slide__body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.preview-mini-card h3,
.slide__body h3 {
    -webkit-line-clamp: 2;
}

.preview-mini-card .chip,
.slide__body .chip {
    margin-bottom: 0.2rem;
}

.slide__body h3 {
    font-size: 1.22rem;
}

.slide__body p {
    margin-bottom: 0;
    font-size: 0.84rem;
    line-height: 1.35;
}

.slide__body p {
    -webkit-line-clamp: 3;
}

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

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

.meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.meta-row time {
    color: var(--text-soft);
    font-size: 0.82rem;
    line-height: 1.35;
    white-space: nowrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 0 0.65rem;
    border-radius: 999px;
    background: rgba(184, 130, 72, 0.14);
    color: var(--accent-deep);
    font-size: 0.74rem;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.compact-cta {
    padding: 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) auto;
    gap: 1rem;
    align-items: center;
}

.compact-cta__actions {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.news-pagination {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.news-pagination__pages {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.news-pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 0 0.8rem;
    border-radius: 999px;
    border: 1px solid rgba(30, 37, 35, 0.12);
    background: rgba(255, 255, 255, 0.76);
    color: var(--text);
    transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.news-pagination__link:hover,
.news-pagination__link:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(143, 99, 54, 0.35);
}

.news-pagination__link.is-active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 14px 28px rgba(143, 99, 54, 0.2);
}

.legal-copy {
    max-width: 860px;
}

.legal-copy h2 {
    margin-top: 2rem;
}

.site-footer {
    padding: 0 1.25rem 1.5rem;
}

.site-footer__panel,
.site-footer__bottom {
    max-width: var(--content-max);
    margin: 0 auto;
}

.site-footer__panel {
    display: grid;
    grid-template-columns: minmax(220px, 0.95fr) repeat(4, minmax(155px, 1fr));
    column-gap: 1.7rem;
    row-gap: 1.2rem;
    align-items: start;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 251, 245, 0.7);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.site-footer__column,
.site-footer__brand {
    display: grid;
    align-content: start;
    gap: 0.55rem;
}

.site-footer__brand {
    align-self: start;
    justify-items: start;
}

.site-footer__brand img {
    width: clamp(230px, 18vw, 280px);
    height: auto;
}

.site-footer__brand p {
    margin: 0;
    max-width: 30ch;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.58;
}

.site-footer__column {
    font-style: normal;
}

.site-footer__column a,
.site-footer__column p {
    margin: 0;
    color: var(--text-soft);
    font-size: 0.93rem;
    line-height: 1.52;
}

.site-footer__column a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
    color: var(--accent-deep);
}

.site-footer__hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.site-footer__hours-item {
    display: grid;
    gap: 0.14rem;
}

.site-footer__hours-label {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text);
}

.site-footer__hours-value {
    font-size: 0.9rem;
    line-height: 1.45;
    color: var(--text-soft);
}

.site-footer__socials {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.site-footer__social-title {
    margin: 0 0 0.18rem;
}

.site-footer__social-copy {
    max-width: 18ch;
    font-size: 0.93rem;
    line-height: 1.52;
    color: var(--text-soft);
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    color: var(--accent-deep);
    background: linear-gradient(145deg, rgba(184, 130, 72, 0.16), rgba(184, 130, 72, 0.08));
    border: 1px solid rgba(143, 99, 54, 0.2);
    box-shadow: 0 10px 24px rgba(143, 99, 54, 0.08);
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    transform: translateY(-2px);
    color: #fff;
    border-color: rgba(143, 99, 54, 0.36);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
    box-shadow: 0 14px 28px rgba(143, 99, 54, 0.18);
}

.site-footer__social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.site-footer__column h2 {
    margin: 0 0 0.18rem;
    color: var(--text);
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.site-footer__accordion-toggle {
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-align: inherit;
}

.site-footer__accordion-toggle:disabled {
    opacity: 1;
}

.site-footer__accordion-content {
    display: grid;
    gap: 0.55rem;
}

.site-footer__bottom {
    padding-top: 1rem;
    text-align: center;
}

.site-footer__credit {
    margin-left: 0.45rem;
    color: rgba(30, 37, 35, 0.62);
    text-decoration: underline;
    text-decoration-color: rgba(30, 37, 35, 0.18);
    text-underline-offset: 0.18em;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.site-footer__credit:hover,
.site-footer__credit:focus-visible {
    color: var(--accent-deep);
    text-decoration-color: rgba(143, 99, 54, 0.45);
}

.page-home #presentation .section-head h2 span {
    display: block;
}

.page-home #presentation .section-head {
    margin-bottom: 0;
}

.page-home #presentation .intro__team {
    margin: 0;
    width: min(100%, 300px);
}

.page-home #presentation .intro__team figcaption {
    margin-top: 0.6rem;
    font-size: 2.15rem;
    letter-spacing: 0;
    white-space: nowrap;
    color: rgba(18, 22, 21, 0.96);
    text-shadow: 0 6px 14px rgba(34, 28, 23, 0.08);
    background-image: linear-gradient(
        105deg,
        rgba(18, 22, 21, 0.96) 0%,
        rgba(18, 22, 21, 0.96) 43%,
        rgba(255, 246, 232, 0.98) 49%,
        rgba(18, 22, 21, 0.96) 55%,
        rgba(18, 22, 21, 0.96) 100%
    );
    background-size: 220% 100%;
    background-position: 112% 50%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: none;
}

.page-home #presentation .intro__team.is-visible figcaption {
    animation: signatureSheen 6.5s ease-out infinite;
}

.page-home #presentation .intro__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.page-home #presentation .intro__card {
    position: relative;
    display: grid;
    grid-template-rows: 3px minmax(3.05em, auto) 1fr;
    align-content: start;
    gap: 0.4rem;
    padding: 1.15rem 1.1rem 1.05rem;
    background: rgba(255, 253, 249, 0.76);
    border-color: rgba(184, 130, 72, 0.14);
    box-shadow: 0 14px 30px rgba(34, 28, 23, 0.06);
    backdrop-filter: blur(10px);
}

.page-home #presentation .intro__card::before {
    content: "";
    width: 2.6rem;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), rgba(184, 130, 72, 0.18));
}

.page-home #presentation .intro__card h3 {
    margin-bottom: 0;
    min-height: 3.05em;
    display: flex;
    align-items: center;
}

.page-home #presentation .intro__card p,
.page-home #presentation .intro__band span {
    margin-bottom: 0;
}

.page-home #presentation .intro__band {
    border-top: 0;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 252, 247, 0.84), rgba(247, 239, 228, 0.7));
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 18px 36px rgba(34, 28, 23, 0.06);
    position: relative;
}

.page-home #presentation .intro__band strong,
.page-home #presentation .intro__band span {
    color: var(--text);
}

.page-home #presentation .intro__band::before {
    content: "";
    position: absolute;
    left: 1.1rem;
    right: 1.1rem;
    top: 0.85rem;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(184, 130, 72, 0), rgba(184, 130, 72, 0.72), rgba(184, 130, 72, 0));
}

.page-home #realisations .portfolio-grid {
    gap: 0.85rem;
}

.page-home #realisations .portfolio-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.84), rgba(247, 239, 228, 0.72));
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 18px 36px rgba(34, 28, 23, 0.07);
    backdrop-filter: blur(10px);
}

.page-home #realisations .portfolio-card__media {
    aspect-ratio: 4 / 3.05;
    background:
        radial-gradient(circle at top left, rgba(223, 195, 161, 0.22), transparent 52%),
        linear-gradient(180deg, #fffdf9, #eadbc8);
}

.page-home #realisations .portfolio-card__body {
    padding: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.page-home #realisations .portfolio-card__body h3,
.page-home #realisations .portfolio-card__body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.page-home #realisations .portfolio-card__body h3 {
    font-size: 1.08rem;
    -webkit-line-clamp: 2;
}

.page-home #realisations .portfolio-card__body p {
    font-size: 0.9rem;
    line-height: 1.42;
    -webkit-line-clamp: 3;
}

.page-home #realisations .section-cta {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

.reviews-section {
    display: grid;
    gap: 1rem;
    min-height: 100%;
}

.page-home #avis-clients .section-head {
    margin-bottom: 0.85rem;
}

.page-home #avis-clients .section-head h2 {
    margin-bottom: 0.35rem;
}

.page-home #avis-clients .section-head p:last-child {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.reviews-section__summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.15rem;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 252, 247, 0.84), rgba(247, 239, 228, 0.7));
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 18px 36px rgba(34, 28, 23, 0.06);
}

.reviews-section__score-block {
    display: grid;
    justify-items: start;
    gap: 0.12rem;
}

.reviews-section__score {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.18rem;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 0.9;
    color: var(--accent-deep);
}

.reviews-section__score span {
    font-size: 0.42em;
    line-height: 1.2;
    color: var(--text-soft);
}

.reviews-section__stars {
    margin: 0;
    letter-spacing: 0.08em;
    color: #d2872d;
    font-size: 0.94rem;
}

.reviews-section__summary-copy {
    display: grid;
    gap: 0.28rem;
}

.reviews-section__summary-copy strong {
    font-size: 1rem;
    color: var(--text);
}

.reviews-section__summary-copy p {
    margin: 0;
    color: var(--text-soft);
}

.reviews-section__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

.reviews-section__chips .chip {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(184, 130, 72, 0.16);
}

.reviews-slider {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.reviews-slider .slider-card__header {
    margin-bottom: 0.7rem;
}

.reviews-slider .slider-card__header h3 {
    margin: 0;
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    color: var(--accent-deep);
}

.reviews-slider__viewport {
    position: relative;
    flex: 1 1 auto;
    min-height: 260px;
    overflow: hidden;
}

.review-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    display: grid;
    align-items: stretch;
}

.review-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.review-slide__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 100%;
    height: 100%;
    padding: 1rem 1rem 0.95rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 249, 0.84);
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 18px 34px rgba(34, 28, 23, 0.07);
    overflow: auto;
}

.review-slide__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2.8rem;
}

.review-slide__identity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-slide__avatar {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(145deg, rgba(184, 130, 72, 0.14), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(184, 130, 72, 0.18);
    color: var(--accent-deep);
    font-weight: 700;
}

.review-slide__author {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.review-slide__meta time {
    display: inline-block;
    margin-top: 0.18rem;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.review-slide__rating-block {
    display: grid;
    justify-items: end;
    gap: 0.16rem;
}

.review-slide__rating {
    margin: 0;
    letter-spacing: 0.08em;
    color: #d2872d;
    font-size: 0.94rem;
    white-space: nowrap;
}

.review-slide__rating-label {
    margin: 0;
    color: var(--accent-deep);
    font-weight: 700;
    font-size: 0.88rem;
}

.review-slide__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text);
}

.review-slide__response {
    display: grid;
    gap: 0.24rem;
    max-width: 420px;
    margin-top: auto;
    margin-left: auto;
    padding: 0.8rem 0.9rem;
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(255, 252, 247, 0.95), rgba(244, 233, 219, 0.82));
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 12px 28px rgba(34, 28, 23, 0.06);
}

.review-slide__response-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text);
}

.review-slide__response-author,
.review-slide__response time,
.review-slide__response-text {
    margin: 0;
}

.review-slide__response-author {
    font-size: 0.82rem;
    color: var(--accent-deep);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.review-slide__response time,
.review-slide__response-text {
    color: var(--text-soft);
    font-size: 0.85rem;
    line-height: 1.45;
}

.page-home #avis-clients .section-cta {
    margin-top: auto;
    padding-top: 0.85rem;
    display: flex;
    justify-content: center;
}

@media (min-width: 1025px) {
    body.page-home {
        scroll-snap-type: y proximity;
    }

    body.page-news {
        overscroll-behavior-y: contain;
    }

    .page-news .news-main {
        margin-top: calc(var(--header-offset) * -1);
    }

    .page-home .home-main {
        margin-top: calc(var(--header-offset) * -1);
    }

    .page-home .home-section {
        min-height: var(--viewport-height);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        scroll-margin-top: 0;
    }

    .page-home .site-footer {
        min-height: auto;
        padding: 0 1.25rem 1.5rem;
        scroll-snap-align: end;
        scroll-snap-stop: always;
        scroll-margin-top: 0;
        display: block;
    }

    .page-home .home-section:not(.hero) {
        padding: calc(var(--header-offset) + 1rem) 0 1rem;
        display: flex;
        align-items: stretch;
        overflow: visible;
    }

    .page-home .home-section:not(.hero) > .section-shell {
        width: 100%;
        height: auto;
        min-height: calc(var(--viewport-height) - var(--header-offset) - 2rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .page-home #avis-clients {
        min-height: auto;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }

    .page-home #avis-clients > .section-shell {
        height: auto;
        min-height: calc(var(--viewport-height) - var(--header-offset) - 2rem);
        justify-content: flex-start;
        gap: 0.8rem;
    }

    .page-news .news-section--snap {
        min-height: var(--viewport-height);
        padding: calc(var(--header-offset) + 1rem) 0 1rem;
        display: flex;
        align-items: stretch;
        scroll-margin-top: 0;
    }

    .page-news .news-section--gallery {
        scroll-margin-top: 0;
    }

    .page-news .news-main .section.news-section--snap:first-child {
        padding-top: calc(var(--header-offset) + 1rem);
    }

    .page-news .news-section--snap > .section-shell {
        width: 100%;
        min-height: calc(var(--viewport-height) - var(--header-offset) - 2rem);
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.25rem;
    }

    .page-news .news-section--actualites {
        padding-bottom: 3.6rem;
    }

    .page-news .news-section--actualites > .section-shell {
        min-height: calc(var(--viewport-height) - var(--header-offset) - 4.6rem);
        justify-content: center;
        gap: 1rem;
    }

    .page-news .news-section--actualites .news-section__head {
        max-width: none;
        margin-bottom: 0;
    }

    .page-news .news-section--actualites .news-section__heading-copy {
        max-width: 700px;
    }

    .page-news .news-section--actualites .news-section__head h1,
    .page-news .news-section--actualites .news-section__head h2 {
        font-size: clamp(1.65rem, 2.8vw, 2.5rem);
        margin-bottom: 0.24rem;
        white-space: normal;
    }

    .page-news .news-section--actualites .news-section__head p:last-child {
        font-size: 0.85rem;
    }

    .page-news .news-section--actualites .news-section__lead > p {
        max-width: 58ch;
    }

    .page-news .news-section--actualites .news-overview {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        margin-bottom: 0;
        width: 100%;
    }

    .page-news .news-section--actualites .slider-card {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0.72rem;
        min-height: 0;
        overflow: hidden;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .page-news .news-section--actualites .slider-card__viewport {
        height: clamp(380px, 46vh, 540px);
        min-height: 0;
    }

    .page-news .news-section--actualites .slide {
        height: 100%;
        grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
        gap: 1.25rem;
        align-items: stretch;
        padding-top: 0;
    }

    .page-news .news-section--actualites .slide__media {
        --actualites-media-inner-radius: calc(var(--actualites-panel-radius) - 5px);
        width: 100%;
        max-width: none;
        height: 100%;
        min-height: 0;
        aspect-ratio: auto;
        justify-self: stretch;
        align-self: stretch;
        box-sizing: border-box;
        padding: 3px;
        border-radius: var(--actualites-panel-radius);
        border: 1px solid rgba(30, 37, 35, 0.08);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 236, 225, 0.92)),
            radial-gradient(circle at top left, rgba(255, 255, 255, 0.54), transparent 46%),
            linear-gradient(180deg, #f7efe4 0%, #e8d7c1 100%);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.72),
            0 18px 34px rgba(35, 29, 24, 0.08);
        overflow: hidden;
    }

    .page-news .news-section--actualites .slide__media img {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: var(--actualites-media-inner-radius);
        clip-path: none;
        object-fit: cover;
        object-position: center top;
    }

    .page-news .news-section--actualites .slide__body {
        height: 100%;
        border-radius: var(--actualites-panel-radius);
        padding: 1.15rem 1.2rem;
        gap: 0.8rem;
        justify-content: flex-start;
        align-self: stretch;
        background: var(--actualites-body-surface);
        border: 1px solid rgba(184, 130, 72, 0.14);
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.82),
            0 18px 34px rgba(35, 29, 24, 0.08);
        overflow: hidden;
    }

    .page-news .news-section--actualites .slide__main {
        gap: 0.5rem;
    }

    .page-news .news-section--actualites .slide__footer {
        gap: 0.85rem;
        flex: 1 1 auto;
        min-height: 0;
    }

    .page-news .news-section--actualites .slide__body h3 {
        font-size: 1.08rem;
        line-height: 1.18;
        -webkit-line-clamp: 2;
    }

    .page-news .news-section--actualites .slide__body p {
        font-size: 0.82rem;
        line-height: 1.32;
        -webkit-line-clamp: 4;
    }

    .page-news .news-section--actualites .slide__support {
        flex: 1 1 auto;
        align-content: start;
        padding: 1rem 1.05rem;
    }

    .page-news .news-section--actualites .slide__support-title {
        font-size: 0.72rem;
    }

    .page-news .news-section--actualites .slide__support-list {
        gap: 0.14rem;
        font-size: 0.77rem;
    }

    .page-news .news-section--actualites .slide__actions {
        gap: 0.45rem;
        margin-top: 0.55rem;
    }

    .page-news .news-section--actualites .slide__actions .button {
        height: 32px;
        min-height: 0;
        padding: 0 0.7rem;
        font-size: 0.72rem;
        line-height: 1;
    }

    .page-news .news-section--catalogues .catalog-partners {
        flex: 1;
        display: grid;
        align-content: start;
        gap: 1.05rem;
        min-height: 0;
    }

    .page-news .news-section--catalogues .catalog-partners__hero {
        grid-template-columns: minmax(0, 1.62fr) minmax(250px, 0.86fr);
        gap: 0.72rem;
        min-height: 0;
    }

    .page-news .news-section--catalogues .catalog-partners__panel {
        padding: 0.64rem;
    }

    .page-news .news-section--catalogues .catalog-partners__panel-head {
        margin-bottom: 0.32rem;
    }

    .page-news .news-section--catalogues .catalog-partners__panel-head h3 {
        font-size: 0.76rem;
    }

    .page-news .news-section--catalogues .catalog-partners__panel-head p {
        font-size: 0.77rem;
        line-height: 1.34;
        max-width: 42ch;
    }

.page-news .news-section--catalogues {
    align-items: flex-start;
    min-height: calc(var(--viewport-height) - 0.35rem);
    padding-top: calc(var(--header-offset) + 0.35rem);
    padding-bottom: 0.85rem;
}

.page-news .news-section--catalogues > .section-shell {
    gap: 0.12rem;
    justify-content: flex-start;
    min-height: calc(var(--viewport-height) - var(--header-offset) - 1.2rem);
    padding-top: 0.55rem;
}

.page-news .news-section--catalogues > .section-shell.section-scene {
    padding: 1.3rem 1.35rem 1.05rem;
}

.page-news .news-section--catalogues > .section-shell::before,
.page-news .news-section--catalogues > .section-shell::after {
    content: none;
}

    .page-news .news-section--catalogues .news-section__head {
        max-width: 670px;
        margin-bottom: 0;
    }

    .page-news .news-section--catalogues .news-section__head h2 {
        margin-bottom: 0.18rem;
        padding-bottom: 0.08rem;
        line-height: 1.16;
        white-space: nowrap;
        overflow: visible;
        text-overflow: clip;
    }

    .page-news .news-section--catalogues .news-section__head p:last-child {
        font-size: 0.87rem;
        max-width: 58ch;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .page-news .news-section--catalogues .catalog-partners__videos {
        flex: 1;
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: 0.44rem;
        align-content: stretch;
    }

    .page-news .news-section--catalogues .catalog-partners__video-link {
        min-height: 0;
        gap: 0.48rem;
        padding: 0.52rem 0.62rem;
        border-radius: 18px;
    }

    .page-news .news-section--catalogues .catalog-partners__video-caption {
        font-size: 0.61rem;
    }

    .page-news .news-section--catalogues .catalog-partners__video-label {
        font-size: 0.74rem;
    }

    .page-news .news-section--catalogues .catalog-partners__video-link--badge .catalog-partners__video-icon {
        width: 1.78rem;
        height: 1.24rem;
    }

    .page-news .news-section--catalogues .catalog-feature {
        grid-template-columns: 146px minmax(0, 1fr);
        gap: 0.56rem;
        min-height: 0;
    }

    .page-news .news-section--catalogues .catalog-feature__cover {
        min-height: 0;
        height: 100%;
        max-height: 210px;
        padding: 0.56rem;
        border-radius: 18px;
    }

    .page-news .news-section--catalogues .catalog-feature__body {
        gap: 0.32rem;
    }

    .page-news .news-section--catalogues .catalog-feature__meta {
        gap: 0.32rem;
    }

    .page-news .news-section--catalogues .catalog-feature__meta .chip,
    .page-news .news-section--catalogues .catalog-feature__tag,
    .page-news .news-section--catalogues .catalog-rail__pages {
        min-height: 23px;
        padding-inline: 0.5rem;
        font-size: 0.66rem;
    }

    .page-news .news-section--catalogues .catalog-rail__button {
        width: 30px;
        height: 30px;
    }

    .page-news .news-section--catalogues .catalog-partners__panel-head--rail {
        gap: 0.42rem;
    }

    .page-news .news-section--catalogues .catalog-rail__filter {
        flex-basis: min(190px, 22vw);
        min-width: min(160px, 22vw);
    }

    .page-news .news-section--catalogues .catalog-rail__filter select {
        min-height: 30px;
        padding-left: 0.62rem;
        padding-right: 1.72rem;
        font-size: 0.68rem;
    }

    .page-news .news-section--catalogues .catalog-feature__body h3 {
        font-size: 1rem;
        line-height: 1.08;
    }

    .page-news .news-section--catalogues .catalog-feature__body p {
        font-size: 0.78rem;
        line-height: 1.32;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .page-news .news-section--catalogues .catalog-feature__tips {
        gap: 0.18rem;
    }

    .page-news .news-section--catalogues .catalog-feature__tips li {
        padding-left: 0.85rem;
        font-size: 0.68rem;
        line-height: 1.22;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }

    .page-news .news-section--catalogues .catalog-feature__tips li::before {
        width: 0.32rem;
        height: 0.32rem;
    }

    .page-news .news-section--catalogues .catalog-feature__facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.34rem;
    }

    .page-news .news-section--catalogues .catalog-feature__fact {
        padding: 0.52rem 0.62rem;
        border-radius: 14px;
    }

    .page-news .news-section--catalogues .catalog-feature__fact dt {
        font-size: 0.62rem;
    }

    .page-news .news-section--catalogues .catalog-feature__fact dd {
        font-size: 0.74rem;
    }

    .page-news .news-section--catalogues .catalog-feature__cta,
    .page-news .news-section--catalogues .catalog-rail__cta {
        min-height: 28px;
        padding: 0 0.62rem;
        font-size: 0.7rem;
        white-space: nowrap;
    }

    .page-news .news-section--catalogues .catalog-rail__card {
        flex-basis: clamp(154px, 10.5vw, 170px);
        min-height: 214px;
        gap: 0.28rem;
        padding: 0.44rem 0.46rem 0.58rem;
        border-radius: 18px;
    }

    .page-news .news-section--catalogues .catalog-rail__cover {
        height: 76px;
        min-height: 0;
        padding: 0.42rem;
        border-radius: 14px;
    }

    .page-news .news-section--catalogues .catalog-rail__body {
        gap: 0.16rem;
    }

    .page-news .news-section--catalogues .catalog-rail__body h3 {
        font-size: 0.78rem;
        line-height: 1.12;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .page-news .news-section--catalogues .catalog-rail__body p {
        font-size: 0.72rem;
        line-height: 1.25;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

    .page-news .news-section--gallery {
        padding-top: calc(var(--header-offset) + 1rem);
    }

    .page-home .site-footer__panel,
    .page-home .site-footer__bottom {
        width: 100%;
    }

    .page-home .section-head {
        max-width: 760px;
        margin-bottom: 1rem;
    }

    .page-home .section-head p:last-child {
        max-width: 64ch;
        margin-bottom: 0;
        font-size: 0.96rem;
        line-height: 1.5;
    }

    .page-home .intro__grid,
    .page-home .service-grid,
    .page-home .portfolio-grid,
    .page-home .trust__grid {
        gap: 0.9rem;
    }

    .page-home .intro__card,
    .page-home .trust__card,
    .page-home .service-card,
    .page-home .portfolio-card__body,
    .page-home .form-shell,
    .page-home .contact-box {
        padding: 1rem;
    }

    .page-home .intro__band {
        margin-top: 0.9rem;
        padding: 0.85rem 1rem 0;
        gap: 0.8rem;
    }

    .page-home .hero__copy {
        max-width: 820px;
    }

    .page-home .hero__copy h1 {
        max-width: none;
        font-size: clamp(3rem, 4.2vw, 4.6rem);
        margin-bottom: 0.45rem;
    }

    .page-home .service-card {
        padding: 1rem;
    }

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

    .page-home .portfolio-card__media {
        aspect-ratio: 4 / 2.9;
    }

    .page-home .portfolio-card__body p {
        margin-bottom: 0;
        font-size: 0.95rem;
    }

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

    .page-home .contact-layout {
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
        gap: 1rem;
        align-items: center;
    }

    .page-home .field-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
    }

    .page-home .contact-form label {
        margin-bottom: 0.75rem;
    }

    .page-home .contact-form input,
    .page-home .contact-form textarea,
    .page-home .contact-form select {
        padding: 0.82rem 0.9rem;
    }

    .page-home .contact-form textarea {
        min-height: 110px;
        max-height: 160px;
    }

    .page-home .hero__content {
        min-height: calc(var(--viewport-height) - var(--header-offset));
        padding-top: calc(var(--header-offset) + 0.4rem);
        padding-bottom: 3.4rem;
        width: min(100%, var(--content-max));
        grid-template-columns: minmax(0, 1.1fr) minmax(230px, 0.5fr);
        gap: 1.2rem;
        align-items: center;
    }

    .page-home .hero__lead {
        max-width: 58ch;
        margin-bottom: 0;
        font-size: clamp(1.02rem, 1.14vw, 1.15rem);
        line-height: 1.5;
        text-align: justify;
        text-align-last: left;
    }

    .page-home .hero__copy .eyebrow {
        max-width: none;
        white-space: nowrap;
        font-size: clamp(0.84rem, 0.92vw, 0.96rem);
        letter-spacing: 0.1em;
    }

    .page-home .hero__panel {
        max-width: 290px;
        padding: 0.92rem;
        align-self: end;
    }

    .page-home .hero__facts {
        gap: 0.62rem;
        margin-bottom: 0.8rem;
    }

    .page-home .hero__contact-card a {
        font-size: 1.12rem;
    }

    .page-home .scroll-cue {
        bottom: 2rem;
    }

    .page-home #presentation > .section-shell {
        gap: 1rem;
    }

    .page-home #presentation .intro__layout {
        grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.78fr);
        grid-template-areas:
            "content visual"
            "band band";
        column-gap: clamp(1.5rem, 3vw, 2.8rem);
        row-gap: clamp(1.575rem, 3.15vw, 2.25rem);
        align-items: start;
    }

    .page-home #presentation .intro__content {
        grid-area: content;
        gap: 0.95rem;
    }

    .page-home #presentation .section-head {
        max-width: 690px;
        margin-bottom: 0;
    }

    .page-home #presentation .intro__actions {
        margin-top: 0.7875rem;
    }

    .page-home #presentation .intro__visual {
        grid-area: visual;
        align-content: start;
        gap: 1.275rem;
        padding-top: 0.18rem;
    }

    .page-home #presentation .intro__team {
        position: relative;
        margin: 0;
        width: min(100%, 330px);
        z-index: 2;
    }

    .page-home #presentation .intro__team img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        object-position: 52% 50%;
        transform: scale(0.9);
        display: block;
        border-radius: 999px;
        border: 8px solid rgba(255, 252, 247, 0.86);
        box-shadow: 0 18px 34px rgba(34, 28, 23, 0.1);
        background: rgba(255, 252, 247, 0.72);
    }

    .page-home #presentation .intro__team figcaption {
        position: static;
        margin-top: 0.65rem;
        transform: none;
        font-family: "Allura", "Segoe Script", "Lucida Handwriting", cursive;
        font-size: 2.4rem;
        line-height: 1;
        font-weight: 400;
        letter-spacing: 0;
        color: rgba(18, 22, 21, 0.96);
        white-space: nowrap;
        text-shadow: 0 6px 14px rgba(34, 28, 23, 0.08);
        background-image: linear-gradient(
            105deg,
            rgba(18, 22, 21, 0.96) 0%,
            rgba(18, 22, 21, 0.96) 43%,
            rgba(255, 246, 232, 0.98) 49%,
            rgba(18, 22, 21, 0.96) 55%,
            rgba(18, 22, 21, 0.96) 100%
        );
        background-size: 220% 100%;
        background-position: 112% 50%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: none;
    }

    .page-home #presentation .intro__team.is-visible figcaption {
        animation: signatureSheen 6.5s ease-out infinite;
    }

    .page-home #presentation .intro__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.55rem;
        margin-top: 0.85rem;
        align-items: stretch;
    }

    .page-home #presentation .intro__card {
        position: relative;
        display: grid;
        grid-template-rows: 3px minmax(3.05em, auto) 1fr;
        align-content: start;
        gap: 0.4rem;
        padding: 1.15rem 1.1rem 1.05rem;
        background: rgba(255, 253, 249, 0.76);
        border-color: rgba(184, 130, 72, 0.14);
        box-shadow: 0 14px 30px rgba(34, 28, 23, 0.06);
        backdrop-filter: blur(10px);
    }

    .page-home #presentation .intro__card::before {
        content: "";
        width: 2.6rem;
        height: 3px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--accent), rgba(184, 130, 72, 0.18));
    }

    .page-home #presentation .intro__card h3 {
        font-size: 1.12rem;
        min-height: 3.05em;
        display: flex;
        align-items: flex-start;
        margin-bottom: 0;
    }

    .page-home #presentation .intro__card p,
    .page-home #presentation .intro__band span {
        margin-bottom: 0;
        font-size: 0.93rem;
        line-height: 1.45;
    }

    .page-home #presentation .intro__band {
        grid-area: band;
        align-self: start;
        margin-top: 0.15rem;
        width: 100%;
        padding: 1rem 1.15rem;
        gap: 0.85rem;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: start;
        border-top: 0;
        border-radius: 28px;
        background: linear-gradient(145deg, rgba(255, 252, 247, 0.84), rgba(247, 239, 228, 0.7));
        border: 1px solid rgba(184, 130, 72, 0.14);
        box-shadow: 0 18px 36px rgba(34, 28, 23, 0.06);
        position: relative;
    }

    .page-home #presentation .intro__band strong,
    .page-home #presentation .intro__band span {
        color: var(--text);
    }

    .page-home #presentation .intro__band::before {
        content: "";
        position: absolute;
        left: 1.1rem;
        right: 1.1rem;
        top: 0.85rem;
        height: 2px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(184, 130, 72, 0), rgba(184, 130, 72, 0.72), rgba(184, 130, 72, 0));
    }

    .page-home #presentation .intro__band-item:first-child {
        padding-right: 0.6rem;
    }

.page-home #prestations > .section-shell {
        gap: 1rem;
    }

    .page-home #avis-clients > .section-shell {
        gap: 1rem;
    }

    .page-home #prestations .section-head {
        max-width: 720px;
        color: #fff;
    }

    .page-home #avis-clients .section-head {
        max-width: 760px;
    }

    .page-home #prestations .section-head .eyebrow {
        margin-bottom: 0.25rem;
        color: var(--accent-soft);
        text-shadow: 0 12px 30px rgba(12, 16, 16, 0.22);
    }

    .page-home #prestations .section-head h2,
    .page-home #prestations .section-head p {
        color: #fff;
        text-shadow: 0 12px 30px rgba(12, 16, 16, 0.28);
    }

    .page-home #prestations .prestations-head__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: end;
        gap: 1rem;
    }

    .page-home #prestations .prestations-head__actions p {
        margin-bottom: 0;
    }

    .page-home #prestations .prestations-head__actions .button {
        justify-self: end;
        white-space: nowrap;
    }

    .page-home #prestations .service-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.85rem;
        grid-auto-rows: 1fr;
        margin-top: 0.2rem;
        align-content: center;
    }

    .page-home #prestations .service-family {
        padding: 1rem 0.95rem 0.95rem;
        display: grid;
        grid-template-rows: auto auto 1fr;
        align-content: start;
        gap: 0.5rem;
        background: linear-gradient(165deg, rgba(255, 252, 247, 0.88), rgba(248, 241, 232, 0.78));
        border-color: rgba(255, 255, 255, 0.24);
        box-shadow: 0 18px 38px rgba(18, 22, 21, 0.1);
        backdrop-filter: blur(9px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--line);
        overflow: hidden;
    }

    .page-home #prestations .service-family::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent), transparent);
    }

    .page-home #prestations .service-family h3 {
        min-height: 2.3em;
        font-size: 1.6rem;
        margin-bottom: 0;
        line-height: 1.1;
        color: var(--accent-deep);
        letter-spacing: -0.02em;
    }

    .page-home #prestations .service-family__text {
        margin-bottom: 0;
        display: -webkit-box;
        font-size: 0.9rem;
        line-height: 1.35;
        color: rgba(24, 28, 27, 0.94);
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .page-home #prestations .service-family__list {
        display: grid;
        gap: 0.5rem;
        margin-top: 0.18rem;
        align-content: start;
    }

    .page-home #prestations .service-family__list li {
        position: relative;
        padding: 0.56rem 0.72rem 0.56rem 1.28rem;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.56);
        border: 1px solid rgba(184, 130, 72, 0.14);
        font-size: 0.87rem;
        line-height: 1.42;
        font-weight: 700;
        color: var(--text);
    }

    .page-home #prestations .service-family__list li::before {
        content: "";
        position: absolute;
        top: 1rem;
        left: 0.58rem;
        width: 0.32rem;
        height: 0.32rem;
        border-radius: 999px;
        background: var(--accent);
    }

    .page-home #realisations > .section-shell {
        gap: 1rem;
    }

    .page-home #realisations .section-head {
        max-width: 760px;
}

.page-home #realisations .section-head .eyebrow {
    color: var(--accent-deep);
}

.page-home #realisations .section-head p {
    color: var(--text);
}

.page-home #realisations .portfolio-grid {
    gap: 0.8rem;
    align-items: stretch;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.page-home #realisations .portfolio-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.84), rgba(247, 239, 228, 0.72));
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 18px 36px rgba(34, 28, 23, 0.07);
    backdrop-filter: blur(10px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.page-home #realisations .portfolio-card:hover,
.page-home #realisations .portfolio-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(184, 130, 72, 0.22);
    box-shadow: 0 24px 42px rgba(34, 28, 23, 0.1);
}

.reviews-section {
    display: grid;
    gap: 1rem;
    min-height: 100%;
}

.page-home #avis-clients {
    padding: calc(var(--header-offset) + 0.6rem) 0 0.75rem;
}

.page-home #avis-clients .section-head {
    margin-bottom: 0.85rem;
}

.page-home #avis-clients .section-head h2 {
    margin-bottom: 0.35rem;
}

.page-home #avis-clients .section-head p:last-child {
    margin-bottom: 0;
    font-size: 0.92rem;
}

.reviews-section__summary {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.15rem;
    border-radius: 28px;
    background: linear-gradient(145deg, rgba(255, 252, 247, 0.84), rgba(247, 239, 228, 0.7));
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 18px 36px rgba(34, 28, 23, 0.06);
}

.reviews-section__score-block {
    display: grid;
    justify-items: start;
    gap: 0.12rem;
}

.reviews-section__score {
    display: inline-flex;
    align-items: flex-end;
    gap: 0.18rem;
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 0.9;
    color: var(--accent-deep);
}

.reviews-section__score span {
    font-size: 0.42em;
    line-height: 1.2;
    color: var(--text-soft);
}

.reviews-section__stars {
    margin: 0;
    letter-spacing: 0.08em;
    color: #d2872d;
    font-size: 0.94rem;
}

.reviews-section__summary-copy {
    display: grid;
    gap: 0.28rem;
}

.reviews-section__summary-copy strong {
    font-size: 1rem;
    color: var(--text);
}

.reviews-section__summary-copy p {
    margin: 0;
    color: var(--text-soft);
}

.reviews-section__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.2rem;
}

.reviews-section__chips .chip {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(184, 130, 72, 0.16);
}

.reviews-slider {
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
}

.reviews-slider .slider-card__header {
    margin-bottom: 0.7rem;
}

.reviews-slider .slider-card__header h3 {
    margin: 0;
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    color: var(--accent-deep);
}

.reviews-slider__viewport {
    position: relative;
    flex: 1 1 auto;
    min-height: 260px;
    overflow: hidden;
}

.review-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    display: grid;
    align-items: stretch;
}

.review-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.review-slide__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-height: 100%;
    height: 100%;
    padding: 1rem 1rem 0.95rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 249, 0.84);
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 18px 34px rgba(34, 28, 23, 0.07);
    overflow: auto;
}

.review-slide__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    min-height: 2.8rem;
}

.review-slide__identity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.review-slide__avatar {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(145deg, rgba(184, 130, 72, 0.14), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(184, 130, 72, 0.18);
    color: var(--accent-deep);
    font-weight: 700;
}

.review-slide__author {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
}

.review-slide__meta time {
    display: inline-block;
    margin-top: 0.18rem;
    color: var(--text-soft);
    font-size: 0.88rem;
}

.review-slide__rating-block {
    display: grid;
    justify-items: end;
    gap: 0.16rem;
}

.review-slide__rating {
    margin: 0;
    letter-spacing: 0.08em;
    color: #d2872d;
    font-size: 0.94rem;
    white-space: nowrap;
}

.review-slide__rating-label {
    margin: 0;
    color: var(--accent-deep);
    font-weight: 700;
    font-size: 0.88rem;
}

.review-slide__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.55;
    color: var(--text);
}

.review-slide__response {
    display: grid;
    gap: 0.24rem;
    max-width: 420px;
    margin-top: auto;
    margin-left: auto;
    padding: 0.8rem 0.9rem;
    border-radius: 20px;
    background: linear-gradient(155deg, rgba(255, 252, 247, 0.95), rgba(244, 233, 219, 0.82));
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 12px 28px rgba(34, 28, 23, 0.06);
}

.review-slide__response-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text);
}

.review-slide__response-author,
.review-slide__response time,
.review-slide__response-text {
    margin: 0;
}

.review-slide__response-author {
    font-size: 0.82rem;
    color: var(--accent-deep);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.review-slide__response time,
.review-slide__response-text {
    color: var(--text-soft);
    font-size: 0.85rem;
    line-height: 1.45;
}

.page-home #avis-clients .section-cta {
    margin-top: auto;
    padding-top: 0.85rem;
    display: flex;
    justify-content: center;
}

.page-home #presentation .section-head h2 span {
    display: block;
}

.page-home #realisations .portfolio-grid {
    gap: 0.85rem;
}

.page-home #realisations .portfolio-card {
    display: grid;
    grid-template-rows: auto 1fr;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.84), rgba(247, 239, 228, 0.72));
    border: 1px solid rgba(184, 130, 72, 0.14);
    box-shadow: 0 18px 36px rgba(34, 28, 23, 0.07);
    backdrop-filter: blur(10px);
}

.page-home #realisations .portfolio-card__media {
    aspect-ratio: 4 / 3.05;
    background:
        radial-gradient(circle at top left, rgba(223, 195, 161, 0.22), transparent 52%),
        linear-gradient(180deg, #fffdf9, #eadbc8);
}

.page-home #realisations .portfolio-card__body {
    padding: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.page-home #realisations .portfolio-card__body h3,
.page-home #realisations .portfolio-card__body p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0;
}

.page-home #realisations .portfolio-card__body h3 {
    font-size: 1.08rem;
    -webkit-line-clamp: 2;
}

.page-home #realisations .portfolio-card__body p {
    font-size: 0.9rem;
    line-height: 1.42;
    -webkit-line-clamp: 3;
}

    .page-home #realisations .portfolio-card__media {
        aspect-ratio: 4 / 2.45;
    }

    .page-home #realisations .portfolio-card__body {
        padding: 0.9rem;
        display: flex;
        flex-direction: column;
        gap: 0.45rem;
    }

    .page-home #realisations .portfolio-card__body h3 {
        display: -webkit-box;
        font-size: 1.08rem;
        margin-bottom: 0;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }

    .page-home #realisations .portfolio-card__body p {
        display: -webkit-box;
        margin-bottom: 0;
        font-size: 0.9rem;
        line-height: 1.42;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        overflow: hidden;
    }

.page-home #realisations .section-cta {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
}

    .page-home #contact > .section-shell {
        height: auto;
        min-height: calc(var(--viewport-height) - var(--header-offset) - 2rem);
        justify-content: flex-start;
        gap: 1rem;
    }

.page-home #contact .contact-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: 1.4rem;
    align-items: start;
}

.page-home #contact .contact-layout__intro {
    display: grid;
    align-content: start;
    gap: 1rem;
    padding: 1.45rem;
    border-radius: 32px;
    background: linear-gradient(155deg, rgba(255, 252, 247, 0.68), rgba(246, 237, 225, 0.42));
    border: 1px solid rgba(184, 130, 72, 0.12);
    box-shadow: 0 18px 38px rgba(34, 28, 23, 0.06);
    backdrop-filter: blur(12px);
}

.page-home #contact .contact-layout__intro h3,
.page-home #contact .contact-layout__intro p,
.page-home #contact .contact-layout__intro a,
.page-home #contact .contact-layout__intro span {
    color: var(--text);
}

.page-home #contact .contact-layout__summary {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.52;
    color: var(--text-soft);
}

.page-home #contact .contact-layout__notes {
    gap: 0.65rem;
}

.page-home #contact .contact-layout__note {
    padding: 0.85rem 0.9rem;
    background: rgba(255, 255, 255, 0.46);
}

.page-home #contact .contact-layout__note span {
    color: rgba(30, 37, 35, 0.78);
}

.page-home #contact .contact-box {
    gap: 0.5rem;
    padding: 0.95rem;
    background: rgba(255, 255, 255, 0.56);
    border-color: rgba(184, 130, 72, 0.12);
    box-shadow: 0 12px 28px rgba(34, 28, 23, 0.05);
}

.page-home #contact .form-shell {
    align-self: start;
    padding: 1.35rem;
    background: linear-gradient(160deg, rgba(255, 253, 249, 0.88), rgba(248, 240, 229, 0.74));
    border-color: rgba(184, 130, 72, 0.14);
    box-shadow: 0 20px 42px rgba(34, 28, 23, 0.07);
    backdrop-filter: blur(12px);
}

    .page-home #contact .form-shell__intro {
        margin-top: 0;
    }

    .page-home #contact .contact-form {
        display: grid;
        gap: 0.75rem;
    }

    .page-home #contact .field-grid {
        gap: 0.7rem;
    }

    .page-home #contact .contact-form label {
        gap: 0.35rem;
        margin-bottom: 0;
    }

    .page-home #contact .contact-form span {
        font-size: 0.92rem;
    }

    .page-home #contact .contact-form input,
    .page-home #contact .contact-form textarea,
    .page-home #contact .contact-form select {
        padding: 0.75rem 0.82rem;
    }

    .page-home #contact .contact-form textarea {
        min-height: 96px;
        max-height: 120px;
    }

    .page-home #contact .checkbox {
        gap: 0.65rem;
    }

    .page-home #contact .checkbox input {
        margin-top: 0.05rem;
    }

    .page-home #contact .form-note {
        margin: 0;
        font-size: 0.86rem;
    }

    .page-home #contact .contact-form .button {
        justify-self: start;
    }
}

@media (min-width: 1700px) {
    .page-home .hero__content {
        width: min(100%, var(--content-max));
    }
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

:focus-visible {
    outline: 3px solid rgba(184, 130, 72, 0.45);
    outline-offset: 3px;
}

@media (max-width: 1080px) {
    .site-nav {
        flex: 1 1 auto;
        justify-content: flex-end;
        min-width: 0;
        gap: clamp(0.45rem, 0.75vw, 0.7rem);
    }

    .site-nav__link {
        font-size: clamp(0.98rem, 1.3vw, 1.08rem);
    }

    .site-nav .button {
        padding-inline: 0.85rem;
    }

    .hero__title span {
        white-space: normal;
    }

    .hero__content,
    .contact-layout,
    .news-overview,
    .compact-cta,
    .site-footer__panel {
        grid-template-columns: 1fr;
    }

    .page-home .hero__content {
        grid-template-columns: 1fr;
    }

    .page-home .hero__panel {
        justify-self: center;
        align-self: start;
        width: min(100%, 320px);
        max-width: 320px;
        padding: 0.92rem;
    }

    .service-grid,
    .portfolio-grid,
    .trust__grid,
    .catalog-grid,
    .catalog-partners__grid,
    .news-history__grid,
    .masonry-grid,
    .intro__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-partners__hero {
        grid-template-columns: 1fr;
    }

    .catalog-feature {
        grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
    }

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

    .catalog-rail__card {
        flex-basis: clamp(192px, 22vw, 220px);
    }

    .catalog-partners__card,
    .catalog-partners__card--wide {
        grid-column: span 1;
    }

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

    .section-scene {
        padding: 1.25rem;
        border-radius: 34px;
    }

    .section-scene--presentation::after,
    .section-scene--realisations::after,
    .section-scene--contact::after {
        transform: none;
        opacity: 0.7;
    }

    .page-home #contact .contact-layout__intro,
    .page-home #contact .form-shell {
        padding: 1rem;
    }

    .news-hero .section-head h1,
    .news-section--actualites .section-head h1,
    .news-section--actualites .section-head h2 {
        white-space: normal;
    }

    .realization-modal__dialog {
        grid-template-columns: 1fr;
        max-height: calc(100vh - 2rem);
    }

    .realization-modal__media {
        min-height: auto;
        max-height: 46vh;
    }

    .page-home #prestations .service-family {
        padding: 0.95rem 0.9rem 0.9rem;
    }

    .page-home #prestations .service-family h3 {
        min-height: 0;
    }

    .page-home #prestations .service-family__list li {
        padding-right: 0.68rem;
    }

    .reviews-section__summary {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .reviews-slider__viewport {
        min-height: 320px;
    }

    .page-news #realisations-list .masonry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 861px) and (max-width: 1024px) {
    .page-home .hero__content {
        padding-top: clamp(2rem, 4vh, 2.75rem);
        padding-bottom: clamp(2rem, 4vh, 2.75rem);
        gap: clamp(1rem, 3vw, 1.5rem);
        align-content: start;
    }

    .page-home .hero__panel {
        justify-self: center;
        align-self: start;
        width: min(100%, 320px);
        max-width: 320px;
        padding: 0.92rem;
    }

    .page-home .hero__facts {
        gap: 0.62rem;
        margin-bottom: 0.8rem;
    }

    .page-home .hero__contact-card a {
        font-size: 1.12rem;
    }
}

@media (max-width: 1024px) {
    .page-home .scroll-cue {
        display: none;
    }
}

@media (max-width: 860px) {
    .site-header__inner {
        width: auto;
        max-width: none;
        padding: 0 1.25rem;
        justify-content: space-between;
        gap: 1rem;
    }

    .brand__logo {
        width: auto;
        height: clamp(50px, 10.8vw, 62px);
    }

    .brand {
        margin-left: -1.1rem;
    }

    .hero__title span {
        white-space: normal;
    }

    .section-scene {
        padding: 1rem;
        border-radius: 28px;
    }

    .section-scene--presentation::before,
    .section-scene--contact::before {
        width: 56%;
        opacity: 0.6;
    }

    .section-scene--presentation::after,
    .section-scene--realisations::after,
    .section-scene--contact::after {
        opacity: 0.42;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        right: 1.25rem;
        left: 1.25rem;
        padding: 1rem;
        border-radius: 24px;
        background: rgba(30, 37, 35, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

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

    .site-nav__link,
    .site-nav .button {
        color: #fff;
    }

    .site-nav__link {
        padding: 0.8rem 1rem;
        border-radius: 16px;
        font-size: 1.12rem;
    }

    .site-nav__link::after {
        left: 1rem;
        right: 1rem;
        bottom: 0.55rem;
        background: rgba(255, 255, 255, 0.86);
    }

    .site-nav__link.is-active,
    .site-nav__link[aria-current] {
        background: rgba(184, 130, 72, 0.2);
        color: #fff;
    }

    .site-nav .button.is-active {
        box-shadow:
            0 0 0 2px rgba(255, 255, 255, 0.18),
            0 18px 36px rgba(143, 99, 54, 0.25);
    }

    .slide,
    .field-grid,
    .site-footer__panel,
    .service-grid,
    .portfolio-grid,
    .trust__grid,
    .news-history__grid,
    .masonry-grid,
    .intro__grid,
    .intro__band {
        grid-template-columns: 1fr;
    }

    .page-home #prestations .prestations-head__actions {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .page-home #prestations .prestations-head__actions .button {
        justify-self: start;
    }

    .page-home #presentation .intro__team {
        width: min(100%, 280px);
        margin: 0 auto;
    }

    .page-home #presentation .intro__grid {
        grid-template-columns: 1fr;
    }

    .slider-card__viewport {
        min-height: 600px;
    }

    .review-slide__content {
        padding: 1rem;
    }

    .review-slide__meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .slide {
        align-items: start;
    }

    .slide__media {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .page-news .news-section--actualites .slider-card__viewport {
        height: auto;
        min-height: 0;
    }

    .page-news .news-section--actualites .slide {
        position: static;
        grid-template-columns: 1fr;
        gap: 0.85rem;
        opacity: 1;
        visibility: visible;
    }

    .page-news .news-section--actualites .slide:not(.is-active) {
        display: none;
    }

    .page-news .news-section--actualites .slide__body {
        overflow: visible;
    }

    .page-news .news-section--actualites .slide__actions .button {
        height: auto;
        min-height: 38px;
        white-space: normal;
        text-align: center;
    }

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

    .catalog-feature {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .catalog-feature__cover {
        min-height: 280px;
    }

    .catalog-feature__body h3 {
        font-size: 1.34rem;
    }

    .catalog-feature__body p {
        max-width: none;
    }

    .catalog-feature__facts {
        grid-template-columns: 1fr;
    }

    .catalog-rail__card {
        flex-basis: clamp(220px, 74vw, 310px);
    }

    .catalog-stack__card {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .catalog-stack__card img {
        max-width: 68px;
    }

    .page-home #prestations .service-grid {
        gap: 0.75rem;
    }

    .page-home #prestations .service-family__list li {
        font-size: 0.85rem;
    }

    .news-section__lead {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-section__controls {
        align-self: flex-end;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 78px;
    }

    .section,
    .home-section {
        padding: 4rem 0;
    }

    .hero__content {
        padding-top: calc(var(--header-height) + 2rem);
    }

    .hero__actions,
    .page-home #presentation .intro__actions,
    .compact-cta__actions,
    .news-pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .page-home #presentation .intro__actions .button {
        width: 100%;
    }

    .page-home #presentation .intro__team figcaption {
        font-size: 1.95rem;
        white-space: normal;
    }

    .news-pagination__pages {
        justify-content: center;
    }

    .slider-card__viewport {
        min-height: 560px;
    }

    .reviews-slider {
        padding: 0.85rem;
    }

    .reviews-slider__viewport {
        min-height: 360px;
    }

    .review-slide__text {
        font-size: 0.97rem;
        line-height: 1.6;
    }

    .catalog-partners {
        padding: 0.9rem;
    }

    .catalog-partners__panel-head--split {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-partners__panel-head--rail {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.38rem;
    }

    .catalog-partners__panel-head--rail h3 {
        flex-basis: 100%;
        white-space: normal;
    }

    .catalog-rail__filter {
        flex: 1 1 0;
        min-width: 0;
    }

    .catalog-rail__filter select {
        min-height: 32px;
        font-size: 0.74rem;
    }

    .catalog-partners__videos {
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-partners__video-link {
        width: 100%;
        min-width: 0;
    }

    .catalog-rail__card {
        flex-basis: clamp(220px, calc(100vw - 6.75rem), 288px);
        padding: 0.55rem;
    }

    .catalog-rail__cover {
        height: 116px;
        min-height: 0;
        max-height: none;
    }

    .catalog-rail__meta {
        gap: 0.4rem;
    }

    .page-news #realisations-list .masonry-grid {
        grid-template-columns: 1fr;
    }

    .catalog-partners__card,
    .catalog-partners__card--wide {
        grid-column: span 1;
    }

    .catalog-feature__cover {
        min-height: 220px;
    }

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

    .site-footer {
        padding-inline: 1rem;
    }

    .realization-modal {
        padding: 0.75rem;
    }

    .realization-modal__dialog {
        border-radius: 24px;
    }

    .realization-modal__body {
        padding: 1.15rem 1rem 1.25rem;
    }

    .realization-modal__close {
        top: 0.7rem;
        right: 0.7rem;
    }

    .realization-modal__nav {
        justify-content: space-between;
    }
}

@media (min-width: 680px) and (max-width: 1024px) {
    .page-home #realisations .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    body.page-home {
        scroll-snap-type: none;
    }

    .page-home .home-section {
        min-height: auto;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }

}

@media (min-width: 1025px) and (max-height: 820px) {
    body.page-home {
        scroll-snap-type: none;
    }

    .page-home .home-section {
        min-height: auto;
        scroll-snap-align: none;
        scroll-snap-stop: normal;
    }

    .page-home .home-section:not(.hero) {
        display: block;
        overflow: visible;
    }

    .page-home .home-section:not(.hero) > .section-shell,
    .page-home #avis-clients > .section-shell,
    .page-home #contact > .section-shell {
        height: auto;
        min-height: 0;
        justify-content: flex-start;
        overflow: visible;
    }

    .page-home .home-section:not(.hero) > .section-shell.section-scene,
    .page-home #avis-clients > .section-shell.section-scene,
    .page-home #contact > .section-shell.section-scene {
        overflow: hidden;
    }

    .page-home #presentation .intro__team {
        top: auto;
        margin-top: 2rem;
    }

    .page-home #prestations .service-grid,
    .page-home #realisations .portfolio-grid {
        margin-top: 1rem;
    }

    .page-home #realisations .section-cta,
    .page-home #avis-clients .section-cta {
        margin-top: 1rem;
        padding-top: 0;
    }

    .page-news .news-section--actualites .slider-card__viewport {
        height: clamp(320px, 40vh, 440px);
    }

    .page-news .news-section--catalogues > .section-shell {
        gap: 0.08rem;
        padding-top: 0.65rem;
    }

    .page-news .news-section--catalogues .news-section__head {
        max-width: 620px;
    }

    .page-news .news-section--catalogues .news-section__head .eyebrow {
        margin-bottom: 0.2rem;
    }

    .page-news .news-section--catalogues .news-section__head h2 {
        margin-bottom: 0.1rem;
        font-size: clamp(1.55rem, 2.7vw, 2.1rem);
    }

    .page-news .news-section--catalogues .news-section__head p:last-child {
        font-size: 0.8rem;
        line-height: 1.28;
        -webkit-line-clamp: 1;
    }

    .page-news .news-section--catalogues .catalog-partners {
        gap: 0.55rem;
    }

    .page-news .news-section--catalogues .catalog-partners__hero {
        gap: 0.45rem;
    }

    .page-news .news-section--catalogues .catalog-partners__panel {
        padding: 0.46rem;
        border-radius: 24px;
    }

    .page-news .news-section--catalogues .catalog-partners__panel-head {
        margin-bottom: 0.2rem;
    }

    .page-news .news-section--catalogues .catalog-feature {
        grid-template-columns: 136px minmax(0, 1fr);
        gap: 0.42rem;
    }

    .page-news .news-section--catalogues .catalog-feature__cover {
        max-height: 160px;
        padding: 0.42rem;
        border-radius: 16px;
    }

    .page-news .news-section--catalogues .catalog-feature__body {
        gap: 0.24rem;
    }

    .page-news .news-section--catalogues .catalog-feature__body p {
        -webkit-line-clamp: 1;
    }

    .page-news .news-section--catalogues .catalog-feature__tips {
        display: none;
    }

    .page-news .news-section--catalogues .catalog-feature__facts {
        gap: 0.28rem;
    }

    .page-news .news-section--catalogues .catalog-feature__fact {
        padding: 0.42rem 0.52rem;
        border-radius: 12px;
    }

    .page-news .news-section--catalogues .catalog-feature__cta,
    .page-news .news-section--catalogues .catalog-rail__cta {
        min-height: 26px;
    }

    .page-news .news-section--catalogues .catalog-partners__videos {
        gap: 0.3rem;
    }

    .page-news .news-section--catalogues .catalog-partners__video-link {
        padding: 0.38rem 0.52rem;
        border-radius: 16px;
    }

    .page-news .news-section--catalogues .catalog-partners__panel-head--rail {
        gap: 0.32rem;
    }

    .page-news .news-section--catalogues .catalog-rail__filter {
        flex-basis: min(180px, 22vw);
        min-width: min(150px, 22vw);
    }

    .page-news .news-section--catalogues .catalog-rail__filter select {
        min-height: 28px;
        padding-left: 0.56rem;
        padding-right: 1.58rem;
        font-size: 0.64rem;
    }

    .page-news .news-section--catalogues .catalog-rail__card {
        flex-basis: clamp(136px, 10vw, 150px);
        min-height: 166px;
        gap: 0.26rem;
        padding: 0.42rem;
        border-radius: 16px;
    }

    .page-news .news-section--catalogues .catalog-rail__card::after {
        left: 0.36rem;
        right: 0.36rem;
        bottom: 0.36rem;
        padding: 0.42rem 0.46rem;
        border-radius: 11px;
        font-size: 0.66rem;
        line-height: 1.24;
    }

    .page-news .news-section--catalogues .catalog-rail__cover {
        height: 58px;
        padding: 0.34rem;
        border-radius: 12px;
    }

    .page-news .news-section--catalogues .catalog-rail__body h3 {
        font-size: 0.68rem;
        line-height: 1.1;
    }

    .page-news .news-section--catalogues .catalog-rail__body p {
        font-size: 0.66rem;
        line-height: 1.18;
    }

}

@media (min-width: 1025px) {
    .page-home #presentation > .section-shell {
        justify-content: flex-start;
    }

    .page-home #presentation .intro__layout {
        flex: 0 0 auto;
    }

    .page-home #presentation .intro__band {
        margin-top: 0.15rem;
        width: 100%;
    }

    .page-home #presentation .intro__card h3 {
        min-height: 3.05em;
    }

    .page-news .news-section--catalogues {
        min-height: auto;
        padding-top: 0.35rem;
        padding-bottom: 1rem;
        scroll-margin-top: var(--header-offset);
    }

    .page-news .news-section--catalogues > .section-shell {
        min-height: auto;
        padding-top: 0;
        gap: 0.16rem;
        justify-content: flex-start;
    }

    .page-news .news-section--catalogues > .section-shell.section-scene {
        padding-top: 0.85rem;
    }

    .page-news .news-section--actualites .slide__body {
        overflow: auto;
    }

    .page-news .news-section--catalogues .news-section__head h2 {
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .page-news .news-section--catalogues .news-section__head p:last-child,
    .page-news .news-section--catalogues .catalog-feature__body p,
    .page-news .news-section--catalogues .catalog-feature__tips li {
        display: block;
        overflow: visible;
        -webkit-line-clamp: unset;
    }

    .page-news .news-section--catalogues .catalog-feature__tips {
        display: grid;
    }

    .page-news .news-section--catalogues .catalog-rail__body p {
        display: -webkit-box;
    }
}

@media (min-width: 861px) and (max-width: 1024px) {
    .page-home #presentation .intro__card h3 {
        min-height: 3.05em;
    }
}

@media (max-width: 860px) {
    .page-home #presentation .intro__card {
        grid-template-rows: auto;
    }

    .page-home #presentation .intro__card h3 {
        min-height: 0;
        display: block;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal,
    .slide,
    .portfolio-card__media img,
    .catalog-card__media img,
    .realization-card__media img,
    .catalog-stack__card img,
    .preview-mini-card img,
    .button {
        transition: none;
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .page-home #presentation .intro__team figcaption {
        animation: none;
        background-image: none;
        -webkit-text-fill-color: initial;
        color: rgba(18, 22, 21, 0.96);
    }

    .realization-modal__arrow {
        transition: none;
    }
}

@media (max-width: 1024px) and (prefers-reduced-motion: reduce) {
    /* Keep a static highlight on the signature without reintroducing motion. */
    .page-home #presentation .intro__team figcaption {
        animation: none;
        background-image: linear-gradient(
            105deg,
            rgba(18, 22, 21, 0.96) 0%,
            rgba(18, 22, 21, 0.96) 43%,
            rgba(255, 246, 232, 0.98) 49%,
            rgba(18, 22, 21, 0.96) 55%,
            rgba(18, 22, 21, 0.96) 100%
        );
        background-size: 220% 100%;
        background-position: 50% 50%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        color: transparent;
    }
}
