/* =========================================================
   VARIABLES
========================================================= */

:root {

    --black: #0e0e0d;
    --black-soft: #151513;
    --dark: #1b1b18;

    --cream: #f7f4ed;
    --cream-dark: #eee9df;

    --white: #ffffff;

    --gold: #c9a76a;
    --gold-light: #e2c58c;
    --gold-dark: #a7854f;

    --text: #292824;
    --text-light: #6e6b63;

    --border: rgba(30, 30, 25, 0.10);

    --font-title: "Cormorant Garamond", serif;
    --font-body: "Montserrat", sans-serif;

    --container: 1280px;

    --shadow:
        0 25px 70px rgba(0, 0, 0, 0.10);

}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: var(--font-body);

    background: var(--cream);

    color: var(--text);

    line-height: 1.7;

    overflow-x: hidden;

}


body.menu-open {
    overflow: hidden;
}


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


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


button {
    font: inherit;
}


ul {
    list-style: none;
}


.container {

    width: min(90%, var(--container));

    margin-inline: auto;

}


.section {

    padding: 120px 0;

}


/* =========================================================
   TYPOGRAPHIE
========================================================= */

.section-kicker {

    display: inline-block;

    color: var(--gold-dark);

    text-transform: uppercase;

    font-size: 0.72rem;

    font-weight: 700;

    letter-spacing: 0.25em;

    margin-bottom: 18px;

}


.section-heading {

    max-width: 700px;

    text-align: center;

    margin: 0 auto 70px;

}


.section-heading.left {

    text-align: left;

    margin-left: 0;

}


.section-heading h2,
.intro-content h2 {

    font-family: var(--font-title);

    font-size: clamp(3rem, 5vw, 5rem);

    line-height: 0.95;

    font-weight: 600;

    color: var(--black);

}


.section-heading h2 em,
.intro-content h2 em {

    color: var(--gold-dark);

    font-weight: 500;

}


.section-heading p {

    margin-top: 25px;

    color: var(--text-light);

    font-size: 0.95rem;

    line-height: 1.9;

}


.section-heading.light h2 {

    color: var(--white);

}


.section-heading.light p {

    color: rgba(255, 255, 255, 0.6);

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 20px 0;

    transition:
        background 0.4s ease,
        padding 0.4s ease,
        box-shadow 0.4s ease;

}


.site-header.scrolled {

    padding: 11px 0;

    background: rgba(14, 14, 13, 0.94);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.15);

}


.navbar {

    width: min(92%, 1400px);

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.brand {

    display: flex;

    flex-direction: column;

    color: var(--white);

    line-height: 1;

    z-index: 1001;

}


.brand-main {

    font-family: var(--font-title);

    font-size: 1.85rem;

    font-weight: 600;

}


.brand-sub {

    margin-top: 5px;

    color: var(--gold-light);

    font-size: 0.53rem;

    text-transform: uppercase;

    letter-spacing: 0.25em;

}


.nav-links {

    display: flex;

    align-items: center;

    gap: 35px;

}


.nav-links > li > a {

    color: rgba(255, 255, 255, 0.83);

    font-size: 0.76rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;

    font-weight: 500;

    transition: 0.3s;

}


.nav-links > li > a:hover,
.nav-links > li > a.active {

    color: var(--gold-light);

}


.nav-rdv a {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 21px;

    border: 1px solid rgba(255, 255, 255, 0.3);

    border-radius: 100px;

}


.nav-rdv a:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: var(--black) !important;

}


.menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    border: 0;

    background: transparent;

    cursor: pointer;

    position: relative;

    z-index: 1001;

}


.menu-toggle span {

    display: block;

    width: 26px;
    height: 1px;

    margin: 6px auto;

    background: white;

    transition: 0.35s;

}


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

/* =========================================================
   HERO AVEC PHOTO DU SALON
========================================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #0d0d0c;

}


/* Photo du salon */

.hero::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        url("pano.jpeg")
        center center / cover
        no-repeat;

    filter:
        saturate(0.78)
        contrast(1.08)
        brightness(0.88);

    transform: scale(1.03);

}


/* Voiles sombres + légère ambiance dorée */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(8, 8, 7, 0.95) 0%,
            rgba(9, 9, 8, 0.88) 25%,
            rgba(10, 10, 9, 0.69) 50%,
            rgba(10, 10, 9, 0.33) 75%,
            rgba(10, 10, 9, 0.20) 100%
        ),

        linear-gradient(
            180deg,
            rgba(7, 7, 6, 0.38) 0%,
            rgba(7, 7, 6, 0.02) 45%,
            rgba(7, 7, 6, 0.62) 100%
        ),

        radial-gradient(
            circle at 75% 43%,
            rgba(201, 167, 106, 0.10) 0%,
            rgba(201, 167, 106, 0) 48%
        );

}


/* Texture légère */

.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    opacity: 0.035;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.5'/%3E%3C/svg%3E");

}


.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    opacity: 0.05;

    pointer-events: none;

    background-image:
        url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.5'/%3E%3C/svg%3E");

}


.hero-decoration {

    position: absolute;

    border: 1px solid rgba(201, 167, 106, 0.16);

    border-radius: 50%;

}


.hero-decoration-1 {

    width: 650px;
    height: 650px;

    right: -150px;
    top: 50%;

    transform: translateY(-50%);

}


.hero-decoration-2 {

    width: 430px;
    height: 430px;

    right: -40px;
    top: 50%;

    transform: translateY(-50%);

}


.hero-content {

    position: relative;

    z-index: 5;

    width: min(90%, 1400px);

    margin-inline: auto;

    padding-top: 70px;

}


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: var(--gold-light);

    text-transform: uppercase;

    letter-spacing: 0.3em;

    font-size: 0.66rem;

    font-weight: 600;

    margin-bottom: 32px;

}


.eyebrow::before {

    content: "";

    display: block;

    width: 45px;
    height: 1px;

    background: var(--gold);

}


.hero h1 {

    max-width: 850px;

    color: var(--white);

    font-family: var(--font-title);

    font-weight: 500;

    font-size: clamp(4rem, 7.2vw, 7rem);

    line-height: 0.82;

    letter-spacing: -0.03em;

}


.hero h1 em {

    color: var(--gold-light);

    font-weight: 500;

}


.hero-text {

    max-width: 660px;

    margin-top: 40px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.94rem;

    line-height: 1.9;

}


.hero-second {

    max-width: 660px;

    margin-top: 13px;

    color: rgba(255, 255, 255, 0.68);

    font-size: 0.94rem;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 16px;

    margin-top: 38px;

}


/* =========================================================
   BUTTONS
========================================================= */

.btn {

    min-height: 54px;

    padding: 0 27px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    border-radius: 100px;

    font-size: 0.76rem;

    font-weight: 600;

    letter-spacing: 0.05em;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;

}


.btn:hover {

    transform: translateY(-3px);

}


.btn-gold {

    color: #15140f;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold-dark)
        );

    box-shadow:
        0 15px 40px rgba(201, 167, 106, 0.2);

}


.btn-gold:hover {

    box-shadow:
        0 18px 50px rgba(201, 167, 106, 0.34);

}


.btn-outline {

    color: white;

    border: 1px solid rgba(255, 255, 255, 0.25);

    background: rgba(255, 255, 255, 0.03);

    backdrop-filter: blur(10px);

}


.btn-outline:hover {

    border-color: rgba(255, 255, 255, 0.5);

    background: rgba(255, 255, 255, 0.08);

}


.btn-light {

    background: var(--white);

    color: var(--black);

}


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

.hero-info {

    position: absolute;

    right: 5vw;
    bottom: 50px;

    z-index: 6;

    display: flex;

    align-items: center;

    gap: 28px;

}


.hero-info-item {

    display: flex;

    flex-direction: column;

}


.hero-info-item span {

    color: rgba(255, 255, 255, 0.4);

    text-transform: uppercase;

    letter-spacing: 0.18em;

    font-size: 0.55rem;

}


.hero-info-item strong {

    margin-top: 2px;

    color: white;

    font-size: 0.75rem;

    font-weight: 500;

}


.hero-info-line {

    height: 30px;

    width: 1px;

    background: rgba(255, 255, 255, 0.15);

}


.scroll-indicator {

    position: absolute;

    z-index: 6;

    left: 5vw;
    bottom: 37px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: rgba(255, 255, 255, 0.5);

    font-size: 0.6rem;

    text-transform: uppercase;

    letter-spacing: 0.2em;

}


.scroll-mouse {

    width: 20px;
    height: 32px;

    border: 1px solid rgba(255, 255, 255, 0.4);

    border-radius: 20px;

    display: flex;

    justify-content: center;

    padding-top: 7px;

}


.scroll-wheel {

    width: 2px;
    height: 6px;

    background: var(--gold);

    animation: scrollMouse 1.7s infinite;

}


@keyframes scrollMouse {

    0% {
        opacity: 0;
        transform: translateY(0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(9px);
    }

}


/* =========================================================
   INTRO
========================================================= */

.intro {

    padding: 120px 0;

    background: var(--cream);

}


.intro-grid {

    display: grid;

    grid-template-columns: 0.65fr 2fr;

    gap: 80px;

}


.section-label {

    color: var(--text-light);

    text-transform: uppercase;

    font-size: 0.65rem;

    letter-spacing: 0.2em;

    display: flex;

    align-items: flex-start;

    gap: 14px;

}


.section-label span {

    color: var(--gold-dark);

}


.intro-content {

    max-width: 820px;

}


.intro-content p {

    max-width: 670px;

    color: var(--text-light);

    margin-top: 30px;

    line-height: 2;

}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background: #f0ece3;

}


.service-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;

}


.service-card {

    position: relative;

    min-height: 370px;

    padding: 45px 34px;

    border: 1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.55);

    overflow: hidden;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        background 0.45s ease;

}


.service-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow);

    background: white;

}


.service-number {

    position: absolute;

    right: 25px;
    top: 17px;

    font-family: var(--font-title);

    font-size: 4.5rem;

    line-height: 1;

    color: rgba(0, 0, 0, 0.04);

}


.service-icon {

    width: 67px;
    height: 67px;

    border: 1px solid rgba(169, 135, 79, 0.4);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: var(--gold-dark);

    font-size: 1.3rem;

    margin-bottom: 70px;

}


.service-card h3 {

    font-family: var(--font-title);

    font-size: 2rem;

    font-weight: 600;

}


.service-card p {

    margin-top: 12px;

    color: var(--text-light);

    font-size: 0.82rem;

    line-height: 1.8;

}


.service-line {

    position: absolute;

    left: 34px;
    bottom: 32px;

    width: 35px;
    height: 2px;

    background: var(--gold);

    transition: width 0.4s ease;

}


.service-card:hover .service-line {

    width: 75px;

}


/* =========================================================
   SUBTIL
========================================================= */

.subtil-section {

    padding: 100px 0;

    background: var(--cream);

}


.subtil-card {

    min-height: 570px;

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    background: var(--white);

    box-shadow: var(--shadow);

}


.subtil-text {

    padding: clamp(45px, 7vw, 90px);

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.new-badge {

    align-self: flex-start;

    margin-bottom: 28px;

    padding: 6px 12px;

    border-radius: 100px;

    background: var(--black);

    color: white;

    font-size: 0.58rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.15em;

}


.subtil-text h2 {

    font-family: var(--font-title);

    font-size: clamp(2.8rem, 4vw, 4.5rem);

    line-height: 0.95;

}


.subtil-text h2 em {

    color: var(--gold-dark);

}


.subtil-text p {

    color: var(--text-light);

    margin-top: 25px;

    line-height: 1.9;

    font-size: 0.9rem;

}


.text-link {

    margin-top: 30px;

    display: inline-flex;

    align-items: center;

    gap: 14px;

    align-self: flex-start;

    font-size: 0.75rem;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    border-bottom: 1px solid var(--gold);

    padding-bottom: 7px;

}


.subtil-image {

    position: relative;

    overflow: hidden;

    display: grid;

    place-items: center;

    padding: 40px;

    background:
        radial-gradient(
            circle,
            #f8f6f0,
            #e7e0d2
        );

}


.subtil-image img {

    position: relative;

    z-index: 2;

    max-height: 450px;

    object-fit: contain;

    transition: transform 0.7s ease;

}


.subtil-card:hover .subtil-image img {

    transform: scale(1.035);

}


.image-glow {

    width: 330px;
    height: 330px;

    position: absolute;

    border-radius: 50%;

    background:
        rgba(201, 167, 106, 0.15);

    filter: blur(30px);

}


/* =========================================================
   TARIFS
========================================================= */

.pricing {

    background: var(--black);

    position: relative;

    overflow: hidden;

}


.pricing::before {

    content: "";

    width: 700px;
    height: 700px;

    border: 1px solid rgba(201, 167, 106, 0.07);

    border-radius: 50%;

    position: absolute;

    left: -350px;
    top: -150px;

}


.pricing-grid {

    position: relative;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;

}


.pricing-card {

    padding: 45px;

    background: #171715;

    border: 1px solid rgba(255, 255, 255, 0.08);

}


.pricing-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding-bottom: 30px;

    margin-bottom: 10px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}


.pricing-small {

    color: var(--gold);

    text-transform: uppercase;

    letter-spacing: 0.2em;

    font-size: 0.6rem;

}


.pricing-header h3 {

    margin-top: 4px;

    color: white;

    font-family: var(--font-title);

    font-size: 2.8rem;

    font-weight: 500;

}


.pricing-icon {

    width: 65px;
    height: 65px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: var(--gold);

    border: 1px solid rgba(201, 167, 106, 0.3);

}


.price-list li {

    padding: 15px 0;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 30px;

    border-bottom: 1px dashed rgba(255, 255, 255, 0.08);

}


.price-list span {

    color: rgba(255, 255, 255, 0.65);

    font-size: 0.77rem;

}


.price-list strong {

    color: white;

    white-space: nowrap;

    font-size: 0.78rem;

    font-weight: 600;

}


.price-list .highlight-price {

    margin-top: 10px;

    padding: 17px 15px;

    border: 1px solid rgba(201, 167, 106, 0.25);

    background: rgba(201, 167, 106, 0.06);

}


.price-list .highlight-price span,
.price-list .highlight-price strong {

    color: var(--gold-light);

}


.pricing-note {

    margin-top: 35px;

    padding: 20px 25px;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 13px;

    color: rgba(255, 255, 255, 0.58);

    font-size: 0.75rem;

}


.pricing-note i {

    color: var(--gold);

}


.pricing-note a {

    color: var(--gold-light);

}


/* =========================================================
   HISTOIRE
========================================================= */

.history {

    background: var(--cream);

}


.history-grid {

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: clamp(60px, 8vw, 120px);

    align-items: center;

}


.history-visual {

    position: relative;

}


.history-image-main {

    position: relative;

    height: 720px;

    overflow: hidden;

}


.history-image-main img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.history-year {

    position: absolute;

    right: -40px;
    bottom: 40px;

    width: 190px;
    height: 190px;

    padding: 25px;

    background: var(--black);

    color: white;

    display: flex;

    flex-direction: column;

    justify-content: center;

}


.history-year strong {

    color: var(--gold-light);

    font-family: var(--font-title);

    font-size: 3.5rem;

    line-height: 1;

}


.history-year span {

    margin-top: 10px;

    font-size: 0.66rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;

}


.timeline {

    margin-top: 55px;

}


.timeline-item {

    position: relative;

    display: grid;

    grid-template-columns: 90px 1fr;

    min-height: 80px;

}


.timeline-item::before {

    content: "";

    position: absolute;

    left: 66px;
    top: 9px;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold-dark);

}


.timeline-item::after {

    content: "";

    position: absolute;

    left: 69px;
    top: 18px;
    bottom: 0;

    width: 1px;

    background: #d4cec1;

}


.timeline-item:last-child::after {

    display: none;

}


.timeline-date {

    font-family: var(--font-title);

    font-weight: 700;

    font-size: 1.1rem;

    color: var(--gold-dark);

}


.timeline-content {

    padding-left: 35px;

    padding-bottom: 32px;

    color: var(--text-light);

    font-size: 0.84rem;

}


/* =========================================================
   GALLERY
========================================================= */

.salon-gallery {

    height: 650px;

}


.gallery-image {

    position: relative;

    width: 100%;
    height: 100%;

    overflow: hidden;

}


.gallery-image > img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;

    transition: transform 10s ease;

}


.gallery-image:hover > img {

    transform: scale(1.06);

}


.gallery-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 10, 9, 0.80),
            rgba(10, 10, 9, 0.2)
        );

}


.gallery-text {

    position: absolute;

    left: max(5vw, calc((100vw - 1280px) / 2));
    top: 50%;

    transform: translateY(-50%);

    color: white;

}


.gallery-text span {

    color: var(--gold-light);

    font-size: 0.66rem;

    text-transform: uppercase;

    letter-spacing: 0.2em;

}


.gallery-text h2 {

    margin: 15px 0 35px;

    font-family: var(--font-title);

    font-size: clamp(3rem, 5vw, 5.4rem);

    font-weight: 500;

    line-height: 0.9;

}


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

.contact {

    background: #eee9df;

}


.contact-wrapper {

    display: grid;

    grid-template-columns: 0.85fr 1.15fr;

    min-height: 700px;

    background: white;

    box-shadow: var(--shadow);

}


.contact-info {

    padding: clamp(40px, 5vw, 70px);

}


.contact-block {

    display: flex;

    align-items: center;

    gap: 18px;

}


.contact-icon {

    width: 54px;
    height: 54px;

    flex: 0 0 54px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: var(--gold-dark);

    border: 1px solid #d9cbb2;

}


.contact-label {

    color: var(--gold-dark);

    font-size: 0.58rem;

    font-weight: 700;

    letter-spacing: 0.18em;

    text-transform: uppercase;

}


.contact-block h3 {

    font-family: var(--font-title);

    font-size: 1.7rem;

}


.hours {

    margin-top: 35px;

}


.hours div {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 12px 0;

    border-bottom: 1px solid #eeeae2;

}


.hours span {

    font-size: 0.78rem;

    color: var(--text-light);

}


.hours strong {

    font-size: 0.77rem;

    font-weight: 600;

}


.hours .closed {

    color: #a68069;

}


.exceptional-opening {

    margin-top: 25px;

    padding: 14px 17px;

    display: flex;

    gap: 12px;

    background: #faf7ef;

    border-left: 2px solid var(--gold);

    color: #6a6256;

    font-size: 0.7rem;

}


.exceptional-opening i {

    color: var(--gold-dark);

    margin-top: 4px;

}


.contact-separator {

    height: 1px;

    margin: 35px 0;

    background: #ece7dd;

}


.contact-details {

    display: grid;

    gap: 18px;

}


.contact-detail {

    display: flex;

    align-items: center;

    gap: 16px;

}


.contact-detail-icon {

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    color: var(--gold-dark);

    background: #f7f3eb;

}


.contact-detail div:last-child {

    display: flex;

    flex-direction: column;

}


.contact-detail small {

    color: var(--text-light);

    font-size: 0.6rem;

    text-transform: uppercase;

    letter-spacing: 0.12em;

}


.contact-detail strong {

    margin-top: 2px;

    font-size: 0.76rem;

    font-weight: 600;

}


.contact-btn {

    margin-top: 38px;

}


.map {

    min-height: 600px;

}


.map iframe {

    width: 100%;
    height: 100%;

    border: 0;

    filter:
        grayscale(35%)
        contrast(92%)
        saturate(80%);

}


/* =========================================================
   SIGNATURE
========================================================= */

.signature {

    padding: 100px 0 0;

    background: var(--cream);

    overflow: hidden;

}


.signature-content {

    display: flex;

    justify-content: center;

    align-items: flex-end;

    gap: 70px;

}


.signature-text {

    padding-bottom: 100px;

}


.signature-text span {

    color: var(--gold-dark);

    font-size: 0.65rem;

    text-transform: uppercase;

    letter-spacing: 0.2em;

}


.signature-text h2 {

    margin-top: 15px;

    font-family: var(--font-title);

    font-weight: 500;

    font-size: clamp(3.5rem, 6vw, 6rem);

    line-height: 0.85;

}


.signature-text h2 em {

    color: var(--gold-dark);

}


.signature-photo img {

    max-height: 500px;

}


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

footer {

    background: #0c0c0b;

    color: white;

    padding-top: 75px;

}


.footer-main {

    display: grid;

    grid-template-columns: 1.4fr 0.7fr 1fr 0.8fr;

    gap: 50px;

    padding-bottom: 65px;

}


.footer-brand h3 {

    font-family: var(--font-title);

    font-size: 2.3rem;

    font-weight: 500;

}


.footer-brand p {

    max-width: 240px;

    margin-top: 12px;

    color: rgba(255, 255, 255, 0.45);

    font-size: 0.75rem;

}


.footer-column {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.footer-column > span,
.footer-rdv > span {

    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 0.59rem;

    text-transform: uppercase;

    letter-spacing: 0.18em;

}


.footer-column a,
.footer-column p {

    color: rgba(255, 255, 255, 0.52);

    font-size: 0.71rem;

    transition: color 0.3s;

}


.footer-column a:hover {

    color: white;

}


.footer-rdv {

    display: flex;

    flex-direction: column;

}


.footer-rdv a {

    display: flex;

    align-items: center;

    gap: 10px;

    font-family: var(--font-title);

    font-size: 1.45rem;

    color: white;

}


.footer-rdv i {

    color: var(--gold);

    font-size: 0.9rem;

}


.footer-bottom {

    padding: 22px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    display: flex;

    justify-content: space-between;

    color: rgba(255, 255, 255, 0.3);

    font-size: 0.61rem;

}


.heart {

    color: #d66666;

}


/* =========================================================
   BACK TO TOP
========================================================= */

.back-to-top {

    position: fixed;

    z-index: 500;

    right: 24px;
    bottom: 24px;

    width: 48px;
    height: 48px;

    border: 0;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background: var(--gold);

    color: var(--black);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(20px);

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.15);

    transition: 0.35s;

}


.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


/* =========================================================
   SCROLL ANIMATION
========================================================= */

.reveal {

    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.85s ease,
        transform 0.85s ease;

}


.reveal.visible {

    opacity: 1;

    transform: translateY(0);

}


/* =========================================================
   TABLETTE
========================================================= */

@media (max-width: 1100px) {


    .nav-links {

        gap: 20px;

    }


    .service-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .hero-info {

        display: none;

    }


    .history-grid {

        gap: 60px;

    }


    .history-image-main {

        height: 600px;

    }


    .footer-main {

        grid-template-columns:
            1fr 1fr;

    }

}


/* =========================================================
   MOBILE MENU
========================================================= */

@media (max-width: 900px) {


    .menu-toggle {

        display: block;

    }


    .menu-toggle.active span:nth-child(1) {

        transform:
            translateY(7px)
            rotate(45deg);

    }


    .menu-toggle.active span:nth-child(2) {

        opacity: 0;

    }


    .menu-toggle.active span:nth-child(3) {

        transform:
            translateY(-7px)
            rotate(-45deg);

    }


    .nav-links {

        position: fixed;

        inset: 0;

        background: rgba(10, 10, 9, 0.98);

        backdrop-filter: blur(20px);

        flex-direction: column;

        align-items: center;

        justify-content: center;

        gap: 25px;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-20px);

        transition: 0.4s ease;

    }


    .nav-links.open {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    .nav-links > li > a {

        font-family: var(--font-title);

        font-size: 2rem;

        text-transform: none;

        letter-spacing: 0;

    }


    .nav-rdv {

        margin-top: 15px;

    }


    .nav-rdv a {

        font-family: var(--font-body) !important;

        font-size: 0.75rem !important;

        text-transform: uppercase !important;

        letter-spacing: 0.08em !important;

        padding: 14px 24px;

    }


    .pricing-grid,
    .subtil-card,
    .history-grid,
    .contact-wrapper {

        grid-template-columns: 1fr;

    }


    .history-visual {

        max-width: 650px;

        margin-inline: auto;

    }


    .history-year {

        right: 20px;

    }


    .contact-wrapper {

        min-height: initial;

    }


    .map {

        min-height: 450px;

    }


    .signature-content {

        gap: 25px;

    }

}


/* =========================================================
   SMARTPHONE
========================================================= */

@media (max-width: 650px) {


    .section {

        padding: 80px 0;

    }


    .navbar {

        width: 90%;

    }


    .site-header {

        padding: 15px 0;

    }


    .brand-main {

        font-size: 1.5rem;

    }


    .brand-sub {

        font-size: 0.46rem;

    }


    /* HERO */

    .hero::before {

    background-position: 62% center;

}


.hero-overlay {

    background:

        linear-gradient(
            90deg,
            rgba(8, 8, 7, 0.87) 0%,
            rgba(8, 8, 7, 0.71) 55%,
            rgba(8, 8, 7, 0.48) 100%
        ),

        linear-gradient(
            180deg,
            rgba(8, 8, 7, 0.48) 0%,
            rgba(8, 8, 7, 0.16) 40%,
            rgba(8, 8, 7, 0.72) 100%
        );

}

    .hero {

        min-height: 100svh;

        padding: 115px 0 100px;

        align-items: center;

    }


    .hero-content {

        padding-top: 0;

    }


    .eyebrow {

        margin-bottom: 25px;

        font-size: 0.57rem;

        letter-spacing: 0.19em;

    }


    .eyebrow::before {

        width: 25px;

    }


    .hero h1 {

        font-size: clamp(3.6rem, 17vw, 5.5rem);

        line-height: 0.85;

    }


    .hero-text {

        margin-top: 30px;

        font-size: 0.82rem;

        line-height: 1.8;

    }


    .hero-second {

        font-size: 0.82rem;

    }


    .hero-buttons {

        flex-direction: column;

        align-items: stretch;

    }


    .btn {

        width: 100%;

    }


    .scroll-indicator {

        left: 50%;

        bottom: 25px;

        transform: translateX(-50%);

    }


    .scroll-indicator span {

        display: none;

    }


    /* INTRO */

    .intro {

        padding: 80px 0;

    }


    .intro-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .section-heading {

        margin-bottom: 50px;

    }


    .section-heading h2,
    .intro-content h2 {

        font-size: 3.2rem;

    }


    /* SERVICES */

    .service-grid {

        grid-template-columns: 1fr;

    }


    .service-card {

        min-height: 310px;

    }


    .service-icon {

        margin-bottom: 50px;

    }


    /* SUBTIL */

    .subtil-section {

        padding: 70px 0;

    }


    .subtil-card {

        display: flex;

        flex-direction: column;

    }


    .subtil-image {

        order: -1;

        min-height: 350px;

    }


    .subtil-image img {

        max-height: 300px;

    }


    .subtil-text {

        padding: 40px 28px;

    }


    .subtil-text h2 {

        font-size: 3rem;

    }


    /* PRICING */

    .pricing-card {

        padding: 28px 20px;

    }


    .pricing-header h3 {

        font-size: 2.3rem;

    }


    .price-list li {

        gap: 15px;

    }


    .price-list span {

        font-size: 0.69rem;

    }


    .price-list strong {

        font-size: 0.7rem;

    }


    .pricing-note {

        text-align: left;

        align-items: flex-start;

    }


    /* HISTORY */

    .history-image-main {

        height: 470px;

    }


    .history-year {

        width: 140px;
        height: 140px;

        right: 15px;
        bottom: 15px;

    }


    .history-year strong {

        font-size: 2.6rem;

    }


    .history-year span {

        font-size: 0.55rem;

    }


    .history-content {

        margin-top: 10px;

    }


    .timeline-item {

        grid-template-columns: 70px 1fr;

    }


    .timeline-item::before {

        left: 55px;

    }


    .timeline-item::after {

        left: 58px;

    }


    .timeline-content {

        padding-left: 25px;

    }


    /* GALLERY */

    .salon-gallery {

        height: 550px;

    }


    .gallery-overlay {

        background:
            linear-gradient(
                90deg,
                rgba(10, 10, 9, 0.78),
                rgba(10, 10, 9, 0.35)
            );

    }


    .gallery-text {

        left: 7%;
        right: 7%;

    }


    /* CONTACT */

    .contact-info {

        padding: 40px 24px;

    }


    .hours div {

        gap: 15px;

    }


    .hours span,
    .hours strong {

        font-size: 0.69rem;

    }


    .map {

        min-height: 380px;

    }


    /* SIGNATURE */

    .signature {

        padding-top: 75px;

    }


    .signature-content {

        flex-direction: column;

        align-items: center;

        text-align: center;

    }


    .signature-text {

        padding-bottom: 0;

    }


    .signature-text h2 {

        font-size: 4rem;

    }


    .signature-photo img {

        max-height: 400px;

    }


    /* FOOTER */

    .footer-main {

        grid-template-columns: 1fr;

        gap: 35px;

    }


    .footer-bottom {

        flex-direction: column;

        gap: 8px;

        text-align: center;

    }


    .back-to-top {

        right: 15px;
        bottom: 15px;

        width: 44px;
        height: 44px;

    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 380px) {

    .hero h1 {

        font-size: 3.5rem;

    }


    .section-heading h2,
    .intro-content h2 {

        font-size: 2.8rem;

    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    * {

        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        transition-duration: 0.01ms !important;

    }

}