/* =========================================================
   STRATOS — Real Estate Developer, Marrakech
   Design tokens
   ========================================================= */

 :root {
    --cream: #F6F1E6;
    --cream-2: #EFE7D6;
    --ink: #201D17;
    --ink-soft: #4A463C;
    --gold: #B08D4F;
    --gold-light: #DEC385;
    --gold-dim: #8C6E39;
    --clay: #A8542F;
    --forest: #2E3826;
    --forest-2: #23301F;
    --stone: #EAE1CC;
    --white: #FFFFFF;
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Jost', sans-serif;
    --container: 1240px;
    --radius: 2px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
}

body.lock {
    overflow: hidden;
    height: 100vh;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 500;
    margin: 0;
    color: var(--ink);
    letter-spacing: .01em;
}

p {
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 32px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 12.5px;
    letter-spacing: .32em;
    text-transform: uppercase;
    color: var(--gold-dim);
    font-weight: 500;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--gold);
    display: inline-block;
}

.section-title {
    font-size: clamp(34px, 4.6vw, 58px);
    line-height: 1.08;
    margin-top: 18px;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dim);
}

.section-sub {
    max-width: 560px;
    margin-top: 20px;
    color: var(--ink-soft);
    font-size: 17px;
    font-weight: 300;
}

 :focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
}


/* =========================================================
   PRELOADER — letter-by-letter reveal
   ========================================================= */

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--forest-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: clip-path 1.1s var(--ease), opacity .6s ease .1s;
}

#preloader .pre-word {
    display: flex;
    font-family: var(--font-display);
    font-size: clamp(38px, 9vw, 110px);
    letter-spacing: .14em;
    color: var(--cream);
}

#preloader .pre-word span {
    opacity: 0;
    transform: translateY(28px);
    animation: preLetter .7s var(--ease) forwards;
}

#preloader .pre-sub {
    margin-top: 18px;
    opacity: 0;
    font-size: 12px;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--gold-light);
    animation: preFade .8s ease forwards;
    animation-delay: 1.35s;
}

#preloader .pre-line {
    margin-top: 26px;
    width: 0;
    height: 1px;
    background: var(--gold);
    animation: preLine .8s var(--ease) forwards;
    animation-delay: 1.55s;
}

@keyframes preLetter {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes preFade {
    to {
        opacity: 1;
    }
}

@keyframes preLine {
    to {
        width: 180px;
    }
}

#preloader.done {
    clip-path: circle(0% at 50% 50%);
    opacity: 0;
    pointer-events: none;
}


/* =========================================================
   NAV
   ========================================================= */

header#site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    padding: 22px 0;
    transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}

header#site-nav.scrolled {
    background: rgba(246, 241, 230, .92);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    box-shadow: 0 8px 30px -20px rgba(0, 0, 0, .35);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: .12em;
    color: var(--cream);
    transition: color .4s ease;
}

header#site-nav.scrolled .brand {
    color: var(--ink);
}

.brand img {
    height: 34px;
    width: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 38px;
    align-items: center;
}

.nav-links a {
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
    padding-bottom: 4px;
    transition: color .4s ease;
}

header#site-nav.scrolled .nav-links a {
    color: var(--ink);
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    border: 1px solid var(--gold);
    padding: 10px 22px;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--cream)!important;
}

header#site-nav.scrolled .nav-cta {
    color: var(--ink)!important;
    border-color: var(--gold-dim);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--forest-2)!important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 1px;
    background: var(--cream);
    transition: background .4s ease;
}

header#site-nav.scrolled .nav-toggle span {
    background: var(--ink);
}


/* =========================================================
   HERO
   ========================================================= */

#accueil {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest-2);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 15%, rgba(176, 141, 79, .28), transparent 55%), radial-gradient(ellipse at 85% 80%, rgba(168, 84, 47, .22), transparent 50%), linear-gradient(160deg, #23301F 0%, #2E3826 45%, #1D2818 100%);
    background-size: 200% 200%;
    animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.hero-arches {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-between;
    opacity: .5;
    animation: archFloat 14s ease-in-out infinite alternate;
}

@keyframes archFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-18px);
    }
}

.hero-arches svg {
    height: 100%;
    width: auto;
    opacity: .35;
}

.hero-particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--gold-light);
    opacity: .6;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: .7;
    }
    100% {
        transform: translateY(-100vh) translateX(20px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container);
    margin: 0 auto;
    padding: 140px 32px 80px;
    width: 100%;
}

.hero-eyebrow {
    color: var(--gold-light);
    font-size: 12.5px;
    letter-spacing: .4em;
    text-transform: uppercase;
    opacity: 0;
    animation: riseIn .9s var(--ease) forwards;
    animation-delay: .15s;
}

.hero-title {
    color: var(--cream);
    font-size: clamp(42px, 7vw, 88px);
    line-height: 1.04;
    margin-top: 26px;
    max-width: 920px;
    opacity: 0;
    animation: riseIn 1s var(--ease) forwards;
    animation-delay: .35s;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
    display: block;
}

.hero-desc {
    color: #D9D3C2;
    max-width: 480px;
    margin-top: 26px;
    font-size: 17px;
    opacity: 0;
    animation: riseIn 1s var(--ease) forwards;
    animation-delay: .55s;
}

@keyframes riseIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(22px);
    }
}

.hero-tags {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 38px;
    opacity: 0;
    animation: riseIn 1s var(--ease) forwards;
    animation-delay: .75s;
}

.hero-tags span {
    border: 1px solid rgba(222, 195, 133, .4);
    color: var(--gold-light);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: 10px 20px;
    border-radius: 40px;
}

.hero-cta-row {
    margin-top: 46px;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    opacity: 0;
    animation: riseIn 1s var(--ease) forwards;
    animation-delay: .95s;
}

.btn-gold {
    background: var(--gold);
    color: var(--forest-2);
    padding: 16px 34px;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    transition: background .35s ease, color .35s ease, transform .35s ease;
    display: inline-block;
}

.btn-gold:hover {
    background: transparent;
    color: var(--gold-light);
    transform: translateY(-2px);
}

.btn-ghost {
    color: var(--cream);
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(246, 241, 230, .4);
    padding-bottom: 4px;
    transition: border-color .3s ease, color .3s ease;
}

.btn-ghost:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

.hero-marquee {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid rgba(222, 195, 133, .18);
    padding: 18px 0;
    overflow: hidden;
    background: rgba(29, 40, 24, .5);
}

.marquee-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: marquee 26s linear infinite;
    width: max-content;
}

.marquee-track span {
    color: var(--gold-light);
    font-family: var(--font-display);
    font-style: italic;
    font-size: 19px;
    letter-spacing: .04em;
    opacity: .85;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.scroll-cue {
    position: absolute;
    right: 40px;
    bottom: 90px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
}

.scroll-cue .line {
    width: 1px;
    height: 46px;
    background: linear-gradient(var(--gold-light), transparent);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%,
    100% {
        transform: scaleY(1);
        opacity: .4;
    }
    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}


/* =========================================================
   REVEAL ON SCROLL
   ========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    transition-delay: calc(var(--i, 0) * 90ms);
}


/* =========================================================
   ARCH DIVIDER
   ========================================================= */

.arch-divider {
    position: relative;
    height: 70px;
    background: var(--cream);
}

.arch-divider svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.arch-divider.to-forest {
    background: var(--cream);
}

.arch-divider.to-cream {
    background: var(--forest-2);
}


/* =========================================================
   PROJECTS
   ========================================================= */

#projets {
    padding: 130px 0 120px;
    background: var(--cream);
}

.projects-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    flex-wrap: wrap;
}

.projects-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
}

.project-card {
    position: relative;
    background: var(--white);
    border: 1px solid rgba(32, 29, 23, .08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.project-media {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--stone);
}

.project-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .9s var(--ease);
}

.project-card:hover .project-media img {
    transform: scale(1.07);
}

.project-media .placeholder-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, #EFE7D6, #E3D6B6);
}

.project-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--forest-2);
    color: var(--gold-light);
    font-size: 11px;
    letter-spacing: .2em;
    text-transform: uppercase;
    padding: 8px 16px;
}

.project-body {
    padding: 34px 34px 38px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.project-loc {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dim);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-title {
    font-size: 30px;
    margin-top: 10px;
}

.project-price {
    margin: 10px 0 18px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #c9a96e;
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid rgba(201, 169, 110, .35);
    border-radius: 8px;
    background: rgba(201, 169, 110, .08);
}

.project-price strong {
    color: #b8904f;
    font-size: 1.2rem;
}

.project-desc {
    color: var(--ink-soft);
    font-size: 15.5px;
    margin-top: 14px;
    flex: 1;
}

.project-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(32, 29, 23, .08);
}

.project-feats li {
    font-size: 13px;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-feats li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

.project-link {
    margin-top: 26px;
    font-size: 12.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 4px;
    transition: color .3s ease, border-color .3s ease, gap .3s ease;
}

.project-link:hover {
    color: var(--gold-dim);
    border-color: var(--gold-dim);
    gap: 16px;
}


/* =========================================================
   A PROPOS
   ========================================================= */

#apropos {
    background: var(--forest-2);
    color: var(--cream);
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

#apropos::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -10%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(222, 195, 133, .14);
    border-radius: 50%;
}

#apropos::after {
    content: '';
    position: absolute;
    right: 2%;
    top: 6%;
    width: 340px;
    height: 340px;
    border: 1px solid rgba(222, 195, 133, .1);
    border-radius: 50%;
}

.about-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

#apropos .eyebrow {
    color: var(--gold-light);
}

#apropos .eyebrow::before {
    background: var(--gold-light);
}

#apropos .section-title {
    color: var(--cream);
}

#apropos .section-title em {
    color: var(--gold-light);
}

.about-text p {
    color: #D9D3C2;
    font-size: 16.5px;
    margin-top: 20px;
}

.about-values {
    margin-top: 40px;
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(222, 195, 133, .2);
}

.about-values div {
    flex: 1;
    padding: 22px 20px 0;
    border-right: 1px solid rgba(222, 195, 133, .2);
}

.about-values div:last-child {
    border-right: none;
}

.about-values .num {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--gold-light);
    font-size: 15px;
}

.about-values .lbl {
    margin-top: 8px;
    font-size: 12.5px;
    letter-spacing: .08em;
    color: var(--cream);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(222, 195, 133, .18);
    border: 1px solid rgba(222, 195, 133, .18);
}

.stat-box {
    background: var(--forest-2);
    padding: 44px 34px;
}

.stat-box .stat-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--gold-light);
    line-height: 1;
}

.stat-box .stat-lbl {
    margin-top: 14px;
    font-size: 13px;
    letter-spacing: .1em;
    color: #C9C2AE;
    text-transform: uppercase;
}


/* =========================================================
   GALERIE
   ========================================================= */

#galerie {
    padding: 130px 0;
    background: var(--cream);
}

.gallery-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 170px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--stone);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

.gallery-item .placeholder-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(29, 40, 24, .65), transparent 55%);
    opacity: 0;
    transition: opacity .4s ease;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-veil {
    opacity: 1;
}

.gallery-veil span {
    color: var(--cream);
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
}


/* lightbox */

#lightbox {
    position: fixed;
    inset: 0;
    z-index: 800;
    background: rgba(20, 17, 12, .94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .4s ease;
}

#lightbox.open {
    opacity: 1;
    pointer-events: auto;
}

#lightbox img {
    max-width: 86vw;
    max-height: 82vh;
    object-fit: contain;
}

#lightbox button {
    position: absolute;
    top: 28px;
    right: 34px;
    background: none;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
}


/* =========================================================
   AVIS CLIENTS
   ========================================================= */

#avis {
    padding: 130px 0;
    background: var(--stone);
    position: relative;
}

.reviews-track-wrap {
    margin-top: 70px;
    overflow: hidden;
}

.reviews-track {
    display: flex;
    gap: 26px;
    transition: transform .6s var(--ease);
}

.review-card {
    flex: 0 0 calc(33.333% - 18px);
    background: var(--white);
    padding: 36px 32px;
    border: 1px solid rgba(32, 29, 23, .08);
    display: flex;
    flex-direction: column;
    min-height: 270px;
}

.review-stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 2px;
}

.review-text {
    margin-top: 18px;
    font-size: 15.5px;
    color: var(--ink-soft);
    flex: 1;
    font-style: italic;
}

.review-audio {
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--cream);
    padding: 12px 16px;
}

.audio-play {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--forest-2);
    color: var(--gold-light);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 13px;
}

.audio-wave {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 22px;
    flex: 1;
}

.audio-wave span {
    width: 3px;
    background: var(--gold-dim);
    border-radius: 2px;
    height: 6px;
    transition: height .2s ease;
}

.review-audio.playing .audio-wave span {
    animation: wave 1s ease-in-out infinite;
}

.audio-wave span:nth-child(1) {
    animation-delay: 0s;
}

.audio-wave span:nth-child(2) {
    animation-delay: .1s;
}

.audio-wave span:nth-child(3) {
    animation-delay: .2s;
}

.audio-wave span:nth-child(4) {
    animation-delay: .3s;
}

.audio-wave span:nth-child(5) {
    animation-delay: .4s;
}

.audio-wave span:nth-child(6) {
    animation-delay: .5s;
}

.audio-wave span:nth-child(7) {
    animation-delay: .6s;
}

@keyframes wave {
    0%,
    100% {
        height: 6px;
    }
    50% {
        height: 20px;
    }
}

.review-foot {
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(32, 29, 23, .08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--forest-2);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
}

.review-name {
    font-size: 14px;
    color: var(--ink);
}

.review-role {
    font-size: 12px;
    color: var(--ink-soft);
}

.reviews-nav {
    display: flex;
    gap: 14px;
    margin-top: 38px;
    justify-content: center;
}

.reviews-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--ink);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease, color .3s ease;
}

.reviews-nav button:hover {
    background: var(--ink);
    color: var(--cream);
}


/* =========================================================
   CONTACT
   ========================================================= */

#contact {
    padding: 130px 0;
    background: var(--forest-2);
    color: var(--cream);
}

#contact .eyebrow {
    color: var(--gold-light);
}

#contact .eyebrow::before {
    background: var(--gold-light);
}

#contact .section-title {
    color: var(--cream);
}

#contact .section-title em {
    color: var(--gold-light);
}

.contact-grid {
    margin-top: 70px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info-list {
    margin-top: 34px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(222, 195, 133, .18);
}

.contact-info-item .ic {
    width: 44px;
    height: 44px;
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    flex-shrink: 0;
}

.contact-info-item .lbl {
    font-size: 11.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #B7AF98;
}

.contact-info-item .val {
    margin-top: 6px;
    font-size: 17px;
    color: var(--cream);
    font-family: var(--font-display);
}

.contact-social {
    margin-top: 34px;
    display: flex;
    gap: 16px;
}

.contact-social a {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(222, 195, 133, .35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    transition: background .3s ease, color .3s ease;
}

.contact-social a:hover {
    background: var(--gold-light);
    color: var(--forest-2);
}

.form-field {
    margin-bottom: 22px;
}

.form-field label {
    display: block;
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #B7AF98;
    margin-bottom: 10px;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(222, 195, 133, .35);
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 16px;
    padding: 10px 2px;
    transition: border-color .3s ease;
}

.form-field select option {
    color: #111;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--gold-light);
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field textarea {
    resize: vertical;
    min-height: 90px;
}

.form-note {
    margin-top: 8px;
    font-size: 13px;
    color: #8f8a78;
    display: none;
}

.form-note.show {
    display: block;
    color: var(--gold-light);
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    background: #191F14;
    color: #B7AF98;
    padding: 60px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(222, 195, 133, .12);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: .1em;
    color: var(--cream);
}

.footer-brand img {
    height: 34px;
    width: 34px;
    border-radius: 50%;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 13px;
    letter-spacing: .08em;
}

.footer-nav a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 26px;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 10px;
}


/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */

.wa-float {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 400;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, .5);
    animation: waPulse 2.6s ease-in-out infinite;
}

.wa-float svg {
    width: 30px;
    height: 30px;
}

@keyframes waPulse {
    0%,
    100% {
        box-shadow: 0 10px 30px -8px rgba(37, 211, 102, .6);
    }
    50% {
        box-shadow: 0 10px 30px -4px rgba(37, 211, 102, .9), 0 0 0 10px rgba(37, 211, 102, .08);
    }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width:1024px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-item.wide {
        grid-column: span 2;
    }
    .review-card {
        flex: 0 0 calc(50% - 13px);
    }
}

@media (max-width:760px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 78%;
        background: var(--forest-2);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 40px;
        transform: translateX(100%);
        transition: transform .5s var(--ease);
    }
    .nav-links.open {
        transform: translateX(0);
    }
    .nav-links a {
        color: var(--cream);
        font-size: 16px;
    }
    .nav-toggle {
        display: flex;
    }
    .nav-cta {
        display: none;
    }
    .hero-content {
        padding: 150px 24px 100px;
    }
    .hero-tags {
        display: none;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .about-values {
        flex-wrap: wrap;
    }
    .about-values div {
        flex: 0 0 50%;
        border-right: none;
        margin-bottom: 20px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .review-card {
        flex: 0 0 100%;
    }
    .container {
        padding: 0 20px;
    }
    .projects-head {
        align-items: flex-start;
    }
    .scroll-cue {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

.project-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.project-actions .project-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.project-gallery {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    scrollbar-width: none;
}

.project-gallery::-webkit-scrollbar {
    display: none;
}

.project-gallery img {
    min-width: 100%;
    height: 260px;
    object-fit: cover;
    scroll-snap-align: start;
    border-radius: 12px;
}


/*==================================================
RÉALISATIONS
==================================================*/

#anciens-projets {
    padding: 120px 0;
    background: #f8f6f1;
}

.old-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.old-project-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transition: .35s;
}

.old-project-card:hover {
    transform: translateY(-8px);
}

.old-project-card video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.old-project-body {
    padding: 25px;
}

.old-project-body h3 {
    margin-bottom: 8px;
    font-size: 24px;
}

.old-project-body span {
    color: #b58a44;
    display: block;
    margin-bottom: 12px;
}

.old-project-body p {
    color: #666;
    line-height: 1.7;
}