/* =============================================
   ST PRESTIGE — Conciergerie de Luxe
   assets/style.css
   ============================================= */

/* --- VARIABLES --- */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #f7f5f2;
    --color-text: #2c2825;
    --color-text-muted: #7a736c;
    --color-gold: #b8943f;
    --color-gold-light: #d4af5b;
    --color-gold-dark: #96782e;
    --color-cream: #1a1714;
    --color-white: #ffffff;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Raleway', 'Helvetica Neue', sans-serif;

    --container-max: 1280px;
    --gap: clamp(1.5rem, 4vw, 4rem);
    --radius: 2px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

    --nav-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

ul { list-style: none; }
em { font-style: italic; color: var(--color-gold); }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gap);
}

/* --- NAVIGATION --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(1.5rem, 4vw, 4rem);
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: none;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
}

/* Forme dessinée sous la nav */
.nav-brush {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    z-index: 999;
    line-height: 0;
    pointer-events: none;
}

.nav-brush svg {
    width: 100%;
    height: 25px;
    display: block;
}
.nav__logo {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
}

.nav__logo-st {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.nav__logo-prestige {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-text);
}

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

.nav__link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text);
    position: relative;
    padding: 0.3rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-gold-dark);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__cta {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
    background: var(--color-gold);
    border: 1px solid var(--color-gold);
    padding: 0.65rem 1.6rem;
    transition: all var(--transition);
}

.nav__cta:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    color: var(--color-white);
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--color-gold);
    transition: all 0.3s ease;
}

.nav__burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.nav__burger.open span:nth-child(2) {
    opacity: 0;
}

.nav__burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

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

.mobile-menu__links {
    text-align: center;
}

.mobile-menu__links li {
    margin: 1.5rem 0;
}

.mobile-menu__links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.05em;
    transition: color var(--transition);
}

.mobile-menu__links a:hover {
    color: var(--color-gold-dark);
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 110vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, 
            rgba(0,0,0,0.5) 0%, 
            rgba(0,0,0,0.4) 30%,
            rgba(0,0,0,0.45) 60%,
            rgba(0,0,0,0.65) 100%
        ),
        radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.4) 100%);
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 var(--gap);
    margin-top: -6vh;
}

.hero__tagline {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--color-gold-light);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    animation: heroFadeUp 1s ease 0.3s both;
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
    animation: heroFadeUp 1s ease 0.6s both;
}

.hero__title em {
    color: var(--color-gold-light);
    font-weight: 400;
}

.hero__subtitle {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    animation: heroFadeUp 1s ease 0.9s both;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroFadeUp 1s ease 1.2s both;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* BRUSHSTROKE TRANSITION */
.hero__brush {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero__brush svg {
    width: 100%;
    height: clamp(90px, 13vw, 180px);
    display: block;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-bg);
    border-color: var(--color-gold);
}

.btn--primary:hover {
    background: var(--color-gold-light);
    border-color: var(--color-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 148, 63, 0.15);
}

.btn--outline {
    background: transparent;
    color: var(--color-text);
    border-color: rgba(44, 40, 37, 0.25);
}

.btn--outline:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

/* Bouton outline sur fond sombre (hero / page-hero) */
.hero .btn--outline,
.page-hero .btn--outline {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
}

.hero .btn--outline:hover,
.page-hero .btn--outline:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1.2rem 3.5rem;
    font-size: 0.78rem;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    transition: gap var(--transition), color var(--transition);
}

.link-arrow:hover {
    gap: 1rem;
    color: var(--color-gold-light);
}

/* --- LABELS & TITLES --- */
.label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2.5rem;
}

.label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1.8rem;
    height: 1px;
    background: var(--color-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(3rem, 6vw, 5rem);
}

/* --- INTRO SECTION --- */
.intro {
    padding: clamp(5rem, 10vw, 10rem) 0;
}

.intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: center;
}

.intro__text .section-title {
    text-align: left;
}

.intro__desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.intro__visual {
    position: relative;
}

.intro__img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.intro__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.intro__img-wrap:hover img {
    transform: scale(1.05);
}

.intro__img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184, 148, 63, 0.25);
    pointer-events: none;
}

.intro__stat {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(184, 148, 63, 0.15);
    padding: 1.8rem 2.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intro__stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.intro__stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* --- SERVICES PREVIEW --- */
.services-preview {
    padding: clamp(4rem, 8vw, 8rem) 0;
    background: var(--color-bg-alt);
}

.services-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(184, 148, 63, 0.12);
    transition: all var(--transition);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-dark));
    transition: width 0.6s ease;
}

.service-card:hover {
    border-color: rgba(184, 148, 63, 0.25);
    transform: translateY(-4px);
    background: rgba(184, 148, 63, 0.04);
}

.service-card:hover::before {
    width: 100%;
}

.service-card__icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.8rem;
}

.service-card__desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* --- PARALLAX BAND --- */
.parallax-band {
    position: relative;
    height: 50vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-band__img {
    position: absolute;
    inset: -50px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-band__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-band__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 var(--gap);
}

.parallax-band__quote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 300;
    font-style: italic;
    color: var(--color-white);
    line-height: 1.4;
    max-width: 700px;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}

/* --- CTA SECTION --- */
.cta-section {
    padding: clamp(5rem, 10vw, 10rem) 0;
}

.cta-box {
    text-align: center;
    padding: clamp(3rem, 6vw, 5rem);
    border: 1px solid rgba(184, 148, 63, 0.2);
    background: 
        radial-gradient(ellipse at top left, rgba(184, 148, 63, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(184, 148, 63, 0.05) 0%, transparent 60%);
}

.cta-box__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.cta-box__text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* --- FOOTER --- */
.footer {
    border-top: 1px solid rgba(184, 148, 63, 0.15);
    padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-top: 1rem;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 1.2rem;
}

.footer__list li {
    margin-bottom: 0.6rem;
}

.footer__list a,
.footer__list li {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.footer__list a:hover {
    color: var(--color-gold-light);
}

.footer__bottom {
    border-top: 1px solid rgba(184, 148, 63, 0.12);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

.footer__bottom em {
    color: var(--color-text-muted);
    font-style: italic;
}

/* --- ANIMATIONS --- */
/* Scroll-triggered animations using CSS only */
.fade-up {
    animation: fadeUp 0.8s ease both;
}

.fade-right {
    animation: fadeRight 0.8s ease both;
}

.fade-left {
    animation: fadeLeft 0.8s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }

/* Scroll-driven animations for supported browsers */
@supports (animation-timeline: view()) {
    .scroll-reveal {
        opacity: 0;
        transform: translateY(40px);
        animation: fadeUp 0.6s ease both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }
    .scroll-reveal-right {
        opacity: 0;
        transform: translateX(-40px);
        animation: fadeRight 0.6s ease both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }
    .scroll-reveal-left {
        opacity: 0;
        transform: translateX(40px);
        animation: fadeLeft 0.6s ease both;
        animation-timeline: view();
        animation-range: entry 0% entry 30%;
    }
}

/* Hover animations on cards */
.service-card,
.property-card,
.experience-card__img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(184, 148, 63, 0.15);
}

.property-card:hover {
    transform: translateY(-4px);
}

/* --- PAGE-SPECIFIC: SERVICES --- */
.page-hero {
    height: 110vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    padding: 0 var(--gap);
    padding-top: var(--nav-height);
}

.page-hero__content .label {
    color: var(--color-gold-light);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.page-hero__content .label::before {
    background: var(--color-gold-light);
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 1rem;
    text-shadow: 0 3px 15px rgba(0,0,0,0.5), 0 1px 3px rgba(0,0,0,0.3);
}

.page-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    max-width: 550px;
    margin: 0 auto;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Forme dessinée en bas des page-hero */
.page-hero__brush {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.page-hero__brush svg {
    width: 100%;
    height: clamp(60px, 10vw, 120px);
    display: block;
}

/* Small page hero for legal pages */
.page-hero--small {
    height: 55vh;
    min-height: 400px;
    background: var(--color-bg-alt);
}

.page-hero--small::after {
    display: none;
}

.page-hero--small .page-hero__title {
    color: var(--color-cream);
}

/* Legal pages */
.legal-section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(184, 148, 63, 0.15);
}

.legal-block {
    margin-bottom: 2.5rem;
}

.legal-block h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(184, 148, 63, 0.12);
}

.legal-block p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.legal-block p strong {
    color: var(--color-text);
    font-weight: 500;
}

.legal-block a {
    color: var(--color-gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-block a:hover {
    color: var(--color-gold-light);
}

.legal-notice {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 148, 63, 0.12);
    font-size: 0.88rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* Services detail page */
.service-detail {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.service-detail:nth-child(even) {
    background: var(--color-bg-alt);
}

.service-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: center;
}

.service-detail:nth-child(even) .service-detail__grid {
    direction: rtl;
}

.service-detail:nth-child(even) .service-detail__grid > * {
    direction: ltr;
}

.service-detail__img {
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.service-detail__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.service-detail__img:hover img {
    transform: scale(1.05);
}

.service-detail__content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.service-detail__content p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.service-detail__list {
    margin: 1.5rem 0 2rem;
}

.service-detail__list li {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(184, 148, 63, 0.12);
    padding-left: 1.5rem;
    position: relative;
}

.service-detail__list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 0.5rem;
    top: 0.7rem;
}

/* --- PROPERTIES PAGE --- */
.properties-grid {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

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

.property-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(184, 148, 63, 0.2);
    padding: 1rem;
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.property-card:hover {
    border-color: var(--color-gold);
    box-shadow: 0 8px 30px rgba(184, 148, 63, 0.1);
}

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

.property-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.property-card:hover .property-card__img img {
    transform: scale(1.08);
}

.property-card__info {
    padding: 1.5rem 0;
}

.property-card__name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.3rem;
}

.property-card__location {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.property-card__details {
    display: flex;
    gap: 1.5rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.property-card__tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* --- EXPERIENCES PAGE --- */
.experiences-grid {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.experience-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    margin-bottom: clamp(4rem, 8vw, 8rem);
    padding-bottom: clamp(4rem, 8vw, 8rem);
    border-bottom: 1px solid rgba(184, 148, 63, 0.12);
}

.experience-card:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-card:nth-child(even) {
    direction: rtl;
}

.experience-card:nth-child(even) > * {
    direction: ltr;
}

.experience-card__img {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.experience-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.experience-card__img:hover img {
    transform: scale(1.05);
}

.experience-card__number {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(184, 148, 63, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.experience-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 1rem;
}

.experience-card__desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* --- CONTACT PAGE --- */
.contact-section {
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 6rem);
}

.contact__info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.contact__info p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact__detail {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact__detail-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(184, 148, 63, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact__detail-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact__detail-text strong {
    display: block;
    color: var(--color-cream);
    font-weight: 500;
    margin-bottom: 0.2rem;
}

/* FORM */
.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(184, 148, 63, 0.2);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    padding: 0.9rem 1.2rem;
    transition: border-color var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .services-preview__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav__links,
    .nav__cta {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .intro__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro__stat {
        bottom: auto;
        left: auto;
        right: 1rem;
        top: -1.5rem;
    }

    .services-preview__grid {
        grid-template-columns: 1fr;
    }

    .service-detail__grid {
        grid-template-columns: 1fr;
    }

    .service-detail__content {
        text-align: center;
    }

    .service-detail__content .label {
        display: inline-block;
    }

    .service-detail__content .btn {
        display: inline-block;
    }

    .service-detail__list {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .service-detail:nth-child(even) .service-detail__grid {
        direction: ltr;
    }

    .properties__list {
        grid-template-columns: 1fr;
    }

    .experience-card {
        grid-template-columns: 1fr;
    }

    .experience-card:nth-child(even) {
        direction: ltr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }

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

    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__bottom {
        text-align: center;
    }

    .parallax-band__img {
        background-attachment: scroll;
    }
}

/* --- PROPERTY DETAIL PAGE --- */
.prop-detail {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.prop-detail__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: clamp(4rem, 8vw, 6rem);
    padding: 2.5rem 0;
    border-top: 1px solid rgba(184, 148, 63, 0.15);
    border-bottom: 1px solid rgba(184, 148, 63, 0.15);
}

.prop-detail__stat {
    text-align: center;
}

.prop-detail__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 0.3rem;
}

.prop-detail__stat-label {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.prop-detail__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(3rem, 6vw, 6rem);
    margin-bottom: clamp(4rem, 8vw, 6rem);
}

.prop-detail__desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.prop-detail__equip-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-cream);
    margin-bottom: 1.5rem;
}

.prop-detail__equip-list {
    list-style: none;
}

.prop-detail__equip-list li {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    padding: 0.65rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid rgba(184, 148, 63, 0.1);
    position: relative;
}

.prop-detail__equip-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-size: 0.45rem;
    top: 0.85rem;
}

.prop-detail__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.prop-detail__gallery-item {
    overflow: hidden;
    aspect-ratio: 16/10;
}

.prop-detail__gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.prop-detail__gallery-item:hover img {
    transform: scale(1.06);
}

/* Property card as link */
a.property-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .prop-detail__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .prop-detail__grid {
        grid-template-columns: 1fr;
    }

    .prop-detail__gallery {
        grid-template-columns: 1fr;
    }
}

/* --- ABOUT PAGE --- */

/* Philosophie */
.about-philosophy {
    padding: clamp(5rem, 10vw, 10rem) 0;
}

.about-philosophy__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: clamp(3rem, 6vw, 8rem);
    align-items: center;
}

.about-philosophy__desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.about-philosophy__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-philosophy__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.about-philosophy__img:hover img {
    transform: scale(1.05);
}

.about-philosophy__img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(184, 148, 63, 0.2);
    pointer-events: none;
}

/* Chiffres clés */
.about-numbers {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--color-bg-alt);
}

.about-numbers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.about-numbers__item {
    text-align: center;
    padding: 2.5rem 1rem;
}

.about-numbers__value {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.8rem;
}

.about-numbers__value::after {
    content: '+';
}

.about-numbers__label {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Valeurs */
.about-values {
    padding: clamp(5rem, 10vw, 8rem) 0;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-values__card {
    padding: 2.5rem 2rem;
    border: 1px solid rgba(184, 148, 63, 0.15);
    text-align: center;
    transition: all 0.4s ease;
}

.about-values__card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(184, 148, 63, 0.08);
}

.about-values__icon {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

.about-values__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.8rem;
}

.about-values__desc {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* Équipe */
.about-team {
    padding: clamp(5rem, 10vw, 8rem) 0;
    background: var(--color-bg-alt);
}

.about-team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.about-team__member {
    text-align: center;
}

.about-team__photo {
    overflow: hidden;
    aspect-ratio: 4/5;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(184, 148, 63, 0.12);
}

.about-team__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.8s ease, filter 0.8s ease;
}

.about-team__member:hover .about-team__photo img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.about-team__name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-cream);
    margin-bottom: 0.2rem;
}

.about-team__role {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 0.8rem;
}

.about-team__bio {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .about-team__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-philosophy__grid {
        grid-template-columns: 1fr;
    }

    .about-numbers__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-values__grid {
        grid-template-columns: 1fr;
    }

    .about-team__grid {
        grid-template-columns: 1fr;
    }
}

/* Team initials avatar */
.about-team__photo--initials {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-alt);
    border: 1px solid rgba(184, 148, 63, 0.2);
}

.about-team__photo--initials span {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

.about-team__member:hover .about-team__photo--initials {
    border-color: var(--color-gold);
}

/* --- LANGUAGE SWITCHER --- */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 1.5rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    padding: 0.3rem 0.5rem;
    transition: color 0.3s ease;
    position: relative;
}

.lang-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}

.lang-btn:hover {
    color: var(--color-text);
}

.lang-btn.active {
    color: var(--color-gold);
    font-weight: 600;
}

.lang-btn.active::after {
    width: 60%;
}

.lang-separator {
    color: rgba(184, 148, 63, 0.3);
    font-size: 0.6rem;
    user-select: none;
}

@media (max-width: 768px) {
    .lang-switcher {
        position: absolute;
        top: 50%;
        right: 60px;
        transform: translateY(-50%);
        margin-left: 0;
    }
}