*:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

:root {
    /* Steel theme overrides */
    --ink: #1C1F24;
    --ink-2: #262A30;
    --line: rgba(255, 255, 255, .10);
    --line-strong: rgba(255, 255, 255, .18);
    --steel: #A0A6AE;
    --steel-2: #D8DBDF;
    --paper: #F6F4EF;
    --paper-2: #EAE6DD;
    --paper-ink: #15171A;
    --paper-ink-2: #5A5F66;
    --blue: #5BB0DC;
    --red: #E63430;
    --display: "Cormorant Garamond", "Iowan Old Style", Garamond, serif;
    --sans: "Manrope", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
    --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

html {
    height: 100% !important;
    /* -x: empêche le swipe-arrière sur les carrousels, mais laisse le pull-to-refresh vertical */
    overscroll-behavior-x: none;
}

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

.showroom-page {
    font-family: var(--sans);
    background: var(--ink);
    color: var(--steel-2);
    -webkit-font-smoothing: antialiased;
    letter-spacing: -.005em;
}

.showroom-page #outer-wrap,
.showroom-page #wrap {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.showroom-page #main {
    background: transparent !important;
    padding: 0 !important;
    margin-top: -78px !important;
    max-width: 100% !important;
    width: 100% !important;
}

.showroom-page a {
    text-decoration: none;
    color: inherit;
}

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

.showroom-page ::selection {
    background: var(--blue);
    color: #000;
}

/* Container */
.sr-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
}


#sr-nav {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    height: 78px;
    background: rgba(11, 12, 14, .55);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
}

.sr-nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sr-nav-logo img {
    height: 55px;
    width: auto;
}

.sr-nav-logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sr-nav-logo-name {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: .01em;
    line-height: 1;
}

.sr-nav-logo-sub {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 400;
    color: var(--steel);
    letter-spacing: .16em;
    text-transform: uppercase;
    line-height: 1;
}

.sr-nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.sr-nav-links a {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--steel-2);
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: color .2s;
    line-height: 1;
}

.sr-nav-links a:hover {
    color: #fff;
}

/* Dropdown Boutique */
.sr-nav-has-sub {
    position: relative;
}

.sr-nav-has-sub > a::after {
    content: '';
    display: inline-block;
    margin-left: 5px;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s;
    vertical-align: middle;
}

.sr-nav-has-sub:hover > a::after {
    transform: rotate(-135deg) translateY(-2px);
}

.sr-nav-sub {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: rgba(11, 12, 14, .95);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 8px 0;
    list-style: none;
    margin: 0;
    min-width: 180px;
    z-index: 9999;
    transition: opacity .15s, visibility .15s;
}

.sr-nav-sub::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
}

.sr-nav-has-sub:hover .sr-nav-sub {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.sr-nav-sub li {
    list-style: none;
}

.sr-nav-sub a {
    display: block;
    padding: 10px 20px;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    color: var(--steel-2);
    letter-spacing: .14em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .2s, background .2s;
}

.sr-nav-sub a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06);
}

.sr-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.sr-nav-phone {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    color: var(--steel);
    letter-spacing: .14em;
    line-height: 1;
}

.sr-nav-phone a {
    color: inherit;
}

.sr-nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    border: 1px solid var(--line-strong);
    padding: 14px 20px;
    border-radius: 999px;
    background: transparent;
    transition: all .2s;
    line-height: 1;
}

.sr-nav-cta:hover {
    background: #fff;
    color: var(--ink);
    border-color: #fff;
}

/* Icône panier (présente dans le DOM même vide, pour les fragments AJAX) */
.sr-nav-cart-wrap {
    display: inline-flex;
}

.sr-nav-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--steel-2);
    transition: color .2s;
}

.sr-nav-cart:hover {
    color: #fff;
}

.sr-nav-cart-count {
    position: absolute;
    top: -7px;
    right: -8px;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--red);
    color: #fff;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    line-height: 17px;
    text-align: center;
}

.sr-nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.sr-nav-burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--steel-2);
    transition: transform .3s ease, opacity .2s;
}

.sr-nav-burger.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}

.sr-nav-burger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.sr-nav-burger.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.sr-hero {
    position: relative;
    min-height: calc(100vh);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.sr-hero-bg {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(180deg, rgba(0, 0, 0, .35) 0%, rgba(0, 0, 0, .45) 60%, rgba(0, 0, 0, .85) 100%),*/
    /*repeating-linear-gradient(95deg, #1E2126 0 2px, #272A30 2px 4px, #16181B 4px 9px),*/
    /*linear-gradient(180deg, #1A1C20, #0E1014);*/
    background-image: url("https://flacservices.fr/wp-content/uploads/2026/05/cuisine_3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sr-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(91, 176, 220, .04) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(230, 52, 48, .03) 0%, transparent 50%);
    pointer-events: none;
}

.sr-hero-top {
    position: relative;
    z-index: 2;
    padding-top: 40px;
}

.sr-hero-bottom {
    position: relative;
    z-index: 2;
    padding: 0 36px 26px;
}

.sr-hero h1 {
    font-family: var(--display);
    font-size: clamp(64px, 11vw, 180px);
    font-weight: 300;
    line-height: .92;
    color: #fff;
    letter-spacing: -.04em;
    margin-bottom: 0;
}

.sr-hero h1 em {
    font-style: italic;
    color: var(--blue);
}

.sr-hero h1 .blue {
    font-style: italic;
    color: var(--blue);
}

.sr-hero-foot {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    margin-top: 64px;
    border-top: 1px solid var(--line-strong);
    padding-top: 28px;
}

.sr-hero-foot-label {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 10px;
    line-height: 1;
}

.sr-hero-foot-text {
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    color: var(--steel-2);
    line-height: 1.5;
}

.sr-hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
}

/* ── Buttons — filled pill ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 18px 26px;
    border-radius: 999px;
    transition: all .2s;
    cursor: pointer;
    border: none;
    line-height: 1;
    white-space: nowrap;
}

.btn .arrow {
    transition: transform .25s;
    display: inline-block;
}

.btn:hover .arrow {
    transform: translateX(6px);
}

.btn-red {
    background: var(--red);
    color: #fff !important;
}

.btn-red:hover {
    background: #c4221e;
}

.btn-blue {
    background: var(--blue);
    color: #000 !important;
    border-color: var(--blue);
}

.btn-blue:hover {
    background: var(--steel-2);
    color: #000 !important;
}

/* Feature text links */
.sr-feat-link {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--steel-2);
    border-bottom: 1px solid var(--line-strong);
    padding-bottom: 4px;
    transition: color .2s, border-color .2s;
    line-height: 1;
}

.sr-feat-link:hover {
    color: var(--blue);
    border-color: var(--blue);
}

/* ── SHARED ── */
.sr-eyebrow {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
    line-height: 1;
}

.sr-lede {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: var(--steel-2);
    margin-bottom: 32px;
    max-width: 480px;
}

.sr-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}

.sr-bullets li {
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--steel-2);
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sr-bullets li::before {
    content: '';
    display: block;
    width: 6px;
    height: 1px;
    background: var(--red);
    flex-shrink: 0;
}

/* Brushed metal photo placeholder */
.sr-photo-ph {
    /*background: repeating-linear-gradient(105deg, #1E2126 0 2px, #272A30 2px 4px, #16181B 4px 9px);*/
    background-image: url("https://flacservices.fr/wp-content/uploads/2026/05/installation_1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sr-photo-ph::after {
    content: attr(data-label);
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--steel);
    position: absolute;
    bottom: 20px;
    right: 20px;
    opacity: .6;
}

/* ══════════════════════════════════════════════════════════════
   FEATURES
══════════════════════════════════════════════════════════════ */
.sr-feat {
    padding: 140px 0;
}

.sr-feat--first {
    padding: 70px 0 140px;
}

.sr-feat--alt {
    background: #0E1014;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sr-feat-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.sr-feat-grid--rev {
    grid-template-columns: 1fr 1.2fr;
}

.sr-feat-photo {
    aspect-ratio: 4/5;
    min-height: 300px;
    overflow: hidden;
    border-radius: 35px;
}

.sr-feat-text {
}

.sr-feat h2 {
    font-family: var(--display);
    font-size: clamp(40px, 5.4vw, 84px);
    font-weight: 300;
    color: #fff;
    line-height: .98;
    letter-spacing: -.04em;
    margin-bottom: 28px;
}

.sr-feat h2 em {
    font-style: italic;
    color: var(--blue);
}

.sr-bleed {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    overflow: hidden;
}

.sr-bleed-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .4) 0%, rgba(0, 0, 0, .5) 60%, rgba(0, 0, 0, .8) 100%),
    repeating-linear-gradient(105deg, #1E2126 0 2px, #272A30 2px 4px, #16181B 4px 9px),
    linear-gradient(180deg, #1A1C20, #0E1014);
}

.sr-bleed-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    padding: 80px 36px;
    text-align: center;
}

.sr-bleed-stars {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: .4em;
    color: var(--red);
    margin-bottom: 40px;
    line-height: 1;
}

.sr-bleed blockquote {
    font-family: var(--display);
    font-size: clamp(28px, 3.6vw, 52px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.015em;
    margin-bottom: 48px;
}

.sr-bleed-who {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.sr-bleed-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--steel);
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 700;
    color: var(--ink-2);
}

.sr-bleed-name {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-align: left;
}

.sr-bleed-role {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--steel);
    text-align: left;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY — 12-column mosaic
══════════════════════════════════════════════════════════════ */
.sr-gallery {
    background: var(--ink-2);
    padding: 140px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.sr-gallery-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
}

.sr-gallery-head {
    margin-bottom: 60px;
}

.sr-gallery-head h2 {
    font-family: var(--display);
    font-size: clamp(48px, 6vw, 96px);
    font-weight: 300;
    color: #fff;
    line-height: .95;
    letter-spacing: -.04em;
}

.sr-gallery-head h2 em {
    font-style: italic;
    color: var(--steel-2);
}

.sr-gal-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.sr-gi {
    background: repeating-linear-gradient(105deg, #1E2126 0 2px, #272A30 2px 4px, #16181B 4px 9px);
    background-size: cover;
    background-position: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    text-decoration: none;
    color: inherit;
}

a.sr-gi:hover {
    color: inherit;
}

/* Pseudo-élément pour zoomer la photo sans toucher au bloc */
.sr-gi::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
    z-index: 0;
}

.sr-gi:hover::before {
    transform: scale(1.06);
}

/* Overlay dégradé pour lisibilité du texte sur les photos */
.sr-gi::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 50%, rgba(0,0,0,.08) 100%);
    pointer-events: none;
    z-index: 1;
}

.sr-gi-tag,
.sr-gi-info,
.sr-gi-pg {
    position: relative;
    z-index: 2;
}

.sr-gi--s3 {
    grid-column: span 3;
}

.sr-gi--s4 {
    grid-column: span 4;
}

.sr-gi--s5 {
    grid-column: span 5;
}

.sr-gi--s6 {
    grid-column: span 6;
}

.sr-gi--s7 {
    grid-column: span 7;
}

.sr-gi--s8 {
    grid-column: span 8;
}

.sr-gi--s12 {
    grid-column: span 12;
    min-height: 420px;
}

.sr-gi-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--red);
    background: rgba(0, 0, 0, .5);
    padding: 6px 12px;
    border-radius: 999px;
    line-height: 1;
}

.sr-gi-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sr-gi-title {
    font-family: var(--display);
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -.01em;
}

.sr-gi--s12 .sr-gi-title {
    font-size: 48px;
}

.sr-gi-meta {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--steel);
    line-height: 1.4;
}

.sr-gi-pg {
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: .12em;
    color: var(--steel);
    position: absolute;
    bottom: 16px;
    right: 16px;
    opacity: .5;
    line-height: 1;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS — row layout with borders
══════════════════════════════════════════════════════════════ */
.sr-process {
    background: #CACACA;
    padding: 70px 0;
}

.sr-process-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
}

.sr-process-head {
    margin-bottom: 60px;
}

.sr-process-head h2 {
    font-family: var(--display);
    font-size: clamp(48px, 6.4vw, 100px);
    font-weight: 300;
    color: var(--paper-ink);
    line-height: .95;
    letter-spacing: -.025em;
}

.sr-process-head h2 em {
    font-style: italic;
    color: var(--paper-ink-2);
}

.sr-process-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #D6D2C8;
}

.sr-proc {
    padding: 36px 32px 64px 0;
    border-right: 1px solid #D6D2C8;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.sr-proc:last-child {
    border-right: none;
}

.sr-proc:not(:first-child) {
    padding-left: 32px;
}

.sr-proc-num {
    font-family: var(--display);
    font-size: 96px;
    font-weight: 300;
    font-style: italic;
    color: var(--blue);
    line-height: 1;
    letter-spacing: -.04em;
    margin-bottom: 16px;
}

.sr-proc h4 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    color: var(--paper-ink);
    line-height: 1.05;
    letter-spacing: -.01em;
    margin-bottom: 12px;
}

.sr-proc p {
    font-family: var(--sans);
    font-size: 14.5px;
    font-weight: 400;
    color: var(--paper-ink-2);
    line-height: 1.55;
}

/* ══════════════════════════════════════════════════════════════
   ZONE IDF
══════════════════════════════════════════════════════════════ */
.sr-zone {
    background: var(--ink);
    padding: 140px 0;
}

.sr-zone-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.sr-zone h2 {
    font-family: var(--display);
    font-size: clamp(44px, 5.6vw, 84px);
    font-weight: 300;
    color: #fff;
    line-height: .95;
    letter-spacing: -.025em;
    margin-bottom: 24px;
}

.sr-zone h2 em {
    font-style: italic;
    color: var(--blue);
}

.sr-zone-desc {
    font-family: var(--sans);
    font-size: 17px;
    font-weight: 400;
    color: var(--steel-2);
    line-height: 1.55;
    margin-bottom: 40px;
    max-width: 440px;
}

.sr-zone-stats {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 36px;
}

.sr-zone-stat-num {
    font-family: var(--display);
    font-size: 64px;
    font-weight: 300;
    font-style: italic;
    color: #fff;
    line-height: 1;
    letter-spacing: -.02em;
}

.sr-zone-stat-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--steel);
    line-height: 1.3;
    margin-top: 4px;
}

.sr-zone-map {
    position: relative;
    width: 100%;
    aspect-ratio: 460 / 400;
}

.sr-zone-map svg {
    width: 100%;
    height: 100%;
    display: block;
}

.sr-zone-dept-path {
    transition: fill .25s;
}
.sr-zone-dept-path:hover {
    fill: rgba(91,176,220,.10);
}

/* ══════════════════════════════════════════════════════════════
   BOUTIQUE BANNER
══════════════════════════════════════════════════════════════ */
.sr-boutique-banner {
    background: var(--paper);
    padding: 80px 36px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

.sr-boutique-banner-inner {
    max-width: 640px;
    margin: 0 auto;
}

.sr-boutique-h2 {
    font-family: var(--display);
    font-size: clamp(32px, 4vw, 64px);
    font-weight: 300;
    color: var(--paper-ink);
    margin-bottom: 16px;
    line-height: .95;
    letter-spacing: -.02em;
}

.sr-boutique-h2 em {
    font-style: italic;
    color: var(--paper-ink-2);
}

.sr-boutique-desc {
    font-family: var(--sans);
    font-size: 15px;
    color: var(--paper-ink-2);
    line-height: 1.55;
    margin-bottom: 48px;
}

/* ── Carousel produits ── */
.sr-carousel {
    width: 100%;
    margin: 0 0 48px;
    padding: 0 36px;
    /* clippe l'horizontal (cartes hors écran) sans jamais rogner le bas des cartes */
    overflow-x: clip;
    overflow-y: visible;
    box-sizing: border-box;
}

.sr-carousel-wrapper {
    overflow-x: clip;
    overflow-y: visible;
    cursor: grab;
    width: 100%;
}

.sr-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform .45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.sr-prod-card {
    flex: 0 0 220px;
    background: transparent;
    border: 1px solid rgba(0,0,0,.10);
    display: flex;
    flex-direction: column;
    transition: border-color .2s;
}

.sr-prod-card:hover {
    border-color: var(--paper-ink);
}

.sr-prod-img {
    height: 160px;
    background: var(--paper-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.sr-prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .3s;
}

.sr-prod-card:hover .sr-prod-img img {
    opacity: .88;
}

.sr-prod-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--red);
    padding: 4px 8px;
    border-radius: 999px;
    line-height: 1;
}

.sr-prod-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.sr-prod-cat {
    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--red);
    line-height: 1;
}

.sr-prod-name {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: var(--paper-ink);
    letter-spacing: -.01em;
    line-height: 1.15;
}

.sr-prod-price {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .06em;
    color: var(--paper-ink-2);
    margin-top: 2px;
}

.sr-prod-price-old {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--steel);
    text-decoration: line-through;
    margin-right: 4px;
}

.sr-prod-price-sale {
    color: var(--red) !important;
}

.sr-prod-btn {
    margin-top: auto;
    padding-top: 12px;
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--paper-ink) !important;
    border-top: 1px solid rgba(0,0,0,.08);
    transition: color .2s;
    text-decoration: none !important;
    display: block;
}

.sr-prod-btn:hover { color: var(--red) !important; }

/* Dots */
.sr-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.sr-carousel-dots .flac-dot {
    width: 20px;
    height: 2px;
    background: rgba(0,0,0,.15);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background .2s, width .2s;
    border-radius: 0;
}

.sr-carousel-dots .flac-dot.active {
    background: var(--paper-ink);
    width: 32px;
}

.btn-shop {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--paper-ink);
    color: var(--paper) !important;
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .18em;
    text-transform: uppercase;
    padding: 18px 26px;
    border-radius: 999px;
    transition: all .2s;
}

.btn-shop:hover {
    background: #2B4A6B;
    color: #fff !important;
}

/* ══════════════════════════════════════════════════════════════
   FINAL / DEVIS
══════════════════════════════════════════════════════════════ */
.sr-final {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.sr-final-inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 80px;
    align-items: start;
}

.sr-final h2 {
    font-family: var(--display);
    font-size: clamp(56px, 7vw, 128px);
    font-weight: 300;
    color: #fff;
    line-height: .92;
    letter-spacing: -.04em;
    margin-bottom: 24px;
}

.sr-final h2 em {
    font-style: italic;
    color: var(--blue);
}

.sr-final-lede {
    font-family: var(--sans);
    font-size: 18px;
    font-weight: 400;
    color: var(--steel-2);
    line-height: 1.5;
    margin-bottom: 32px;
    max-width: 440px;
}

.sr-final-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.sr-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    border-top: 1px solid var(--line);
    padding-top: 32px;
}

.sr-contact-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--line);
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sr-contact-card-label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--steel);
    line-height: 1;
}

.sr-contact-card-val {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--steel-2);
    line-height: 1.5;
}

.sr-contact-card-val a {
    color: var(--blue);
    transition: color .2s;
}

.sr-contact-card-val a:hover {
    color: #fff;
}

/* Form */
.sr-form-wrap {
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 4px;
    padding: 40px;
}

.sr-form-wrap h3 {
    font-family: var(--display);
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1;
}

/* CF7 — Grid 2 colonnes */
.flac-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
}

.flac-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.flac-form-full {
    grid-column: 1 / -1;
}

.flac-form-group label,
.sr-form-wrap .wpcf7 label {
    font-family: var(--mono) !important;
    font-size: 10px !important;
    font-weight: 500 !important;
    letter-spacing: .14em !important;
    text-transform: uppercase !important;
    color: var(--steel) !important;
}

.sr-form-wrap .wpcf7 .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.sr-form-wrap .wpcf7-text,
.sr-form-wrap .wpcf7-email,
.sr-form-wrap .wpcf7-tel,
.sr-form-wrap .wpcf7-number,
.sr-form-wrap .wpcf7-select,
.sr-form-wrap .wpcf7-textarea {
    width: 100% !important;
    background: rgba(255, 255, 255, .04) !important;
    border: 1px solid var(--line-strong) !important;
    border-radius: 0 !important;
    color: #fff !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    padding: 14px 16px !important;
    outline: none !important;
    transition: border-color .2s !important;
    -webkit-appearance: none !important;
}

.sr-form-wrap .wpcf7-text::placeholder,
.sr-form-wrap .wpcf7-email::placeholder,
.sr-form-wrap .wpcf7-tel::placeholder,
.sr-form-wrap .wpcf7-textarea::placeholder {
    color: var(--steel) !important;
    opacity: 1 !important;
}

.sr-form-wrap .wpcf7-text:focus,
.sr-form-wrap .wpcf7-email:focus,
.sr-form-wrap .wpcf7-tel:focus,
.sr-form-wrap .wpcf7-select:focus,
.sr-form-wrap .wpcf7-textarea:focus {
    border-color: var(--blue) !important;
    background: rgba(255, 255, 255, .07) !important;
}

.sr-form-wrap .wpcf7-textarea {
    resize: vertical !important;
    min-height: 100px !important;
}

.sr-form-wrap .wpcf7-select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A0A6AE' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    padding: 18px 42px 18px 16px !important;
    min-height: 56px !important;
    line-height: 1.4 !important;
    cursor: pointer !important;
    color: var(--steel-2) !important;
}

.sr-form-wrap .wpcf7-select option {
    background: var(--ink-2);
    color: #fff;
}

.sr-form-wrap .wpcf7-submit {
    background: var(--red) !important;
    color: #fff !important;
    font-family: var(--mono) !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    letter-spacing: .18em !important;
    text-transform: uppercase !important;
    padding: 20px !important;
    border: none !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    transition: background .2s !important;
    width: 100% !important;
    margin-top: 10px !important;
}

.sr-form-wrap .wpcf7-submit:hover {
    background: #c4221e !important;
}

.sr-form-wrap .wpcf7-not-valid-tip {
    color: var(--red) !important;
    font-size: 11px !important;
    margin-top: 4px !important;
}

.sr-form-wrap .wpcf7-response-output {
    color: var(--steel-2) !important;
    border: 1px solid var(--line-strong) !important;
    padding: 12px 16px !important;
    margin-top: 12px !important;
    font-size: 13px !important;
}

/* Fallback form */
.sr-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sr-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.sr-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sr-field label {
    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--steel);
    line-height: 1;
}

.sr-field input,
.sr-field select,
.sr-field textarea {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line-strong);
    color: #fff;
    font-family: var(--sans);
    font-size: 14px;
    padding: 14px 16px;
    outline: none;
    transition: border-color .2s;
    -webkit-appearance: none;
}

.sr-field input:focus,
.sr-field select:focus,
.sr-field textarea:focus {
    border-color: var(--blue);
}

.sr-field textarea {
    resize: vertical;
    min-height: 100px;
}

.sr-field select option {
    background: var(--ink-2);
}

.sr-form-submit {
    width: 100%;
    margin-top: 10px;
}

.sr-form-submit .btn-red {
    width: 100%;
    justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.sr-footer {
    background: #08090B;
    padding: 80px 0 36px;
    border-top: 1px solid var(--line);
}

.sr-foot-top {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 36px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.sr-footer-brand img {
    height: 56px;
    width: auto;
    margin-bottom: 16px;
    opacity: .7;
}

.sr-footer-brand-desc {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--steel-2);
    line-height: 1.4;
    max-width: 260px;
}

.sr-footer-col-title {
    font-family: var(--mono);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    line-height: 1;
}

.sr-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sr-footer-links a {
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    color: var(--steel-2);
    transition: color .2s;
    line-height: 1.4;
}

.sr-footer-links a:hover {
    color: #fff;
}

.sr-foot-bot {
    max-width: 1320px;
    margin: 0 auto;
    padding: 28px 36px 0;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.sr-foot-copy {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--steel);
    line-height: 1;
}

.sr-foot-legal {
    display: flex;
    gap: 24px;
}

.sr-foot-legal a {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--steel);
    transition: color .2s;
    line-height: 1;
}

.sr-foot-legal a:hover {
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   PARTENAIRES — défilement infini
══════════════════════════════════════════════════════════════ */
.sr-partners {
    background: var(--paper);
    padding: 56px 0;
    border-top: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.sr-partners-head {
    margin-bottom: 32px;
}

/* eyebrow adapté fond clair */
.sr-eyebrow--dark {
    color: var(--paper-ink-2) !important;
}

.sr-partners-track-wrap {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.sr-partners-track {
    display: flex;
    width: max-content;
    animation: sr-partners-scroll calc(var(--logo-count, 6) * 4.5s) linear infinite;
}

.sr-partners-track:hover {
    animation-play-state: paused;
}

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

.sr-partner-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 4px;
    padding: 16px 32px;
    margin-right: 20px;
    transition: border-color .2s, box-shadow .2s;
}

.sr-partner-logo:hover {
    border-color: rgba(0, 0, 0, .16);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
}

.sr-partner-logo img {
    height: 36px;
    width: auto;
    max-width: 110px;
    display: block;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .55;
    transition: filter .25s, opacity .25s;
}

.sr-partner-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
    .sr-feat-grid,
    .sr-feat-grid--rev {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .sr-proc {
        min-height: auto;
    }
}

@media (max-width: 980px) {
    .sr-nav-links,
    .sr-nav-phone {
        display: none;
    }

    .sr-nav-burger {
        display: flex;
    }

    /* Cacher le CTA nav en mobile */
    .sr-nav-cta {
        display: none;
    }

    /* Menu mobile ouvert */
    .sr-nav-links.sr-nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        z-index: 9998;
        background: rgba(11, 12, 14, .97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px 24px 24px;
        gap: 0;
        border-bottom: 1px solid var(--line);
    }

    .sr-nav-links.sr-nav-open > li {
        border-bottom: 1px solid var(--line);
    }

    .sr-nav-links.sr-nav-open > li:last-child {
        border-bottom: none;
    }

    .sr-nav-links.sr-nav-open > li > a {
        display: block;
        padding: 16px 0;
        font-size: 15px;
        letter-spacing: .06em;
        text-align: center;
    }

    /* Sous-menu mobile : caché par défaut, toggle au tap */
    .sr-nav-sub {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        position: static;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0;
        padding: 0;
        min-width: unset;
        margin: 0;
        transition: max-height .35s ease, opacity .25s, visibility .25s, margin .25s, padding .25s;
    }

    /* Annuler le comportement hover desktop sur tactile (sinon iOS avale le 1er tap).
       Placé AVANT la règle .open pour que .open l'emporte via l'ordre source. */
    .sr-nav-has-sub:hover .sr-nav-sub {
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        max-height: 0;
    }

    /* Sous-menu visible quand parent .open : bloc centré et arrondi */
    .sr-nav-has-sub.open .sr-nav-sub {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        max-height: 420px;
        width: 80%;
        margin: 2px auto 12px;
        padding: 6px 0;
        background: rgba(255, 255, 255, .05);
        border-radius: 10px;
    }

    /* Sur mobile, le chevron ne réagit qu'à l'état .open (pas au hover collant tactile) */
    .sr-nav-has-sub:hover > a::after {
        transform: rotate(45deg) translateY(-2px);
    }

    .sr-nav-has-sub.open > a::after {
        transform: rotate(-135deg) translateY(-2px);
    }

    .sr-nav-sub::before {
        display: none;
    }

    .sr-nav-sub a {
        padding: 11px 18px;
        font-size: 12px;
        text-align: center;
        white-space: normal;
        letter-spacing: .08em;
    }

    .sr-gal-grid {
        grid-template-columns: 1fr;
    }

    .sr-gi--s3, .sr-gi--s4, .sr-gi--s5,
    .sr-gi--s6, .sr-gi--s7, .sr-gi--s8,
    .sr-gi--s12 {
        grid-column: span 1;
    }

    .sr-gi--s12 {
        min-height: 280px;
    }

    .sr-zone-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .sr-final-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
}

@media (max-width: 880px) {
    .sr-hero-foot {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sr-foot-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 760px) {
    #sr-nav {
        padding: 0 20px;
    }

    .sr-container,
    .sr-hero-bottom,
    .sr-feat-grid,
    .sr-gallery-inner,
    .sr-process-inner,
    .sr-zone-inner,
    .sr-final-inner,
    .sr-foot-top,
    .sr-foot-bot {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 600px) {
    .sr-hero h1 {
        font-size: clamp(40px, 12vw, 72px);
    }

    .sr-feat, .sr-feat--first {
        padding: 56px 0;
    }

    .sr-gallery, .sr-zone, .sr-final {
        padding: 56px 0;
    }

    .sr-bleed {
        min-height: 45vh;
    }

    .sr-bleed-inner {
        padding: 52px 20px;
    }

    .sr-feat-photo {
        aspect-ratio: unset;
        max-height: 240px;
    }

    .sr-photo-ph {
        min-height: 220px;
    }

    .sr-bullets {
        display: none;
    }

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

    .sr-proc {
        border-right: none;
        border-bottom: 1px solid #D6D2C8;
        padding: 28px 0 28px;
        min-height: auto;
    }

    .sr-proc:not(:first-child) {
        padding-left: 0;
    }

    .sr-proc:last-child {
        border-bottom: none;
    }

    .sr-proc-num {
        font-size: 64px;
    }

    .sr-foot-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sr-foot-bot {
        flex-direction: column;
        align-items: flex-start;
    }

    .sr-form-row,
    .flac-form-grid {
        grid-template-columns: 1fr;
    }

    .sr-form-wrap {
        padding: 24px 20px;
    }

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

    .sr-boutique-banner {
        padding: 48px 16px;
    }

    .sr-partners {
        padding: 36px 0;
    }

    .sr-partner-logo {
        padding: 12px 20px;
    }

    .sr-partner-logo img {
        height: 26px;
        max-width: 80px;
    }

    .sr-gi {
        min-height: 200px;
    }

    .sr-gi--s12 {
        min-height: 240px;
    }

    .sr-gi-title {
        font-size: 24px;
    }

    .sr-gi--s12 .sr-gi-title {
        font-size: 32px;
    }

    .sr-prod-card {
        flex: 0 0 calc(70vw - 16px);
    }

    .sr-zone-stats {
        gap: 28px;
    }

    .sr-zone-stat-num {
        font-size: 44px;
    }
}

@media (max-width: 400px) {
    .sr-hero h1 {
        font-size: clamp(36px, 11vw, 56px);
    }

    .sr-final h2 {
        font-size: clamp(44px, 12vw, 72px);
    }

    .btn {
        padding: 16px 20px;
        font-size: 11px;
    }

    .sr-process {
        padding: 48px 0;
    }

    .sr-process-head h2 {
        font-size: clamp(40px, 11vw, 72px);
    }
}
