/* =========================================================
   Sky View — page-specific overlay on top of rebrand26cc.css
   Cache-bust via ?v= in the view link tag.
========================================================= */

/* ---------- shared spacing tokens ---------- */
:root {
    --sv-pad-y: clamp(4rem, 8vw, 7rem);
    --sv-pad-x: clamp(1.25rem, 5vw, 5rem);
    --sv-radius: 18px;
    --sv-radius-lg: 24px;
    --sv-card-shadow: 0 30px 60px -30px rgba(0, 20, 40, 0.25);
    --sv-card-shadow-hover: 0 40px 80px -30px rgba(0, 20, 40, 0.45);
}

/* =========================================================
   HERO — still-image variant (no entrance animation)
   Ports the .rb-hero--still pattern from the agencies overlay
   so this page is self-contained. Text is shown at opacity:1
   from the start; only the splash preloader is animated.
========================================================= */
.rb-hero--still {
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 7rem 1.5rem 5rem;
    background-color: #001a36;
    /* Stronger top + bottom dark wash so white hero text stays readable
       over the bright interior render. */
    background-image:
        linear-gradient(180deg,
            rgba(0, 16, 36, 0.78) 0%,
            rgba(0, 16, 36, 0.45) 35%,
            rgba(0, 16, 36, 0.55) 60%,
            rgba(0, 16, 36, 0.88) 100%),
        var(--rb-hero-image);
    background-size: cover, cover;
    background-position: center, center 30%;
    background-repeat: no-repeat, no-repeat;
    position: relative;
    overflow: hidden;
}

.rb-hero--still::after {
    content: '';
    position: absolute;
    top: -15%; right: -10%;
    width: 540px; height: 540px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.18), transparent 65%);
    pointer-events: none;
    z-index: 1;
}

.rb-hero--still .rb-hero__bg { display: none !important; }
.rb-hero--still .rb-hero__overlay { display: none !important; }

.rb-hero--still .rb-hero__content {
    position: relative;
    z-index: 3;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.rb-hero--still .rb-hero__eyebrow {
    opacity: 1;
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.32em;
    color: var(--gold);
    text-transform: uppercase;
}

.rb-hero--still .rb-hero__title {
    margin: 0;
    text-align: center;
    color: #fff;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.18;
    font-weight: 700;
}

.rb-hero--still .rb-hero__title .word { margin-right: 0.2em; }
.rb-hero--still .rb-hero__title .word span {
    transform: none;
    opacity: 1;
}

.rb-hero--still .rb-hero__ctas {
    opacity: 1;
    transform: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem;
    margin: 0.8rem 0 0;
}

.rb-hero--still .rb-hero__ctas .btn-luxury,
.rb-hero--still .rb-hero__ctas .btn-outline-lux {
    min-width: 220px;
    text-align: center;
}

.rb-hero--still .rb-hero__scroll-hint { opacity: 0.65; }

@media (max-width: 600px) {
    .rb-hero--still { padding: 6rem 1.25rem 4rem; }
    .rb-hero--still .rb-hero__ctas .btn-luxury,
    .rb-hero--still .rb-hero__ctas .btn-outline-lux { min-width: 0; width: 100%; }
}

/* ---------- Sky View hero-specific tweaks ---------- */
.sv-hero .rb-hero__content { max-width: 900px; }

/* Hero bg is portrait worm's-eye render. On mobile the image fits without
   much cropping, so leave the global default. On desktop the portrait gets
   scaled up by `cover` and exposes too much sky at the top — anchor the
   crop lower in the image so we lean on the building, not the sky. */
@media (min-width: 601px) {
    .sv-hero.rb-hero--still {
        background-position: center, center 35%;
    }
}

/* ---------- Témoignages flipped to white surface ----------
   The "Pourquoi Sky View" white section between témoignages (dark) and
   contact (navy) was removed. To preserve the light/dark alternation
   rhythm — navy (life) → white (temo) → navy (contact) — flip témoignages
   here. Title + nav buttons need re-coloring; video cards keep their own
   dark surfaces. */
.sv-temo.rb-temo { background: var(--white); }
.sv-temo .rb-temo__title { color: var(--navy); }
.sv-temo .rb-temo__btn {
    border-color: rgba(0, 31, 63, 0.25);
    color: var(--navy);
}
.sv-temo .rb-temo__btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
}

.sv-hero__lede {
    margin: 0;
    max-width: 660px;
    font-family: var(--sans);
    font-size: clamp(0.98rem, 1.2vw, 1.1rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.01em;
    text-align: center;
}

.sv-hero__lede strong {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* =========================================================
   SECTION 2 — FACTS STRIP
========================================================= */
.sv-facts {
    background: var(--navy);
    color: var(--white);
    padding: 2rem var(--sv-pad-x);
    position: relative;
}

.sv-facts::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.6), transparent);
}

.sv-facts__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.sv-facts__item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}

.sv-facts__item + .sv-facts__item {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
}

.sv-facts__item i {
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
}

.sv-facts__label {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    margin-bottom: 0.15rem;
}

.sv-facts__value {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--white);
}

@media (max-width: 1024px) {
    .sv-facts__inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .sv-facts__item + .sv-facts__item {
        border-left: none;
        padding-left: 0;
    }
    .sv-facts__item:nth-child(odd) {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        padding-right: 1rem;
    }
}

@media (max-width: 540px) {
    .sv-facts__inner { grid-template-columns: 1fr; }
    .sv-facts__item:nth-child(odd) { border-right: none; padding-right: 0; }
    .sv-facts__item + .sv-facts__item {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 1rem;
    }
}

/* =========================================================
   SECTION 2b — ENGAGEMENTS TECHNIQUES (spec badges)
   White surface bridging navy facts and light concept.
========================================================= */
.sv-specs {
    background: var(--white);
    padding: clamp(3.5rem, 7vw, 5.5rem) var(--sv-pad-x);
    text-align: center;
}

.sv-specs__eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.sv-specs__grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.sv-spec {
    position: relative;
    padding: 1.5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

/* Thin gold vertical dividers between the 3 cards */
.sv-spec + .sv-spec::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(197, 160, 89, 0.5) 30%,
        rgba(197, 160, 89, 0.5) 70%,
        transparent 100%);
}

.sv-spec__icon {
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.sv-spec__number {
    font-family: var(--serif);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.sv-spec__label {
    font-family: var(--sans);
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--navy);
    font-weight: 600;
}

.sv-spec__sub {
    font-family: var(--sans);
    font-size: 0.78rem;
    color: rgba(0, 31, 63, 0.55);
    font-style: italic;
    margin-top: 0.1rem;
}

/* Mobile: stack the 3 specs */
@media (max-width: 720px) {
    .sv-specs__grid { grid-template-columns: 1fr; gap: 0; }
    .sv-spec { padding: 2rem 1.5rem; }
    .sv-spec + .sv-spec::before {
        left: 20%; right: 20%;
        top: 0;
        bottom: auto;
        width: auto;
        height: 1px;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(197, 160, 89, 0.5) 30%,
            rgba(197, 160, 89, 0.5) 70%,
            transparent 100%);
    }
}

/* =========================================================
   SECTION 3 — CONCEPT NARRATIVE
========================================================= */
.sv-concept {
    background: var(--light-bg);
    padding: var(--sv-pad-y) var(--sv-pad-x);
}

.sv-concept__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.sv-concept__title {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin: 0.5rem 0 1.5rem;
    letter-spacing: -0.01em;
}

.sv-concept__lede {
    font-family: var(--sans);
    color: #4a5a6b;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.sv-concept__points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.75rem;
}

.sv-concept__points li {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 1.25rem;
    align-items: start;
}

.sv-concept__points i {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--gold);
    font-size: 1.4rem;
    box-shadow: 0 12px 30px -12px rgba(0, 20, 40, 0.2);
}

.sv-concept__points h3 {
    font-family: var(--serif);
    font-weight: 700;
    color: var(--navy);
    font-size: 1.15rem;
    margin: 0 0 0.35rem;
}

.sv-concept__points p {
    font-family: var(--sans);
    color: #5e6f80;
    line-height: 1.65;
    margin: 0;
    font-size: 0.95rem;
}

.sv-concept__media {
    position: relative;
    aspect-ratio: 4 / 5;
    min-height: 520px;
}

.sv-concept__img {
    position: absolute;
    border-radius: var(--sv-radius-lg);
    object-fit: cover;
    box-shadow: var(--sv-card-shadow);
}

.sv-concept__img--lg {
    inset: 0 30% 12% 0;
    width: 75%;
    height: 80%;
}

.sv-concept__img--sm {
    right: 0;
    bottom: 0;
    width: 55%;
    height: 55%;
    border: 8px solid var(--light-bg);
}

@media (max-width: 980px) {
    .sv-concept__inner { grid-template-columns: 1fr; }
    .sv-concept__media { order: -1; min-height: 360px; aspect-ratio: 4 / 3; }
    .sv-concept__img--lg { inset: 0 25% 18% 0; }
    .sv-concept__img--sm { width: 50%; height: 50%; }
}

/* =========================================================
   SECTION 3b — MATERIAUX (mood board)
   Quiet editorial pause between project narrative and exterior
   gallery. CSS-only material swatches (no image deps).
========================================================= */
.sv-materials {
    position: relative;
    background:
        radial-gradient(ellipse 60% 80% at 50% 50%,
            rgba(197, 160, 89, 0.05) 0%,
            transparent 70%),
        #c8c1b4;
    padding: clamp(4rem, 7.5vw, 6rem) var(--sv-pad-x);
    text-align: center;
}

/* Thin gold horizontal frame lines top + bottom — editorial separator */
.sv-materials::before,
.sv-materials::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(220px, 50%);
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(197, 160, 89, 0.55) 50%,
        transparent 100%);
}
.sv-materials::before { top: 2.2rem; }
.sv-materials::after { bottom: 2.2rem; }

.sv-materials__eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    /* Deeper amber than the global --gold so it stays legible on cool stone bg */
    color: #7a5d22;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
}

.sv-materials__title {
    font-family: var(--serif);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    color: var(--navy);
    margin: 0 0 3rem;
    line-height: 1.2;
    font-weight: 700;
}

.sv-materials__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 140px 140px;
    gap: 1rem;
    max-width: 640px;
    margin: 0 auto;
}

.sv-material {
    position: relative;
    border-radius: 10px;
    box-shadow: 0 18px 36px -16px rgba(0, 31, 63, 0.28);
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.sv-material:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 42px -14px rgba(0, 31, 63, 0.32);
}

/* Label baked into the swatch via ::after — bottom-left chip */
.sv-material::after {
    content: attr(data-label);
    position: absolute;
    bottom: 10px;
    left: 12px;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    font-weight: 600;
}

/* Grid placement: 3-col layout with empty center-bottom = breathing room */
.sv-material--marbre    { grid-area: 1 / 1; }
.sv-material--ceramique { grid-area: 1 / 2; }
.sv-material--quartz    { grid-area: 1 / 3; }
.sv-material--bois      { grid-area: 2 / 1; }
.sv-material--tissu     { grid-area: 2 / 3; }

/* CSS-generated material swatches */
.sv-material--marbre {
    background:
        radial-gradient(ellipse 80px 3px at 30% 65%, rgba(255,255,255,0.45) 0%, transparent 70%),
        radial-gradient(ellipse 60px 2px at 65% 35%, rgba(255,255,255,0.35) 0%, transparent 70%),
        radial-gradient(ellipse 90px 4px at 70% 75%, rgba(255,255,255,0.3) 0%, transparent 70%),
        linear-gradient(135deg, #1a2333 0%, #2c3543 100%);
}

.sv-material--quartz {
    background:
        radial-gradient(ellipse 100px 4px at 40% 50%, rgba(180,160,120,0.4) 0%, transparent 70%),
        radial-gradient(ellipse 70px 3px at 70% 70%, rgba(180,160,120,0.3) 0%, transparent 70%),
        linear-gradient(135deg, #ece5d2 0%, #f5efde 100%);
}
.sv-material--quartz::after {
    color: var(--navy);
    text-shadow: none;
}

.sv-material--ceramique {
    background: linear-gradient(135deg, #b3afa8 0%, #918d88 100%);
}

.sv-material--bois {
    background:
        repeating-linear-gradient(90deg,
            rgba(0,0,0,0.06) 0px,
            rgba(0,0,0,0.06) 1px,
            transparent 1px,
            transparent 10px),
        linear-gradient(180deg, #c79561 0%, #a87440 100%);
}

.sv-material--tissu {
    background:
        repeating-linear-gradient(45deg,
            rgba(0,0,0,0.04) 0px,
            rgba(0,0,0,0.04) 1px,
            transparent 1px,
            transparent 4px),
        repeating-linear-gradient(-45deg,
            rgba(0,0,0,0.04) 0px,
            rgba(0,0,0,0.04) 1px,
            transparent 1px,
            transparent 4px),
        #e0d4ba;
}
.sv-material--tissu::after {
    color: var(--navy);
    text-shadow: none;
}

/* Mobile: 2-col with the central ceramique going full-width */
@media (max-width: 540px) {
    .sv-materials__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 110px 110px 110px;
        max-width: 360px;
    }
    .sv-material--marbre    { grid-area: 1 / 1; }
    .sv-material--quartz    { grid-area: 1 / 2; }
    .sv-material--ceramique { grid-area: 2 / 1 / 3 / 3; }
    .sv-material--bois      { grid-area: 3 / 1; }
    .sv-material--tissu     { grid-area: 3 / 2; }
}

/* =========================================================
   SECTION 4 — L'ALLURE SKY VIEW
   Parent wrapper merging the former mosaic + visit sections
   into one continuous gallery with two chapters.
========================================================= */
.sv-allure {
    background: var(--white);
    padding: var(--sv-pad-y) 0;
    /* `overflow: clip` keeps any horizontal overflow contained without coercing
       overflow-y to auto — so the card drop-shadows below the rail are NOT cut. */
    overflow-x: clip;
}

.sv-allure .rb-section-header { padding: 0 var(--sv-pad-x); }

.sv-allure__lede {
    max-width: 680px;
    margin: 1rem auto 0;
    text-align: center;
    color: #4a5a6b;
    font-family: var(--sans);
    line-height: 1.7;
}

.sv-allure__chapter {
    position: relative;
    margin-top: 3.5rem;
}

.sv-allure__chapter + .sv-allure__chapter {
    margin-top: 5rem;
    padding-top: 4rem;
}

/* Thin gold rule separator above the second chapter */
.sv-allure__chapter + .sv-allure__chapter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(140px, 40%);
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(197, 160, 89, 0.55) 50%,
        transparent 100%);
}

/* Chapter label "— L'exterieur" / "— L'interieur" */
.sv-allure__chapter-label {
    display: block;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 1rem;
}
.sv-allure__chapter-label::before {
    content: '— ';
    color: var(--gold);
    opacity: 0.7;
}

.sv-allure__chapter-lede {
    max-width: 640px;
    margin: 0 auto 2rem;
    padding: 0 var(--sv-pad-x);
    text-align: center;
    color: #4a5a6b;
    font-family: var(--sans);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Hand cursor on tiles/cards — feels draggable for the rail, clickable for the grid */
[data-lb-index] {
    cursor: grab;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
[data-lb-index] img {
    transition: transform 0.45s var(--ease);
    /* Block native browser drag so our JS drag-scroll wins */
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
}
[data-lb-index]:hover {
    transform: translateY(-4px);
}
[data-lb-index]:hover img {
    transform: scale(1.03);
}
/* When the visit rail is actively being dragged, switch to grabbing globally */
.sv-visit__rail.is-dragging,
.sv-visit__rail.is-dragging [data-lb-index] {
    cursor: grabbing;
}


/* =========================================================
   SECTION 4 — MOSAIC GALLERY (inner styles, used inside .sv-allure)
========================================================= */
.sv-mosaic {
    background: var(--white);
    padding: var(--sv-pad-y) var(--sv-pad-x);
}

.sv-mosaic__grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 1rem;
}

.sv-mosaic__tile {
    margin: 0;
    overflow: hidden;
    border-radius: var(--sv-radius);
    position: relative;
    box-shadow: var(--sv-card-shadow);
}

.sv-mosaic__tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.9s var(--ease);
}

.sv-mosaic__tile:hover img { transform: scale(1.06); }

.sv-mosaic__tile--tall { grid-row: span 2; }
.sv-mosaic__tile--wide { grid-column: span 2; }

@media (max-width: 800px) {
    .sv-mosaic__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 200px 200px;
    }
    .sv-mosaic__tile--tall { grid-row: span 2; }
    .sv-mosaic__tile--wide { grid-column: span 2; grid-row: span 1; }
}

/* =========================================================
   SECTION 5 — INTERIOR VISIT RAIL
========================================================= */
.sv-visit {
    background: linear-gradient(180deg, var(--light-bg) 0%, #ede8de 100%);
    padding: var(--sv-pad-y) 0;
    overflow: hidden;
}

.sv-visit .rb-section-header { padding: 0 var(--sv-pad-x); }

.sv-visit__lede {
    max-width: 720px;
    margin: 1rem auto 0;
    text-align: center;
    color: #4a5a6b;
    font-family: var(--sans);
    line-height: 1.7;
}

.sv-visit__rail {
    margin-top: 3rem;
    display: flex;
    gap: 1.25rem;
    /* Top + bottom padding give the cards' drop shadows + hover lift room
       inside the rail's clipping box (overflow-x: auto forces overflow-y: clip). */
    padding: 24px var(--sv-pad-x) 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.sv-visit__rail::-webkit-scrollbar { display: none; }

.sv-visit__card {
    flex: 0 0 clamp(280px, 36vw, 460px);
    height: clamp(360px, 50vw, 580px);
    margin: 0;
    border-radius: var(--sv-radius-lg);
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: var(--sv-card-shadow);
    background: var(--navy);
    position: relative;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.sv-visit__card:hover {
    transform: translateY(-6px);
    box-shadow: var(--sv-card-shadow-hover);
}

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

.sv-visit__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 0 var(--sv-pad-x);
}

.sv-visit__btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(0, 31, 63, 0.15);
    background: var(--white);
    color: var(--navy);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.sv-visit__btn:hover {
    background: var(--navy);
    color: var(--gold);
    border-color: var(--navy);
}

/* =========================================================
   SECTION 6 — TYPOLOGIES
========================================================= */
.sv-typologies {
    background: var(--white);
    padding: var(--sv-pad-y) var(--sv-pad-x);
}

.sv-typologies__grid {
    max-width: 1400px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.sv-typo {
    background: var(--white);
    border: 1px solid #e8e1d3;
    border-radius: var(--sv-radius);
    padding: 2.25rem 1.75rem;
    transition: all 0.4s var(--ease);
    position: relative;
    display: flex;
    flex-direction: column;
}

.sv-typo:hover {
    transform: translateY(-6px);
    box-shadow: var(--sv-card-shadow);
    border-color: transparent;
}

.sv-typo--featured {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: scale(1.02);
}

.sv-typo--featured:hover { transform: scale(1.02) translateY(-6px); }

.sv-typo__tag {
    display: inline-block;
    font-family: var(--serif);
    font-weight: 700;
    color: var(--gold);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.sv-typo__title {
    font-family: var(--serif);
    color: var(--navy);
    font-size: 1.35rem;
    margin: 0 0 0.75rem;
}

.sv-typo--featured .sv-typo__title { color: var(--white); }

.sv-typo__desc {
    font-family: var(--sans);
    color: #5e6f80;
    line-height: 1.65;
    margin: 0 0 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.sv-typo--featured .sv-typo__desc { color: rgba(255, 255, 255, 0.75); }

.sv-typo__meta {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: grid;
    gap: 0.5rem;
}

.sv-typo__meta li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--navy);
}

.sv-typo--featured .sv-typo__meta li { color: rgba(255, 255, 255, 0.9); }

.sv-typo__meta i {
    color: var(--gold);
    width: 18px;
    text-align: center;
}

.sv-typo__cta {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: color 0.3s var(--ease), gap 0.3s var(--ease);
}

.sv-typo--featured .sv-typo__cta { color: var(--gold); }

.sv-typo__cta:hover { gap: 1rem; color: var(--gold); }

@media (max-width: 1080px) {
    .sv-typologies__grid { grid-template-columns: repeat(2, 1fr); }
    .sv-typo--featured { transform: none; }
    .sv-typo--featured:hover { transform: translateY(-6px); }
}

@media (max-width: 540px) {
    .sv-typologies__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   SECTION 7 — EMPLACEMENT
========================================================= */
.sv-place {
    background: var(--light-bg);
    padding: var(--sv-pad-y) var(--sv-pad-x);
}

.sv-place__inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
}

.sv-place__text { text-align: center; }

.sv-place__title {
    font-family: var(--serif);
    color: var(--navy);
    font-size: clamp(2rem, 3.8vw, 3.2rem);
    line-height: 1.05;
    margin: 0.5rem 0 1.5rem;
}

.sv-place__lede {
    font-family: var(--sans);
    color: #4a5a6b;
    font-size: 1.05rem;
    line-height: 1.75;
    margin: 0 auto 2rem;
    max-width: 720px;
}

.sv-place__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.9rem;
}

.sv-place__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--sans);
    color: var(--navy);
    font-size: 0.98rem;
}

.sv-place__list i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--gold);
    box-shadow: 0 8px 20px -10px rgba(0, 20, 40, 0.18);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.sv-place__map {
    position: relative;
    border-radius: var(--sv-radius-lg);
    overflow: hidden;
    aspect-ratio: 11 / 10;
    box-shadow: var(--sv-card-shadow);
    background: var(--white);
}

.sv-place__map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--white);
}

.sv-place__map-card {
    position: absolute;
    z-index: 2;
    left: 1.5rem;
    bottom: 1.5rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.4);
    max-width: 80%;
}

.sv-place__map-pin {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.sv-place__map-eyebrow {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    color: var(--gold);
    text-transform: uppercase;
}

.sv-place__map-address {
    font-family: var(--serif);
    color: var(--navy);
    font-size: 1rem;
}

@media (max-width: 980px) {
    .sv-place__inner { grid-template-columns: 1fr; }
    .sv-place__map { order: -1; aspect-ratio: 16 / 10; }
}

/* ---------- Commodites — walking + driving timelines ---------- */
.sv-commodities {
    max-width: 1280px;
    margin: 4rem auto 0;
}

.sv-commodities__eyebrow {
    display: block;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.sv-commodities__row {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 3.5rem 0;
}

.sv-commodities__head {
    flex-shrink: 0;
    width: 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    color: var(--navy);
}

.sv-commodities__head i {
    font-size: 1.4rem;
    color: var(--gold);
}

.sv-commodities__head span {
    font-family: var(--sans);
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 600;
}

.sv-commodities__line {
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 130px;
}

/* Horizontal connector line through all dots */
.sv-commodities__line::before {
    content: '';
    position: absolute;
    left: 0; right: 0;
    top: 50%;
    height: 1px;
    background: rgba(0, 31, 63, 0.22);
}

/* Each stop = a gold dot, with a label cluster floating above or below */
.sv-commodities__stop {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
}

.sv-commodities__stop::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 0 5px var(--light-bg);
}

.sv-commodities__label {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
    white-space: nowrap;
}

/* Alternating: odd above the line, even below — editorial rhythm */
.sv-commodities__stop:nth-child(odd) .sv-commodities__label {
    bottom: calc(50% + 16px);
}
.sv-commodities__stop:nth-child(even) .sv-commodities__label {
    top: calc(50% + 16px);
}

.sv-commodities__name {
    font-family: var(--sans);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
    text-align: center;
}

.sv-commodities__time {
    font-family: var(--sans);
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.04em;
}

/* Mobile: collapse to a clean vertical list, no horizontal line */
@media (max-width: 768px) {
    .sv-commodities__row {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin: 2.5rem 0;
    }
    .sv-commodities__head {
        flex-direction: row;
        width: auto;
        justify-content: flex-start;
        gap: 0.7rem;
        padding-bottom: 0.4rem;
        border-bottom: 1px solid rgba(0, 31, 63, 0.1);
    }
    .sv-commodities__line {
        flex-direction: column;
        align-items: stretch;
        min-height: 0;
    }
    .sv-commodities__line::before { display: none; }
    .sv-commodities__stop {
        height: auto;
        justify-content: flex-start;
        gap: 0.9rem;
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(0, 31, 63, 0.06);
    }
    .sv-commodities__stop:last-child { border-bottom: none; }
    .sv-commodities__stop::before {
        flex-shrink: 0;
    }
    .sv-commodities__label {
        position: static;
        transform: none;
        flex-direction: row;
        align-items: baseline;
        justify-content: space-between;
        width: 100%;
        gap: 1rem;
    }
}

/* =========================================================
   SECTION 8 — TIMELINE
========================================================= */
.sv-timeline {
    background: var(--white);
    padding: var(--sv-pad-y) var(--sv-pad-x);
}

.sv-timeline__steps {
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
}

.sv-timeline__steps::before {
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 30px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        rgba(0, 31, 63, 0.18) 0 8px,
        transparent 8px 16px
    );
    z-index: 0;
}

.sv-timeline__step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 0.5rem;
}

.sv-timeline__dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid rgba(0, 31, 63, 0.18);
    color: rgba(0, 31, 63, 0.5);
    display: grid;
    place-items: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s var(--ease);
}

.sv-timeline__step.is-done .sv-timeline__dot {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--gold);
}

.sv-timeline__step.is-current .sv-timeline__dot {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(197, 160, 89, 0.18);
}

.sv-timeline__phase {
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.25rem;
}

.sv-timeline__body h3 {
    font-family: var(--serif);
    color: var(--navy);
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
}

.sv-timeline__body p {
    font-family: var(--sans);
    color: #5e6f80;
    line-height: 1.6;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .sv-timeline__steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .sv-timeline__steps::before { display: none; }
    .sv-timeline__step {
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 1.25rem;
        text-align: left;
        align-items: start;
    }
    .sv-timeline__dot { margin: 0; }
}

/* =========================================================
   SECTION 8b — PROGRES (chantier video gallery)
   Two-up responsive grid, scales to N items.
========================================================= */
.sv-progress {
    background: linear-gradient(180deg, #ede8de 0%, var(--light-bg) 100%);
    padding: var(--sv-pad-y) var(--sv-pad-x);
}

.sv-progress__lede {
    max-width: 720px;
    margin: 1rem auto 0;
    text-align: center;
    color: #4a5a6b;
    font-family: var(--sans);
    line-height: 1.7;
}

.sv-progress__grid {
    max-width: 1280px;
    margin: 3rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    justify-content: center;
}

.sv-progress__card {
    margin: 0;
    background: var(--white);
    border-radius: var(--sv-radius-lg);
    overflow: hidden;
    box-shadow: var(--sv-card-shadow);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    max-width: 380px;
    width: 100%;
    justify-self: center;
}

.sv-progress__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--sv-card-shadow-hover);
}

/* Vertical 9:16 phone-shot footage — fill the frame with no letterboxing. */
.sv-progress__media {
    position: relative;
    background: #0b1a2c;
    aspect-ratio: 9 / 16;
    overflow: hidden;
}

.sv-progress__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sv-progress__caption {
    padding: 1.5rem 1.75rem 1.75rem;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "phase date"
        "label date";
    align-items: center;
    gap: 0.35rem 1.5rem;
}

.sv-progress__phase {
    grid-area: phase;
    font-family: var(--sans);
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
}

.sv-progress__label {
    grid-area: label;
    font-family: var(--serif);
    font-size: 1.3rem;
    color: var(--navy);
    line-height: 1.2;
}

.sv-progress__date {
    grid-area: date;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--sans);
    font-size: 0.82rem;
    color: var(--navy);
    background: rgba(0, 31, 63, 0.06);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
}

.sv-progress__date i {
    color: var(--gold);
    font-size: 0.78rem;
}

.sv-progress__footnote {
    max-width: 720px;
    margin: 2.5rem auto 0;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.9rem;
    color: #6e7c8a;
    font-style: italic;
}

@media (max-width: 1100px) {
    .sv-progress__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
    .sv-progress__grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .sv-progress__card { max-width: 360px; }
    .sv-progress__caption {
        grid-template-columns: 1fr;
        grid-template-areas: "phase" "label" "date";
        gap: 0.4rem;
        padding: 1.25rem 1.5rem 1.5rem;
    }
    .sv-progress__date { justify-self: start; }
}

/* =========================================================
   SECTION 9 — UNE JOURNEE A SKY VIEW
   23 amenities organized into 4 themed chapters, each card
   uses the deck's photo as a background (CSS var --amen-bg).
========================================================= */
.sv-amenities {
    background: var(--dark);
    color: var(--white);
    padding: var(--sv-pad-y) 0;
    position: relative;
    overflow: hidden;
}

.sv-amenities::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 80% 12%, rgba(197, 160, 89, 0.12), transparent 60%);
    pointer-events: none;
}

.sv-amenities .rb-section-header { padding: 0 var(--sv-pad-x); position: relative; z-index: 1; }
.sv-amenities .rb-section-eyebrow { color: var(--gold); }
.sv-amenities .rb-section-title { color: var(--white); }

.sv-amenities__lede {
    max-width: 760px;
    margin: 1rem auto 0;
    text-align: center;
    color: var(--gold);
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
}

.sv-amenities__chapter {
    position: relative;
    margin-top: 4rem;
    padding: 0 var(--sv-pad-x);
    z-index: 1;
}

.sv-amenities__chapter + .sv-amenities__chapter {
    margin-top: 5rem;
    padding-top: 3.5rem;
}

/* Thin gold rule between chapters */
.sv-amenities__chapter + .sv-amenities__chapter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(160px, 40%);
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(197, 160, 89, 0.55) 50%,
        transparent 100%);
}

.sv-amenities__chapter-label {
    display: block;
    text-align: center;
    font-family: var(--sans);
    font-size: 0.78rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2rem;
}
.sv-amenities__chapter-label::before {
    content: '— ';
    color: var(--gold);
    opacity: 0.7;
}

.sv-amenities__grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

/* Each amenity card — image bg with bottom gradient overlay for legibility */
.sv-amenity {
    position: relative;
    border-radius: var(--sv-radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background:
        var(--amen-bg) center / cover no-repeat,
        #1f1f1f;
    box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.55);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
    cursor: pointer;
}

.sv-amenity:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.7);
}

.sv-amenity:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}

/* Zoom affordance — small gold ring appears on hover/focus */
.sv-amenity::after {
    content: "\f00e"; /* fa-search-plus */
    font-family: "Font Awesome 6 Free"; font-weight: 900;
    position: absolute; top: 0.9rem; right: 0.9rem; z-index: 2;
    width: 2.1rem; height: 2.1rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem; color: var(--gold);
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(197, 160, 89, 0.55);
    opacity: 0; transform: scale(0.85);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
    pointer-events: none;
}

.sv-amenity:hover::after,
.sv-amenity:focus-visible::after { opacity: 1; transform: scale(1); }

.sv-amenity__inner {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.55) 55%,
        rgba(0, 0, 0, 0.92) 100%);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.sv-amenity__icon {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: rgba(197, 160, 89, 0.18);
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 50%;
}

.sv-amenity__title {
    font-family: var(--serif);
    font-size: 1.08rem;
    color: var(--white);
    margin: 0 0 0.35rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.005em;
}

.sv-amenity__desc {
    font-family: var(--sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.45;
    margin: 0;
}

/* Mobile responsiveness */
@media (max-width: 1100px) {
    .sv-amenities__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 800px) {
    .sv-amenities__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .sv-amenities__grid { grid-template-columns: 1fr; gap: 0.9rem; }
    .sv-amenity { aspect-ratio: 4 / 3; }
}

/* =========================================================
   SECTION 12 — CONTACT (extra lede on top of shared)
========================================================= */
.sv-contact__lede {
    font-family: var(--sans);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 1rem 0 2rem;
    max-width: 480px;
}

.rb-contact.sv-contact textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    padding: 1rem 1.1rem;
    border-radius: 10px;
    font-family: var(--sans);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    resize: vertical;
    transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.rb-contact.sv-contact textarea::placeholder { color: rgba(255, 255, 255, 0.45); }
.rb-contact.sv-contact textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}


/* =========================================================
   LIGHTBOX MODAL — fullscreen slider for L'allure gallery
========================================================= */
.sv-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(8, 12, 22, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.sv-lightbox.is-open {
    visibility: visible;
    opacity: 1;
}

.sv-lightbox__stage {
    position: relative;
    max-width: 92vw;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sv-lightbox__img {
    max-width: 92vw;
    max-height: 85vh;
    object-fit: contain;
    display: block;
    border-radius: 4px;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.sv-lightbox__caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 1.4rem 1.2rem 1rem;
    text-align: center;
    font-family: var(--serif);
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.65), rgba(0,0,0,0));
    border-radius: 0 0 4px 4px;
    pointer-events: none;
}

/* Close + prev/next chrome — gold-outlined rings on dark bg */
.sv-lightbox__close,
.sv-lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
    display: grid;
    place-items: center;
}

.sv-lightbox__close {
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.05rem;
}

.sv-lightbox__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 1.05rem;
}
.sv-lightbox__nav--prev { left: 1.5rem; }
.sv-lightbox__nav--next { right: 1.5rem; }

.sv-lightbox__close:hover,
.sv-lightbox__nav:hover {
    background: rgba(197, 160, 89, 0.25);
    border-color: var(--gold);
    color: var(--gold);
}

.sv-lightbox__counter {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--sans);
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    font-weight: 600;
}
.sv-lightbox__counter-sep {
    margin: 0 0.6rem;
    color: var(--gold);
}

@media (max-width: 600px) {
    .sv-lightbox__close { top: 0.7rem; right: 0.7rem; width: 40px; height: 40px; }
    .sv-lightbox__nav   { width: 44px; height: 44px; }
    .sv-lightbox__nav--prev { left: 0.6rem; }
    .sv-lightbox__nav--next { right: 0.6rem; }
    .sv-lightbox__counter { bottom: 0.9rem; font-size: 0.75rem; }
}
