/* ============================================================
   [NOM DU SALON] — CSS Principal
   ============================================================ */

/* ── Variables ── */
:root {
    --noir:      #0e0d0b;
    --gris-dim:  #1e1c1a;
    --gris-fond: #272522;
    --gris-mid:  #7a7570;
    --gris-clar: #c0bbb5;
    --ivoire:    #f5f0e8;
    --cuivre:    #b87333;

    --font-salon: 'Bodoni Moda', Georgia, serif;    /* Nom du salon uniquement */
    --serif:      'Cormorant Garamond', Georgia, serif;
    --sans:       'DM Sans', system-ui, -apple-system, sans-serif;

    --nav-h:   72px;
    --max-w:   1280px;
    --pad:     clamp(1.25rem, 5vw, 4rem);
    --sec-pad: clamp(5rem, 10vw, 9rem);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--sans);
    font-weight: 300;
    font-size: 1rem;
    line-height: 1.7;
    background: var(--noir);
    color: var(--ivoire);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img     { display: block; max-width: 100%; height: auto; }
ul      { list-style: none; }
a       { color: inherit; text-decoration: none; }
address { font-style: normal; }
figure  { margin: 0; }

:focus-visible {
    outline: 2px solid var(--cuivre);
    outline-offset: 3px;
}

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    padding: 0.55rem 1.1rem;
    background: var(--ivoire);
    color: var(--noir);
    font-size: 0.82rem;
    font-weight: 500;
    z-index: 9999;
}

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

/* ── Typographie ── */
h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.15;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem,   4vw, 3.4rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }

.section-label {
    display: block;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cuivre);
    margin-bottom: 1.4rem;
}

.section-label--dim { color: rgba(245, 240, 232, 0.32); }

/* ── Bouton ── */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border: 1px solid var(--ivoire);
    background: var(--ivoire);
    color: var(--noir);
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    cursor: pointer;
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: transparent;
    color: var(--ivoire);
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 0.8rem;
}


/* ============================================================
   NAVIGATION — Case flottante encadrée
   ============================================================ */

.nav-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 1.1rem var(--pad);
    pointer-events: none;
}

.nav {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 1.6rem;
    border: 1px solid rgba(245, 240, 232, 0.16);
    background: rgba(14, 13, 11, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    pointer-events: all;
    transition: background 0.4s ease, border-color 0.4s ease, padding 0.35s ease;
}

.nav.is-scrolled {
    background: rgba(14, 13, 11, 0.94);
    border-color: rgba(245, 240, 232, 0.09);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

/* Nom du salon dans la nav — Bodoni Moda */
.nav__logo {
    font-family: var(--font-salon);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ivoire);
    letter-spacing: 0.03em;
    flex-shrink: 0;
    line-height: 1;
}

.nav__links {
    display: flex;
    gap: 2.2rem;
}

.nav__links a {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.62);
    position: relative;
    transition: color 0.2s;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--cuivre);
    transition: width 0.3s ease;
}

.nav__links a:hover,
.nav__links a:focus-visible        { color: var(--ivoire); }
.nav__links a:hover::after,
.nav__links a:focus-visible::after { width: 100%; }

.nav__cta {
    flex-shrink: 0;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ivoire);
    padding: 0.5rem 1.2rem;
    border: 1px solid rgba(245, 240, 232, 0.3);
    transition: border-color 0.25s, background 0.25s;
}

.nav__cta:hover,
.nav__cta:focus-visible {
    border-color: var(--ivoire);
    background: rgba(245, 240, 232, 0.06);
}

/* Burger */
.nav__burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 28px;
}

.nav__burger span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ivoire);
    transition: transform 0.3s ease;
    transform-origin: center;
}

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

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

/* Menu mobile */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 190;
    background: var(--noir);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.mobile-menu nav a {
    font-family: var(--serif);
    font-style: italic;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--ivoire);
    transition: color 0.2s;
}

.mobile-menu nav a:hover { color: var(--cuivre); }

.mobile-menu__cta {
    font-family: var(--sans) !important;
    font-style: normal !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.8rem 2rem;
    border: 1px solid rgba(245, 240, 232, 0.35);
    margin-top: 0.8rem;
    transition: border-color 0.25s !important;
}

.mobile-menu__cta:hover { border-color: var(--ivoire) !important; }


/* ============================================================
   HERO
   ============================================================ */

.hero {
    display: grid;
    grid-template-columns: 57% 1fr;
    min-height: 100svh;
    overflow: hidden;
    position: relative;
}

.hero__image-wrap { overflow: hidden; }

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero__content {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--nav-h) + 4rem) clamp(1.5rem, 3.5vw, 3.5rem) clamp(3rem, 7vh, 5.5rem);
}

.hero__eyebrow {
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cuivre);
    margin-bottom: 0.85rem;
}

/* Nom du salon dans le hero — Bodoni Moda */
.hero__title {
    font-family: var(--font-salon);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    color: var(--ivoire);
    margin-bottom: 1.3rem;
    line-height: 1.1;
    letter-spacing: 0.01em;
}

.hero__desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(245, 240, 232, 0.62);
    max-width: 30ch;
    margin-bottom: 2.5rem;
}

.hero__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero__link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(245, 240, 232, 0.55);
    transition: color 0.2s;
}

.hero__link:hover { color: var(--ivoire); }

.hero__location {
    margin-top: 2.5rem;
    font-size: 0.67rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.3);
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 28.5%; /* centré sur la colonne image */
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__scroll-line {
    display: block;
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(245,240,232,0.5), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}


/* ============================================================
   MARQUEE
   ============================================================ */

.marquee {
    overflow: hidden;
    background: var(--gris-fond);
    border-top: 1px solid rgba(245, 240, 232, 0.06);
    border-bottom: 1px solid rgba(245, 240, 232, 0.06);
    padding: 0.9rem 0;
}

.marquee__track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
    animation: marquee-scroll 30s linear infinite;
}

.marquee__track span {
    font-size: 0.62rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.32);
    white-space: nowrap;
}

.marquee__track b {
    color: var(--cuivre);
    font-weight: 400;
    font-size: 0.65rem;
}

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


/* ============================================================
   INTRODUCTION
   ============================================================ */

.intro {
    background: var(--ivoire);
    color: var(--noir);
    padding: var(--sec-pad) var(--pad);
}

.intro__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem 8rem;
    align-items: start;
    margin-bottom: 5rem;
}

.intro__left .section-label { color: var(--cuivre); }

.intro__pull {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--noir);
}

.intro__right p {
    font-size: 0.93rem;
    line-height: 1.85;
    color: #3e3c39;
    margin-bottom: 1.1rem;
}

.intro__right p:last-of-type { margin-bottom: 1.8rem; }

.intro__link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--noir);
    border-bottom: 1px solid rgba(14, 13, 11, 0.25);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.intro__link:hover { border-color: var(--noir); }

/* Repères */
.intro__reperes {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(14, 13, 11, 0.1);
    padding-top: 3rem;
}

.intro__repere {
    padding: 0 3rem 0 0;
    border-right: 1px solid rgba(14, 13, 11, 0.1);
}

.intro__repere:first-child { padding-left: 0; }
.intro__repere:last-child  { border-right: none; padding-right: 0; }

.repere__num {
    display: block;
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-style: italic;
    color: var(--noir);
    margin-bottom: 0.3rem;
    line-height: 1;
}

.repere__label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7a7570;
}


/* ============================================================
   SAVOIR-FAIRE
   ============================================================ */

.savoir-faire {
    background: var(--noir);
    padding: var(--sec-pad) var(--pad);
}

.savoir-faire__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 42%;
    gap: 5rem;
    align-items: start;
}

.sf-heading {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.85rem, 3.5vw, 2.9rem);
    color: var(--ivoire);
    margin-bottom: 1rem;
}

.sf-intro {
    font-size: 0.87rem;
    line-height: 1.8;
    color: var(--gris-mid);
    max-width: 46ch;
    margin-bottom: 2.5rem;
}

.sf-list {
    display: flex;
    flex-direction: column;
}

.sf-item {
    display: flex;
    gap: 1.6rem;
    padding: 1.4rem 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    cursor: default;
}

.sf-item:first-child { border-top: 1px solid rgba(245, 240, 232, 0.08); }

.sf-num {
    font-size: 0.63rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--gris-mid);
    min-width: 2rem;
    padding-top: 0.3rem;
    flex-shrink: 0;
    transition: color 0.25s;
}

.sf-content h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.48);
    line-height: 1.2;
    transition: color 0.25s;
}

.sf-content p {
    font-size: 0.83rem;
    line-height: 1.75;
    color: var(--gris-mid);
    max-width: 44ch;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.32s ease, margin-top 0.28s ease;
    margin-top: 0;
}

.sf-item.is-active .sf-num,
.sf-item:hover      .sf-num     { color: var(--cuivre); }

.sf-item.is-active .sf-content h3,
.sf-item:hover      .sf-content h3 { color: var(--ivoire); }

.sf-item.is-active .sf-content p,
.sf-item:hover      .sf-content p  {
    max-height: 8rem;
    opacity: 1;
    margin-top: 0.5rem;
}

/* Image sticky */
.sf-visual {
    position: sticky;
    top: calc(var(--nav-h) + 3rem);
}

.sf-img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.sf-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.sf-img.fading { opacity: 0; }

.sf-caption {
    font-size: 0.68rem;
    color: rgba(245, 240, 232, 0.25);
    margin-top: 0.9rem;
    letter-spacing: 0.05em;
    font-style: italic;
}


/* ============================================================
   PRESTATIONS
   ============================================================ */

.prestations {
    background: var(--gris-fond);
    padding: var(--sec-pad) var(--pad);
}

.prestations__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.prest-header {
    margin-bottom: 3.5rem;
}

.prest-header h2 {
    font-style: italic;
    color: var(--ivoire);
    margin-bottom: 0.8rem;
}

.prest-intro {
    font-size: 0.85rem;
    color: var(--gris-mid);
    max-width: 55ch;
}

.prest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5rem;
}

.prest-group {
    padding: 2rem 0;
    border-top: 1px solid rgba(245, 240, 232, 0.09);
}

.prest-cat {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cuivre);
    margin-bottom: 1rem;
}

.prest-list {
    display: flex;
    flex-direction: column;
}

.prest-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.05);
}

.prest-name {
    font-size: 0.88rem;
    color: var(--ivoire);
    font-weight: 300;
    flex-shrink: 0;
}

.prest-name em {
    font-style: italic;
    color: var(--gris-mid);
    font-size: 0.8rem;
}

.prest-line {
    flex: 1;
    height: 1px;
    min-width: 1rem;
    background-image: repeating-linear-gradient(
        to right,
        rgba(245, 240, 232, 0.14) 0,
        rgba(245, 240, 232, 0.14) 2px,
        transparent 2px,
        transparent 8px
    );
}

.prest-price {
    font-size: 0.83rem;
    color: var(--gris-mid);
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.prest-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(245, 240, 232, 0.06);
    flex-wrap: wrap;
}

.prest-note {
    font-size: 0.77rem;
    font-style: italic;
    color: var(--gris-mid);
    max-width: 55ch;
}


/* ============================================================
   GALERIE
   ============================================================ */

.galerie {
    background: var(--noir);
    padding: var(--sec-pad) var(--pad);
}

.galerie__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.galerie__header {
    margin-bottom: 2.5rem;
}

.galerie__header h2 {
    font-style: italic;
    margin-bottom: 0.5rem;
}

.galerie__sub {
    font-size: 0.82rem;
    color: var(--gris-mid);
    font-style: italic;
}

.galerie__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.625rem;
}

.gal-item {
    overflow: hidden;
    display: block;
}

.gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.65s ease;
}

.gal-item:hover img { transform: scale(1.05); }

.gal-a { grid-column: 1; grid-row: 1 / 3; aspect-ratio: 2/3; }
.gal-b { grid-column: 2; grid-row: 1;     aspect-ratio: 3/4; }
.gal-c { grid-column: 3; grid-row: 1;     aspect-ratio: 3/4; }
.gal-d { grid-column: 2 / 4; grid-row: 2; aspect-ratio: 16/7; }

.galerie__foot {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
}

.galerie__foot-text {
    font-size: 0.77rem;
    color: var(--gris-mid);
    font-style: italic;
}

.insta-link {
    font-size: 0.77rem;
    letter-spacing: 0.05em;
    color: var(--gris-mid);
    transition: color 0.2s;
}

.insta-link:hover { color: var(--ivoire); }


/* ============================================================
   CITATION
   ============================================================ */

.citation {
    background: var(--gris-dim);
    padding: clamp(4rem, 7vw, 7rem) var(--pad);
    border-top: 1px solid rgba(245, 240, 232, 0.06);
    border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.citation__inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.citation blockquote p {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(1.6rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.35;
    color: var(--ivoire);
}


/* ============================================================
   LE SALON
   ============================================================ */

.le-salon {
    background: var(--ivoire);
    color: var(--noir);
    padding: var(--sec-pad) var(--pad);
}

.le-salon__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 52%;
    gap: 5rem;
    align-items: center;
}

.salon-label { color: var(--cuivre); }

.le-salon__text h2 {
    font-style: italic;
    color: var(--noir);
    margin-bottom: 1.5rem;
}

.le-salon__text p {
    font-size: 0.93rem;
    line-height: 1.85;
    color: #3e3c39;
    margin-bottom: 1rem;
}

.le-salon__adresse {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.le-salon__adresse span {
    font-size: 0.88rem;
    color: #6a6865;
    letter-spacing: 0.03em;
}

.le-salon__link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--noir);
    border-bottom: 1px solid rgba(14, 13, 11, 0.22);
    padding-bottom: 2px;
    transition: border-color 0.2s;
}

.le-salon__link:hover { border-color: var(--noir); }

.le-salon__visuals {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: flex-end;
}

.salon-img { overflow: hidden; }

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

.salon-img--main  { width: 100%; aspect-ratio: 4/3; }
.salon-img--accent { width: 56%; aspect-ratio: 4/5; }


/* ============================================================
   ÉQUIPE
   ============================================================ */

.equipe {
    background: var(--noir);
    padding: var(--sec-pad) var(--pad);
}

.equipe__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 36% 1fr;
    gap: 6rem;
    align-items: start;
}

.equipe__photo {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.equipe__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipe__content {
    padding-top: 2.5rem;
}

.equipe__content h2 {
    font-style: italic;
    color: var(--ivoire);
    margin-bottom: 0.2rem;
}

.equipe__role {
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cuivre);
    margin-bottom: 2rem;
}

.equipe__content p {
    font-size: 0.91rem;
    line-height: 1.85;
    color: rgba(245, 240, 232, 0.6);
    max-width: 52ch;
    margin-bottom: 1rem;
}

.equipe__content p:last-of-type { margin-bottom: 2rem; }

/* Specs du coiffeur */
.equipe__specs {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(245, 240, 232, 0.08);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.equipe__spec {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(245, 240, 232, 0.08);
    gap: 1rem;
}

.equipe__spec dt {
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gris-mid);
    flex-shrink: 0;
}

.equipe__spec dd {
    font-size: 0.88rem;
    color: rgba(245, 240, 232, 0.75);
    text-align: right;
}


/* ============================================================
   AVIS
   ============================================================ */

.avis {
    background: var(--gris-fond);
    padding: var(--sec-pad) var(--pad);
}

.avis__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.avis-label { color: var(--cuivre); }

.avis__heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.avis__voir-plus {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: var(--gris-mid);
    border-bottom: 1px solid rgba(122, 117, 112, 0.3);
    padding-bottom: 2px;
    flex-shrink: 0;
    transition: color 0.2s, border-color 0.2s;
}

.avis__voir-plus:hover { color: var(--ivoire); border-color: var(--ivoire); }

.avis__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.avis-item {
    padding-top: 2rem;
    border-top: 1px solid rgba(245, 240, 232, 0.09);
}

.avis__stars {
    color: var(--cuivre);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
}

.avis-item blockquote p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--ivoire);
    margin-bottom: 1.2rem;
}

.avis-item footer cite {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    color: var(--gris-mid);
    font-style: normal;
}


/* ============================================================
   RENDEZ-VOUS
   ============================================================ */

.rdv {
    background: var(--noir);
    padding: var(--sec-pad) var(--pad);
    text-align: center;
    border-top: 1px solid rgba(245, 240, 232, 0.06);
    border-bottom: 1px solid rgba(245, 240, 232, 0.06);
}

.rdv__inner {
    max-width: 580px;
    margin: 0 auto;
}

.rdv h2 {
    font-style: italic;
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--ivoire);
}

.rdv__sub {
    font-size: 0.85rem;
    color: var(--gris-mid);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.rdv__note {
    margin-top: 1.4rem;
    font-size: 0.78rem;
    color: var(--gris-mid);
}

.rdv__note a {
    color: rgba(245, 240, 232, 0.7);
    border-bottom: 1px solid rgba(245, 240, 232, 0.2);
    transition: border-color 0.2s, color 0.2s;
}

.rdv__note a:hover { border-color: var(--ivoire); color: var(--ivoire); }


/* ============================================================
   CONTACT
   ============================================================ */

.contact {
    background: var(--ivoire);
    color: var(--noir);
    padding: var(--sec-pad) var(--pad);
}

.contact__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-label { color: var(--cuivre); }

.contact__left h2 {
    font-style: italic;
    color: var(--noir);
    margin-bottom: 2rem;
}

.contact__address {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 2.5rem;
}

.contact__address p {
    font-size: 0.91rem;
    line-height: 1.75;
    color: #3e3c39;
}

.contact__address a {
    color: var(--noir);
    border-bottom: 1px solid rgba(14, 13, 11, 0.18);
    transition: border-color 0.2s;
}

.contact__address a:hover { border-color: var(--noir); }

.contact__acces h3 {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cuivre);
    margin-bottom: 0.7rem;
}

.contact__acces p {
    font-size: 0.87rem;
    line-height: 1.7;
    color: #6a6865;
}

/* Colonne droite */
.contact__right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact__hours h3 {
    font-family: var(--sans);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cuivre);
    margin-bottom: 1.2rem;
}

.horaires {
    display: flex;
    flex-direction: column;
}

.h-row {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(14, 13, 11, 0.07);
    font-size: 0.87rem;
    color: #3e3c39;
}

.h-row:first-child { border-top: 1px solid rgba(14, 13, 11, 0.07); }
.h-row dt { font-weight: 400; }
.h-row dd { color: #6e6c68; }

/* Placeholder carte */
.contact__map {
    border: 1px solid rgba(14, 13, 11, 0.1);
}

.map-placeholder {
    background: rgba(14, 13, 11, 0.04);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 140px;
    justify-content: center;
}

.map-placeholder p {
    font-size: 0.82rem;
    color: #6e6c68;
    font-style: italic;
}

.map-placeholder a {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--noir);
    border-bottom: 1px solid rgba(14, 13, 11, 0.22);
    padding-bottom: 2px;
    align-self: flex-start;
    transition: border-color 0.2s;
}

.map-placeholder a:hover { border-color: var(--noir); }


/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--noir);
    padding: 4rem var(--pad);
    border-top: 1px solid rgba(245, 240, 232, 0.06);
}

.footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem 4rem;
    align-items: start;
}

/* Nom du salon dans le footer — Bodoni Moda */
.footer__name {
    font-family: var(--font-salon);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ivoire);
    margin-bottom: 0.25rem;
    letter-spacing: 0.01em;
}

.footer__tagline {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cuivre);
    margin-bottom: 1.2rem;
}

.footer__addr {
    font-size: 0.78rem;
    line-height: 1.9;
    color: var(--gris-mid);
}

.footer__addr a {
    color: var(--gris-mid);
    transition: color 0.2s;
}

.footer__addr a:hover { color: var(--ivoire); }

.footer__nav-title {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.3);
    margin-bottom: 1rem;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
}

.footer__nav a {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gris-mid);
    transition: color 0.2s;
}

.footer__nav a:hover { color: var(--ivoire); }

.footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2rem;
}

.footer__social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
}

.footer__social a {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    color: var(--gris-mid);
    transition: color 0.2s;
}

.footer__social a:hover { color: var(--ivoire); }

.footer__legal {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.45rem;
}

.footer__legal a {
    font-size: 0.67rem;
    color: rgba(122, 117, 112, 0.45);
    transition: color 0.2s;
}

.footer__legal a:hover { color: var(--gris-mid); }

.footer__copy {
    margin-top: 0.4rem;
    font-size: 0.65rem;
    color: rgba(122, 117, 112, 0.3);
}


/* ============================================================
   RESPONSIVE — Tablette large
   ============================================================ */

@media (max-width: 1100px) {
    .savoir-faire__inner { grid-template-columns: 1fr 40%; }
    .equipe__inner       { gap: 4rem; }
    .intro__inner        { gap: 2.5rem 5rem; }
    .le-salon__inner     { gap: 3.5rem; }
    .prest-grid          { column-gap: 3rem; }
    .intro__repere       { padding: 0 2rem 0 0; }
}


/* ============================================================
   RESPONSIVE — Tablette
   ============================================================ */

@media (max-width: 900px) {
    :root { --sec-pad: clamp(3.5rem, 8vw, 6rem); }

    /* Nav */
    .nav__links,
    .nav__cta   { display: none; }
    .nav__burger { display: flex; }

    /* Hero */
    .hero {
        grid-template-columns: 1fr;
        grid-template-rows: 55svh auto;
        min-height: unset;
    }

    .hero__image-wrap { min-height: 55svh; }

    .hero__content {
        padding: 2.5rem var(--pad) 3.5rem;
        justify-content: flex-start;
    }

    .hero__desc { max-width: 100%; }

    .hero__scroll { display: none; }

    /* Intro */
    .intro__inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .intro__reperes { grid-template-columns: 1fr; gap: 0; }
    .intro__repere  { padding: 1.2rem 0; border-right: none; border-bottom: 1px solid rgba(14,13,11,0.1); }
    .intro__repere:last-child { border-bottom: none; }

    /* Savoir-faire */
    .savoir-faire__inner { grid-template-columns: 1fr; }
    .sf-visual           { display: none; }

    /* Prestations */
    .prest-grid          { grid-template-columns: 1fr; }
    .prest-footer        { flex-direction: column; align-items: flex-start; }

    /* Galerie */
    .galerie__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .gal-a { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 3/2; }
    .gal-b { grid-column: 1;     grid-row: 2; aspect-ratio: 1/1; }
    .gal-c { grid-column: 2;     grid-row: 2; aspect-ratio: 1/1; }
    .gal-d { grid-column: 1 / 3; grid-row: 3; aspect-ratio: 16/9; }

    .galerie__foot {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }

    /* Le salon */
    .le-salon__inner  { grid-template-columns: 1fr; gap: 2.5rem; }
    .salon-img--accent { width: 52%; }

    /* Équipe */
    .equipe__inner    { grid-template-columns: 1fr; gap: 2rem; }
    .equipe__photo    { aspect-ratio: 3/2; max-width: 420px; }
    .equipe__content  { padding-top: 0; }

    /* Avis */
    .avis__list         { grid-template-columns: 1fr; gap: 0; }
    .avis-item          { padding: 2rem 0; }
    .avis__heading-row  { flex-direction: column; align-items: flex-start; gap: 0.5rem; }

    /* Contact */
    .contact__inner { grid-template-columns: 1fr; gap: 3rem; }

    /* Footer */
    .footer__inner {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .footer__nav {
        grid-column: 1 / 3;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem 1.8rem;
    }

    .footer__right { grid-column: 1 / 3; align-items: flex-start; }
    .footer__legal { align-items: flex-start; }
    .footer__social { align-items: flex-start; }
}


/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */

@media (max-width: 600px) {
    :root {
        --pad:     1.25rem;
        --sec-pad: clamp(3rem, 7vw, 5rem);
    }

    .nav-wrap { padding: 0.75rem var(--pad); }

    .hero__title { font-size: clamp(2.4rem, 10vw, 3.4rem); }

    /* Galerie mono-colonne */
    .galerie__grid { grid-template-columns: 1fr; }

    .gal-a,
    .gal-b,
    .gal-c,
    .gal-d {
        grid-column: 1;
        grid-row: auto;
        aspect-ratio: 4/3;
    }

    /* Salon */
    .salon-img--accent { width: 65%; }

    /* Équipe */
    .equipe__photo { max-width: 100%; aspect-ratio: 4/3; }
    .equipe__specs { margin-top: 1.5rem; }

    /* RDV */
    .rdv h2 { font-size: clamp(2.5rem, 9vw, 4rem); }

    /* Repères */
    .intro__repere { padding: 1rem 0; }

    /* Footer */
    .footer__inner { grid-template-columns: 1fr; }
    .footer__nav   { grid-column: 1; flex-direction: column; align-items: flex-start; }
    .footer__right { grid-column: 1; }

    /* Citation */
    .citation blockquote p { font-size: clamp(1.4rem, 5vw, 2rem); }

    input, select, textarea {
        font-size: 16px !important;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .hero__title {
        font-size: clamp(2rem, 9vw, 2.75rem);
    }
}

