/* ═══════════════════════════════════════
   ZEN GRAVITY — Custom CSS
   Styles that complement Tailwind classes
   ═══════════════════════════════════════ */

/* ── RESET OVERRIDES ── */
html { scroll-behavior: smooth; }
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ── NAVBAR ── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
    padding: 0 3.5rem;
    background: rgba(18, 39, 58, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
    background: rgba(18, 39, 58, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar__logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}
.navbar__logo:hover img { opacity: 0.8; }
.navbar__menu {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    gap: 2rem;
}
.navbar__menu .menu-item a,
.navbar__link {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    transition: color 0.25s ease;
    white-space: nowrap;
    text-decoration: none;
}
.navbar__menu .menu-item a:hover,
.navbar__menu .current-menu-item a,
.navbar__link:hover,
.navbar__link.active { color: var(--gold); }

/* Quick contact icons */
.navbar__quickcontact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.navbar__contact-group {
    display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
}
.navbar__contact-icons { display: flex; gap: 0.3rem; }
.navbar__contact-separator {
    width: 1px; height: 28px;
    background: rgba(188,154,92,0.2);
    align-self: center;
}
.navbar__contact-icon {
    display: flex; align-items: center; justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(188,154,92,0.4);
    color: var(--gold);
    transition: all 0.25s ease;
    text-decoration: none;
}
.navbar__contact-icon:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188,154,92,0.3);
}
.navbar__contact-icon svg {
    width: 13px; height: 13px;
    stroke: currentColor; fill: none; stroke-width: 1.5;
}
.navbar__contact-label {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    line-height: 1;
}

/* Hamburger (mobile) */
.navbar__hamburger {
    display: none;
    background: none; border: none; cursor: pointer; padding: 8px;
}
.navbar__hamburger span {
    display: block; width: 24px; height: 2px;
    background: var(--gold); margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
    position: fixed; inset: 0; z-index: 300;
    background: var(--navy);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__close {
    position: absolute; top: 1.5rem; right: 1.5rem;
    background: none; border: none; cursor: pointer;
    color: var(--gold); font-size: 2rem; line-height: 1;
}
.mobile-menu__nav {
    display: flex; flex-direction: column;
    align-items: center; gap: 2rem;
}
.mobile-menu__nav a,
.mobile-menu__nav .menu-item a {
    font-family: 'baseTypo', sans-serif;
    font-size: 1rem; color: white;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s ease;
    text-decoration: none;
}
.mobile-menu__nav a:hover,
.mobile-menu__nav a.active,
.mobile-menu__nav .current-menu-item a { color: var(--gold); }
.mobile-menu__contacts {
    position: absolute; bottom: 2.5rem;
    left: 50%; transform: translateX(-50%);
    display: flex; align-items: center; gap: 1.5rem;
    white-space: nowrap;
}
.mobile-menu__contact-group {
    display: flex; flex-direction: column;
    align-items: center; gap: 0.4rem;
}
.mobile-menu__contact-icons { display: flex; gap: 0.5rem; }
.mobile-menu__contact-label {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.6rem; letter-spacing: 0.08em;
    text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.mobile-menu__contact-separator {
    width: 1px; height: 36px;
    background: rgba(188,154,92,0.25);
    align-self: center;
}

@media (max-width: 1024px) {
    .navbar__menu, .navbar__right { display: none; }
    .navbar__hamburger { display: block; }
    .navbar { padding: 0 1.5rem; }
}

/* ── HERO ── */
.hero {
    position: relative; height: 100vh;
    min-height: 600px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg-slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center 25%;
    opacity: 0; transform: scale(1.05);
    transition: opacity 1.5s ease-in-out, transform 5s ease-out;
}
.hero__bg-slide.active { opacity: 1; transform: scale(1); }
.hero__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(18,39,58,0.0) 0%, rgba(18,39,58,0.05) 5%,
        rgba(18,39,58,0.15) 10%, rgba(18,39,58,0.35) 16%,
        rgba(18,39,58,0.60) 22%, rgba(18,39,58,0.80) 30%,
        rgba(18,39,58,0.85) 40%, rgba(18,39,58,0.85) 70%,
        rgba(18,39,58,0.80) 78%, rgba(18,39,58,0.60) 84%,
        rgba(18,39,58,0.35) 90%, rgba(18,39,58,0.15) 95%,
        rgba(18,39,58,0.0) 100%
    );
}
.hero__content {
    position: absolute; inset: 0; z-index: 10;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 5rem 3.5rem;
}
.hero__logo {
    width: 180px; height: 180px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 6px 30px rgba(0,0,0,0.5));
    animation: heroLogoReveal 1s cubic-bezier(0.16,1,0.3,1) 0.15s forwards,
               gentleFloat 6s ease-in-out 1.2s infinite;
    opacity: 0;
}
@keyframes heroLogoReveal {
    from { opacity: 0; transform: translateY(32px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero__ornament {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 2rem; opacity: 0;
    animation: fadeIn 1s 0.4s forwards;
}
.hero__ornament-line { width: 28px; height: 1px; background: var(--gold); opacity: 0.5; }
.hero__ornament-diamond { width: 5px; height: 5px; background: var(--gold); transform: rotate(45deg); opacity: 0.7; }
.hero__marquee { width: 100%; overflow: hidden; margin-bottom: 2rem; }
.hero__marquee-track { display: flex; animation: marquee 45s linear infinite; }
.hero__marquee-group { display: flex; flex-shrink: 0; white-space: nowrap; }
.hero__marquee-item {
    display: inline-flex; align-items: center; gap: 2rem; padding: 0 2rem;
    font-family: 'titleFont', serif;
    font-size: clamp(1.5rem, 4vw, 3.2rem);
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.06em;
}
.hero__marquee-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
    box-shadow: 0 0 6px rgba(188,154,92,0.4);
}
.hero__concept {
    font-family: 'baseTypo', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    text-align: center;
}
.hero__social { display: flex; gap: 1.5rem; margin-top: 0.5rem; justify-content: center; }
.hero__social-group {
    display: flex; flex-direction: column; align-items: center; gap: 0.4rem;
}
.hero__social-label {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.hero__social-icons { display: flex; gap: 0.5rem; }
.hero__social a {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.5);
}
.hero__social a:hover {
    border-color: var(--gold); color: var(--gold);
    transform: translateY(-2px);
}
.hero__social svg { width: 14px; height: 14px; fill: currentColor; }
.hero__scroll {
    position: absolute; bottom: 1.5rem;
    left: 0; right: 0; z-index: 20;
    display: flex; flex-direction: column;
    align-items: center; pointer-events: none;
}
.hero__scroll-text {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.55rem; letter-spacing: 0.35em;
    text-transform: uppercase; color: rgba(255,255,255,0.35);
    margin-bottom: 0.5rem;
}
.hero__scroll-line {
    width: 1px;
    background: linear-gradient(180deg, rgba(188,154,92,0.6) 0%, transparent 100%);
    animation: scrollPulse 2.8s ease-in-out infinite;
}

/* ── EDITORIAL ── */
.editorial { background: var(--cream); padding: 7rem 0; position: relative; overflow: hidden; }
.editorial__inner {
    max-width: 1300px; margin: 0 auto; padding: 0 3.5rem;
    display: flex; align-items: center; gap: 5rem;
}
.editorial--reverse .editorial__inner { flex-direction: row-reverse; }
.editorial__text { flex: 0 0 42%; position: relative; z-index: 2; }
.editorial__plume {
    position: absolute; top: -1.5rem; left: 0;
    height: 3rem; opacity: 0.12; pointer-events: none;
}
.editorial--reverse .editorial__plume { left: auto; right: 0; transform: scaleX(-1); }
.editorial__subtitle {
    font-family: 'baseTypo', sans-serif; font-size: 1rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
}
.editorial__tagline {
    font-family: 'scriptFont', cursive; font-size: 1.3rem;
    color: var(--gold); margin-bottom: 1.2rem; line-height: 1.5;
}
.editorial__title {
    font-family: 'titleFont', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700; color: var(--navy);
    line-height: 1.2; margin-bottom: 1.2rem;
}
.editorial__separator {
    width: 40px; height: 2px;
    background: var(--gold); margin-bottom: 1.8rem;
    transform-origin: left;
}
.editorial__body {
    font-size: 0.92rem; line-height: 1.9;
    color: var(--text-body); margin-bottom: 2rem;
}
.editorial__body strong { color: var(--gold); font-weight: 600; }
.editorial__cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'baseTypo', sans-serif; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: white; background: var(--gold);
    padding: 1rem 2.2rem; transition: all 0.3s ease;
    text-decoration: none;
}
.editorial__cta:hover { background: var(--navy); letter-spacing: 0.25em; }
.editorial__cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.editorial__cta:hover svg { transform: translateX(3px); }
.editorial__images { flex: 1; position: relative; }
.editorial__image-single { position: relative; }
.editorial__image-single img { width: 100%; height: 600px; object-fit: cover; }
.editorial__image-single::before,
.editorial__image-single::after {
    content: ''; position: absolute;
    width: 60px; height: 60px;
    pointer-events: none; z-index: 2;
}
.editorial__image-single::before { top: -8px; right: -8px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.editorial__image-single::after { bottom: -8px; left: -8px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.editorial__image-duo { display: flex; gap: 1rem; align-items: flex-start; position: relative; }
.editorial__image-duo img { width: calc(50% - 0.5rem); height: 520px; object-fit: cover; position: relative; }
.editorial__image-duo::before,
.editorial__image-duo::after {
    content: ''; position: absolute;
    width: 60px; height: 60px;
    pointer-events: none; z-index: 2;
}
.editorial__image-duo::before { bottom: calc(3rem - 8px); left: -8px; border-bottom: 1px solid var(--gold); border-left: 1px solid var(--gold); }
.editorial__image-duo::after { top: calc(3rem - 8px); right: -8px; border-top: 1px solid var(--gold); border-right: 1px solid var(--gold); }
.editorial__image-duo img:nth-child(2) { margin-top: 3rem; }
.editorial__image-duo--landscape { flex-direction: column; align-items: flex-end; gap: 1.5rem; }
.editorial__image-duo--landscape img { width: 85% !important; height: 280px !important; object-fit: cover; }
.editorial__image-duo--landscape img:first-child { align-self: flex-end; }
.editorial__image-duo--landscape img:nth-child(2) { margin-top: 0 !important; align-self: flex-start; }
.editorial__keyword {
    position: absolute; bottom: -0.5rem; right: 0;
    font-family: 'scriptFont', cursive; font-size: 4rem;
    color: var(--gold); opacity: 0.04;
    white-space: nowrap; pointer-events: none; user-select: none;
}
.editorial--reverse .editorial__keyword { right: auto; left: 0; }

/* Editorial Accent block */
.editorial__accent {
    margin-top: 2.5rem; padding: 2.5rem 3rem;
    background: var(--navy); position: relative; text-align: center;
}
.editorial__accent::before {
    content: ''; position: absolute; inset: 6px;
    border: 1px solid rgba(188,154,92,0.2); pointer-events: none;
}
.editorial__accent p {
    font-family: 'scriptFont', cursive; font-size: 1.8rem;
    line-height: 1.6; color: rgba(255,255,255,0.9);
}
.editorial__accent strong {
    font-family: 'baseTypo', sans-serif; font-style: normal;
    font-size: 0.8rem; letter-spacing: 0.35em;
    text-transform: uppercase; color: var(--gold);
    display: block; margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
    .editorial__inner { flex-direction: column !important; gap: 3rem; padding: 0 2rem; }
    .editorial__text { flex: none; }
    .editorial__image-duo img { height: 350px; }
    .editorial__image-single img { height: 400px; }
}
@media (max-width: 480px) {
    .editorial { padding: 4rem 0; }
    .editorial__image-duo { flex-direction: column; }
    .editorial__image-duo img { width: 100% !important; height: 280px; }
    .editorial__image-duo img:nth-child(2) { margin-top: 0; }
}

/* ── CITATION ── */
.citation { background: var(--cream); padding: 4rem 0 2rem; }
.citation__inner {
    max-width: 1300px; margin: 0 auto; padding: 0 3.5rem 3rem;
    text-align: center;
    border-bottom: 1px solid rgba(188,154,92,0.15);
}
.citation__mark {
    display: block; font-family: 'titleFont', serif;
    font-size: 5rem; line-height: 0.5;
    color: var(--gold); opacity: 0.15; margin-bottom: 1rem;
}
.citation__text {
    display: block; font-family: 'decorFont', cursive;
    font-size: clamp(1.6rem, 3.2vw, 2.6rem);
    color: var(--navy); line-height: 1.6;
}
.citation__line {
    display: block; width: 50px; height: 2px;
    background: var(--gold); opacity: 0.35;
    margin: 1.5rem auto 0;
}

/* ── IMMERSIVE (dark section) ── */
.immersive { position: relative; background: var(--navy); padding: 8rem 3.5rem; overflow: hidden; }
.immersive__particles {
    position: absolute; top: 0; bottom: 0; width: 40%;
    opacity: 0.20; pointer-events: none;
    background-size: cover; background-repeat: no-repeat;
}
.immersive__particles--left { left: 0; background-position: left center; }
.immersive__particles--right { right: 0; transform: scaleX(-1); background-position: left center; }
.immersive__content {
    position: relative; z-index: 2;
    max-width: 1300px; margin: 0 auto; padding: 0 3.5rem; text-align: center;
}
.immersive__line { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 3rem; }
.immersive__line:last-of-type { margin-bottom: 0; margin-top: 3rem; }
.immersive__line span:nth-child(1),
.immersive__line span:nth-child(3) { flex: 1; max-width: 80px; height: 1px; background: var(--gold); opacity: 0.2; }
.immersive__line span:nth-child(2) { width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); opacity: 0.3; }
.immersive__subtitle {
    font-family: 'baseTypo', sans-serif; font-size: 1rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.2rem;
}
.immersive__title {
    font-family: 'titleFont', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700; color: white; line-height: 1.25; margin-bottom: 1rem;
}
.immersive__separator { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 2rem; }
.immersive__text { font-size: 0.95rem; line-height: 2; color: rgba(255,255,255,0.85); }
.immersive__text strong { color: var(--gold); font-weight: 600; }
.immersive__pills {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.65rem;
    list-style: none; margin: 2.5rem 0 0;
}
.immersive__pills li {
    display: inline-flex; align-items: center; padding: 0.55rem 1.5rem;
    border: 1px solid rgba(188,154,92,0.25); border-radius: 9999px;
    font-family: 'baseTypo', sans-serif; font-size: 0.72rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: rgba(255,255,255,0.8);
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.immersive__pills li:hover {
    border-color: var(--gold);
    background: rgba(188,154,92,0.08);
    color: white; transform: translateY(-2px);
}
.immersive__cta {
    display: inline-flex; align-items: center; gap: 0.5rem;
    margin-top: 2.5rem; font-family: 'baseTypo', sans-serif;
    font-size: 0.7rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: white; background: var(--gold);
    padding: 1rem 2.2rem; transition: all 0.3s ease;
    text-decoration: none;
}
.immersive__cta:hover { background: var(--steel); }

/* ── TEAM ── */
.team { background: var(--cream); padding: 7rem 3.5rem; }
.team__header { text-align: center; max-width: 960px; margin: 0 auto 4rem; padding: 0 3.5rem; }
.team__subtitle { font-family: 'baseTypo', sans-serif; font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.team__title { font-family: 'titleFont', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
.team__separator { width: 40px; height: 2px; background: var(--gold); margin: 1.2rem auto 0; }
.team__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; max-width: 1300px; margin: 0 auto; padding: 0 3.5rem; }
.team__card { transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.team__card:hover { transform: translateY(-4px); }
.team__card-name { font-family: 'baseTypo', sans-serif; font-size: 1.1rem; font-weight: 400; color: var(--navy); text-align: center; text-transform: uppercase; letter-spacing: 0.3em; margin-bottom: 0.6rem; }
.team__card-name-line { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 2rem; }
.team__card-name-line span:nth-child(1),
.team__card-name-line span:nth-child(3) { width: 30px; height: 1px; background: var(--gold); opacity: 0.4; }
.team__card-name-line span:nth-child(2) { width: 5px; height: 5px; border: 1px solid var(--gold); transform: rotate(45deg); opacity: 0.5; }
.team__card-images { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 2rem; }
.team__img-wrap { position: relative; overflow: visible; }
.team__img-wrap::before,
.team__img-wrap::after { content: ''; position: absolute; width: 60px; height: 60px; pointer-events: none; z-index: 2; }
.team__card-images .team__img-wrap:first-child::before { display: none; }
.team__card-images .team__img-wrap:first-child::after { bottom: -8px; left: -8px; border-bottom: 1px solid var(--navy); border-left: 1px solid var(--navy); }
.team__card-images .team__img-wrap:nth-child(2)::before { top: -8px; right: -8px; border-top: 1px solid var(--navy); border-right: 1px solid var(--navy); }
.team__card-images .team__img-wrap:nth-child(2)::after { display: none; }
.team__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.team__card:hover .team__img-wrap img { transform: scale(1.03); }
.team__card-images .team__img-wrap:first-child { width: 45%; height: 320px; }
.team__card-images .team__img-wrap:nth-child(2) { width: 55%; height: 320px; margin-top: 3rem; }
.team__card-text { font-size: 0.88rem; line-height: 1.85; color: var(--text-body); margin-bottom: 1.8rem; }
.team__card-text strong { color: var(--gold); font-weight: 600; }
.team__card-cta { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'baseTypo', sans-serif; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); transition: letter-spacing 0.3s ease; text-decoration: none; }
.team__card:hover .team__card-cta { letter-spacing: 0.28em; }
.team__card-cta svg { width: 12px; height: 12px; }
@media (max-width: 1024px) { .team__grid { grid-template-columns: 1fr; max-width: 700px; } }

/* ── SERVICES ── */
.services { background: var(--cream); padding: 7rem 3.5rem; }
.services__header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.services__subtitle { font-family: 'baseTypo', sans-serif; font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.services__title { font-family: 'titleFont', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; color: var(--navy); line-height: 1.2; }
.services__separator { width: 40px; height: 2px; background: var(--gold); margin: 1.2rem auto 0; }
.services__intro { font-size: 0.92rem; line-height: 1.7; color: var(--text-body); margin-top: 1.2rem; max-width: 650px; margin-left: auto; margin-right: auto; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; max-width: 1300px; margin: 0 auto; padding: 0 3.5rem; }
.services__grid--duo { grid-template-columns: repeat(2, 1fr) !important; max-width: 1000px; }
.services__card { display: block; transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); text-decoration: none; }
.services__card:hover { transform: translateY(-6px); }
.services__card-image { position: relative; overflow: hidden; margin-bottom: 1.5rem; }
.services__card-image img { width: 100%; height: 420px; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.services__card:hover .services__card-image img { transform: scale(1.04); }
.services__card-image::after { content: ''; position: absolute; inset: 0; background: rgba(18,39,58,0.08); opacity: 0; transition: opacity 0.5s ease; }
.services__card:hover .services__card-image::after { opacity: 1; }
.services__card-title { font-family: 'titleFont', serif; font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.services__card-desc { font-size: 0.85rem; line-height: 1.7; color: var(--text-body); opacity: 0.7; }
.services__card-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 0.8rem; font-family: 'baseTypo', sans-serif; font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); transition: letter-spacing 0.3s ease; }
.services__card:hover .services__card-link { letter-spacing: 0.28em; }
.services__card-link svg { width: 12px; height: 12px; }
@media (max-width: 768px) { .services__grid { grid-template-columns: 1fr; } }

/* ── GALLERY ── */
.gallery { background: var(--navy); padding: 6rem 3.5rem; position: relative; overflow: hidden; }
.gallery__header { text-align: center; margin-bottom: 3.5rem; }
.gallery__title { font-family: 'titleFont', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: white; }
.gallery__separator { width: 40px; height: 2px; background: var(--gold); margin: 1rem auto 0; }
.gallery__text-cols {
    display: flex; gap: 4rem;
    max-width: 1300px; margin: 0 auto 4rem;
    padding: 0 3.5rem; position: relative; z-index: 2;
}
.gallery__text-col {
    flex: 1; font-size: 0.9rem; line-height: 1.9;
    color: rgba(255,255,255,0.8);
}
.gallery__text-col p { color: rgba(255,255,255,0.8); }
.gallery__text-col strong { color: var(--gold); font-weight: 600; }
@media (max-width: 768px) {
    .gallery__text-cols { flex-direction: column; gap: 0; }
}
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; max-width: 1300px; margin: 0 auto; padding: 0 3.5rem; position: relative; z-index: 2; }
.gallery__item { overflow: hidden; cursor: pointer; }
.gallery__item img { width: 100%; height: 350px; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--tall img { height: 100%; min-height: 714px; }
@media (max-width: 768px) { .gallery__grid { grid-template-columns: repeat(2, 1fr); } .gallery__item--tall img { min-height: 350px; } }

/* ── REVIEWS ── */
.reviews { background: var(--navy); padding: 6rem 3.5rem; text-align: center; }
.reviews__subtitle { font-family: 'baseTypo', sans-serif; font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.reviews__title { font-family: 'titleFont', serif; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 700; color: white; margin-bottom: 3rem; }
.reviews__cards { display: flex; gap: 2rem; max-width: 1300px; margin: 0 auto; padding: 0 3.5rem; justify-content: center; }
.reviews__card { flex: 1; max-width: 340px; padding: 2.5rem 2rem; border: 1px solid rgba(188,154,92,0.12); text-align: center; }
.reviews__stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1.2rem; }
.reviews__quote { font-family: 'titleFont', serif; font-size: 0.95rem; font-style: italic; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 1.2rem; }
.reviews__name { font-family: 'baseTypo', sans-serif; font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
@media (max-width: 768px) { .reviews__cards { flex-direction: column; align-items: center; } }

/* ── PAGE HEADER ── */
.page-header-zen {
    position: relative; min-height: 50vh;
    display: flex; align-items: center; justify-content: center;
    background: var(--navy); overflow: hidden;
    padding: 8rem 3.5rem 5rem; text-align: center;
}
.page-header-zen__bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.15;
}
.page-header-zen__content { position: relative; z-index: 2; max-width: 800px; }
.page-header-zen__subtitle {
    font-family: 'baseTypo', sans-serif; font-size: 1rem;
    letter-spacing: 0.3em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1rem;
}
.page-header-zen__title {
    font-family: 'titleFont', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700; color: white; line-height: 1.2;
    margin-bottom: 1rem;
}
.page-header-zen__separator { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 1.5rem; }
.page-header-zen__text {
    font-size: 0.92rem; line-height: 1.9;
    color: rgba(255,255,255,0.7); max-width: 600px;
    margin: 0 auto;
}

/* ── PRICING SECTIONS ── */
.pricing-section { padding: 7rem 3.5rem; }
.pricing-section--navy { background: var(--navy); }
.pricing-section--cream { background: var(--cream); }
.pricing-section__header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.pricing-section__subtitle { font-family: 'baseTypo', sans-serif; font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem; }
.pricing-section__title { font-family: 'titleFont', serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; margin-bottom: 1rem; }
.pricing-section--navy .pricing-section__title { color: white; }
.pricing-section--cream .pricing-section__title { color: var(--navy); }
.pricing-section__separator { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 1.5rem; }
.pricing-section__text { font-size: 0.92rem; line-height: 1.8; }
.pricing-section--navy .pricing-section__text { color: rgba(255,255,255,0.7); }
.pricing-section--cream .pricing-section__text { color: var(--text-body); }

/* Pricing cards */
.pricing-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; max-width: 1300px; margin: 0 auto; }
.pricing-card {
    padding: 2.5rem 2rem; border: 1px solid rgba(188,154,92,0.15);
    transition: transform 0.4s ease, border-color 0.4s ease;
}
.pricing-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.pricing-card__name { font-family: 'titleFont', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.pricing-section--navy .pricing-card__name { color: white; }
.pricing-section--cream .pricing-card__name { color: var(--navy); }
.pricing-card__duration { font-family: 'baseTypo', sans-serif; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.pricing-card__desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }
.pricing-section--navy .pricing-card__desc { color: rgba(255,255,255,0.6); }
.pricing-section--cream .pricing-card__desc { color: var(--text-body); }
.pricing-card__price { font-family: 'titleFont', serif; font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.pricing-card__price small { font-size: 0.7rem; font-weight: 400; opacity: 0.7; }

/* ── FOOTER ── */
.site-footer { position: relative; background: var(--navy); overflow: hidden; text-align: center; }
.site-footer__particles {
    position: absolute; bottom: -700px; left: 50%;
    width: 100%; height: auto; opacity: 0.2;
    pointer-events: none;
    transform: translateX(-50%) rotate(-90deg);
    transform-origin: center;
}
.footer-menu {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: 1.5rem 2.5rem; padding: 4rem 3.5rem 2rem;
    max-width: 1000px; margin: 0 auto;
}
.footer-menu a,
.footer-menu .menu-item a {
    font-family: 'titleFont', serif; font-size: 1rem;
    color: rgba(255,255,255,0.7); letter-spacing: 0.03em;
    transition: color 0.25s ease; text-decoration: none;
}
.footer-menu a:hover,
.footer-menu .menu-item a:hover { color: var(--gold); }
.footer-separator { width: 50px; height: 1px; background: var(--gold); opacity: 0.2; margin: 0 auto; }
.footer-locations { display: flex; justify-content: center; gap: 0; max-width: 1200px; margin: 0 auto; padding: 3rem 2rem 2rem; }
.footer-locations__divider { width: 1px; background: rgba(188,154,92,0.15); align-self: stretch; margin: 0 2.5rem; }
.footer-location { flex: 1; max-width: 480px; display: flex; flex-direction: column; align-items: center; }
.footer-location__title { font-family: 'titleFont', serif; font-size: 1rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.2rem; font-weight: 400; text-align: center; }
.footer-location__row { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; flex-wrap: wrap; }
.footer-location__item { display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-location__item svg { width: 13px; height: 13px; stroke: var(--gold); fill: none; stroke-width: 1.5; flex-shrink: 0; vertical-align: middle; }
.footer-location__item p,
.footer-location__item a { font-size: 0.78rem; line-height: 1; color: rgba(255,255,255,0.6); text-decoration: none; margin: 0 !important; padding: 0 !important; }
.footer-location__item a { transition: color 0.25s ease; }
.footer-location__item a:hover { color: var(--gold); }
.footer-location__social { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.8rem; }
.footer-location__social a { width: 30px; height: 30px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease, transform 0.25s ease; }
.footer-location__social a:hover { background: var(--steel); transform: translateY(-2px); }
.footer-location__social svg { width: 13px; height: 13px; fill: white; stroke: none; }
.footer-email { display: flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 1.5rem 0 0; }
.footer-email svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.footer-email a { font-size: 0.78rem; color: rgba(255,255,255,0.6); letter-spacing: 0.03em; transition: color 0.25s ease; text-decoration: none; }
.footer-email a:hover { color: var(--gold); }
.footer-bottom { padding: 1.5rem 2rem; border-top: 1px solid rgba(188,154,92,0.08); margin-top: 1.5rem; }
.footer-bottom__text { font-family: 'baseTypo', sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; color: rgba(255,255,255,0.3); }
.footer-bottom__text a { color: rgba(255,255,255,0.4); transition: color 0.25s ease; }
.footer-bottom__text a:hover { color: var(--gold); }
@media (max-width: 900px) {
    .footer-locations { flex-direction: column; gap: 2rem; align-items: center; }
    .footer-locations__divider { width: 50px; height: 1px; margin: 0; align-self: center; }
    .footer-location { max-width: 100%; }
}
@media (max-width: 560px) { .footer-location__row { flex-direction: column; gap: 0.6rem; } }

/* ── CONTACT FORM ── */
.zen-form__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 700px; margin: 0 auto; }
.zen-form__field--full { grid-column: span 2; }
.zen-form__label {
    display: block; font-family: 'baseTypo', sans-serif;
    font-size: 0.72rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.5rem;
}
.zen-form__input,
.zen-form__select,
.zen-form__textarea {
    width: 100%; padding: 1rem 1.2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(188,154,92,0.15);
    color: white; font-family: 'baseTypo', sans-serif;
    font-size: 0.88rem; transition: border-color 0.3s ease;
    outline: none;
}
.zen-form__input:focus,
.zen-form__select:focus,
.zen-form__textarea:focus { border-color: var(--gold); }
.zen-form__textarea { min-height: 150px; resize: vertical; }
.zen-form__submit {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'baseTypo', sans-serif; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: white; background: var(--gold);
    padding: 1rem 2.5rem; border: none; cursor: pointer;
    transition: all 0.3s ease; margin-top: 1rem;
}
.zen-form__submit:hover { background: var(--steel); }
@media (max-width: 600px) {
    .zen-form__grid { grid-template-columns: 1fr; }
    .zen-form__field--full { grid-column: span 1; }
}

/* ── TOASTERS ── */
.zen-toast { padding: 1.5rem 2rem; border-radius: 4px; position: relative; min-width: 300px; max-width: 500px; }
.zen-toast--error { background: #2d1b1b; border: 1px solid rgba(220,80,80,0.3); color: #e8a0a0; }
.zen-toast--success { background: #1b2d1b; border: 1px solid rgba(80,180,80,0.3); color: #a0e8a0; }
.zen-toast__title { font-family: 'titleFont', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.zen-toast__body { font-size: 0.82rem; line-height: 1.6; }
.zen-toast__body p { margin: 0.3rem 0; }
.zen-toast__close { position: absolute; top: 0.5rem; right: 0.8rem; background: none; border: none; color: inherit; font-size: 1.4rem; cursor: pointer; line-height: 1; }
.hide { display: none !important; }
.show { display: block !important; }

/* ── MAP ── */
.zen-map iframe { width: 100%; height: 350px; border: none; filter: grayscale(0.3); }

/* ── LOCATION CARDS ── */
.zen-locations-grid { display: flex; gap: 3rem; max-width: 1300px; margin: 0 auto; }
.zen-location-card { flex: 1; border: 1px solid rgba(188,154,92,0.15); border-radius: 4px; overflow: hidden; background: white; }
.zen-location-card__map iframe { width: 100%; height: 250px; border: none; display: block; }
.zen-location-card__body { padding: 2rem 2.5rem; text-align: center; }
.zen-location-card__name { font-family: 'titleFont', serif; font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.zen-location-card__address { font-size: 0.85rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1rem; }
.zen-location-card__desc { font-size: 0.82rem; color: var(--text-body); margin-bottom: 1.5rem; }
.zen-location-card__social { display: flex; justify-content: center; gap: 0.6rem; margin-bottom: 1.5rem; }
.zen-location-card__social a { width: 36px; height: 36px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; transition: background 0.25s ease, transform 0.25s ease; }
.zen-location-card__social a:hover { background: var(--steel); transform: translateY(-2px); }
.zen-location-card__social svg { width: 14px; height: 14px; fill: white; }
.zen-location-card__cta { display: flex; gap: 0.8rem; }
.zen-location-card__btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: 'baseTypo', sans-serif; font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; padding: 1rem 1.5rem; transition: all 0.3s ease; text-decoration: none; }
.zen-location-card__btn--primary { color: white; background: var(--gold); }
.zen-location-card__btn--primary:hover { background: var(--steel); }
.zen-location-card__btn--outline { color: var(--gold); border: 1px solid var(--gold); background: transparent; }
.zen-location-card__btn--outline:hover { background: var(--gold); color: white; }
@media (max-width: 900px) { .zen-locations-grid { flex-direction: column; gap: 2rem; } }

/* ── ANIMATIONS ── */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%, 100% { height: 32px; opacity: 0.3; } 50% { height: 52px; opacity: 0.7; } }
@keyframes gentleFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.reveal { opacity: 0; animation: fadeInUp 1s cubic-bezier(0.16,1,0.3,1) forwards; }
.r-d1 { animation-delay: 0.15s; } .r-d2 { animation-delay: 0.5s; }
.r-d3 { animation-delay: 0.85s; } .r-d4 { animation-delay: 1.2s; }

[data-reveal] {
    opacity: 0; transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

/* ── EDITORIAL BREAK (used in contact page) ── */
.editorial-break { padding: 7rem 3.5rem; position: relative; overflow: hidden; }
.editorial-break--navy { background: var(--navy); }
.editorial-break__inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; gap: 5rem; }
.editorial-break__text { flex: 0 0 50%; }
.editorial-break__images { flex: 1; }
@media (max-width: 1024px) {
    .editorial-break__inner { flex-direction: column; gap: 3rem; }
    .editorial-break__text { flex: none; }
}

/* ═══════════════════════════════════════
   CONCEPT TARGETS (Le Principe & Cibles)
   ═══════════════════════════════════════ */
.concept-targets {
    background: var(--navy);
    padding: 6rem 3.5rem;
    position: relative;
    overflow: hidden;
}
.concept-targets__inner {
    max-width: 1500px;
    margin: 0 auto;
}
.concept-targets__header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.concept-targets__subtitle {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.concept-targets__title {
    font-family: 'titleTypo', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.25;
}
.concept-targets__separator {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 0;
}
.concept-targets__layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}
.concept-targets__text {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
}
.concept-targets__text strong {
    color: var(--gold);
    font-weight: 600;
}
.concept-targets__text p + p {
    margin-top: 1rem;
}
.concept-targets__divider {
    width: 1px;
    background: rgba(188,154,92,0.15);
    flex-shrink: 0;
    align-self: stretch;
}
.concept-targets__cards {
    flex: 0 0 38%;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}
.concept-targets__cards-title {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    margin-bottom: 0.5rem;
}
.concept-targets__card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.2rem 1.4rem;
    border: 1px solid rgba(188,154,92,0.12);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}
.concept-targets__card:hover {
    border-color: rgba(188,154,92,0.35);
}
.concept-targets__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(188,154,92,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}
.concept-targets__icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}
.concept-targets__card-title {
    font-family: 'titleTypo', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.3rem;
}
.concept-targets__card-desc {
    font-size: 0.78rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

@media (max-width: 1024px) {
    .concept-targets { padding: 4rem 1.2rem; }
    .concept-targets__layout { flex-direction: column; gap: 2rem; }
    .concept-targets__divider { display: none; }
    .concept-targets__cards { flex: none; width: 100%; }
}

/* ═══════════════════════════════════════
   ZEN STEPS (Deroulement seance)
   ═══════════════════════════════════════ */
.zen-steps {
    background: var(--cream);
    padding: 5rem 3.5rem;
}
.zen-steps__inner {
    max-width: 1400px;
    margin: 0 auto;
}
.zen-steps__header {
    text-align: center;
    margin-bottom: 3rem;
}
.zen-steps__subtitle {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.zen-steps__title {
    font-family: 'titleTypo', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}
.zen-steps__separator {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 0;
}
.zen-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.zen-steps__item {
    transition: transform 0.5s ease;
}
.zen-steps__item:hover {
    transform: translateY(-4px);
}
.zen-steps__img-wrap {
    overflow: hidden;
    margin-bottom: 1.2rem;
}
.zen-steps__img-wrap img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.zen-steps__item:hover .zen-steps__img-wrap img {
    transform: scale(1.04);
}
.zen-steps__label {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}
.zen-steps__item-title {
    font-family: 'titleTypo', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0.4rem 0 0.6rem;
}
.zen-steps__item-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: var(--text-body);
}

@media (max-width: 1024px) {
    .zen-steps { padding: 3rem 1.2rem; }
    .zen-steps__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .zen-steps { padding: 2.5rem 1rem; }
    .zen-steps__grid { grid-template-columns: 1fr; }
    .zen-steps__img-wrap img { height: 200px; }
}

/* ═══════════════════════════════════════
   SALON PRICING (Tarifs Salon)
   ═══════════════════════════════════════ */
.salon-pricing {
    background: var(--cream);
    padding: 5rem 3.5rem;
}
.salon-pricing__inner {
    max-width: 1500px;
    margin: 0 auto;
}
.salon-pricing__header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.salon-pricing__subtitle {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.salon-pricing__title {
    font-family: 'titleTypo', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
}
.salon-pricing__separator {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto;
}
.salon-pricing__intro {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-body);
    max-width: 800px;
    margin: 0 auto;
}
.salon-pricing__intro strong { color: var(--gold); font-weight: 600; }

/* Pills */
.salon-pricing__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}
.salon-pricing__pill {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.1rem;
    border: 1px solid rgba(188,154,92,0.25);
    border-radius: 9999px;
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    color: var(--text-body);
    transition: all 0.3s ease;
}
.salon-pricing__pill:hover {
    border-color: var(--gold);
    background: rgba(188,154,92,0.05);
}

/* Layout 2 colonnes */
.salon-pricing__layout {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
    margin-top: 1rem;
}
.salon-pricing__left { flex: 1; }

/* Duo pricing */
.salon-pricing__duo {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}
.salon-pricing__duo-item {
    flex: 1;
    text-align: center;
    padding: 1rem 1.5rem;
    border: 1px solid rgba(188,154,92,0.15);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}
.salon-pricing__duo-item:hover { border-color: var(--gold); }
.salon-pricing__duo-duration {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--steel);
    margin-bottom: 0.3rem;
}
.salon-pricing__duo-price {
    font-family: 'titleTypo', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

/* Notes */
.salon-pricing__notes {
    padding: 1.8rem 2rem;
    background: rgba(188,154,92,0.05);
    border-left: 3px solid var(--gold);
    font-size: 0.82rem;
    line-height: 1.8;
    color: var(--text-body);
}
.salon-pricing__notes strong { color: var(--gold); font-weight: 600; }
.salon-pricing__notes p + p { margin-top: 0.6rem; }

/* Images portrait décalées */
.salon-pricing__images {
    flex: 0 0 45%;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.salon-pricing__img-wrap {
    flex: 1;
}
.salon-pricing__img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.salon-pricing__img-wrap--offset {
    margin-top: 3rem;
}

@media (max-width: 1024px) {
    .salon-pricing { padding: 3rem 1.2rem; }
    .salon-pricing__layout { flex-direction: column; }
    .salon-pricing__images { flex: none; width: 100%; }
    .salon-pricing__img-wrap img { height: 350px; }
    .salon-pricing__duo { flex-wrap: wrap; }
}
@media (max-width: 480px) {
    .salon-pricing { padding: 2.5rem 1rem; }
    .salon-pricing__duo { flex-direction: column; }
    .salon-pricing__notes { padding: 1.2rem; }
    .salon-pricing__img-wrap img { height: 280px; }
}

/* ═══════════════════════════════════════
   ZEN CTA (Appel a l'action)
   ═══════════════════════════════════════ */
.zen-cta {
    background: var(--cream);
    padding: 5rem 3.5rem;
}
.zen-cta__inner {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.zen-cta__subtitle {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.zen-cta__title {
    font-family: 'titleTypo', serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 1rem;
}
.zen-cta__separator {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}
.zen-cta__desc {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 2rem;
}
.zen-cta__desc strong { color: var(--gold); font-weight: 600; }
.zen-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.zen-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'baseTypo', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1.1rem 2.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.zen-cta__btn--primary {
    color: white;
    background: var(--gold);
}
.zen-cta__btn--primary:hover {
    background: #a8873f;
}
.zen-cta__btn--outline {
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold);
}
.zen-cta__btn--outline:hover {
    background: var(--gold);
    color: white;
}

@media (max-width: 480px) {
    .zen-cta { padding: 2.5rem 1rem; }
    .zen-cta__buttons { flex-direction: column; align-items: center; }
}

/* ── Salon Pricing Highlight ── */
.salon-pricing__highlight {
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(188,154,92,0.25);
    border-radius: 4px;
    text-align: center;
}
.salon-pricing__highlight-label {
    font-family: 'baseTypo', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.salon-pricing__highlight-text {
    font-family: 'titleTypo', serif;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1.6;
}

/* ═══════════════════════════════════════
   MANUAL MASSAGES (2 colonnes)
   ═══════════════════════════════════════ */
.manual-massages--navy { background: var(--navy); }
.manual-massages--cream { background: var(--cream); }
.manual-massages--navy,
.manual-massages--cream { padding: 5rem 3.5rem; }

.manual-massages__inner { max-width: 1500px; margin: 0 auto; }
.manual-massages__header { text-align: center; margin-bottom: 3rem; }
.manual-massages__subtitle {
    font-family: 'baseTypo', sans-serif; font-size: 0.9rem;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.manual-massages__title {
    font-family: 'titleTypo', serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; line-height: 1.25;
}
.manual-massages--navy .manual-massages__title { color: white; }
.manual-massages--cream .manual-massages__title { color: var(--navy); }
.manual-massages__separator { width: 40px; height: 2px; background: var(--gold); margin: 1rem auto 0; }

.manual-massages__columns { display: flex; gap: 3rem; align-items: flex-start; }
.manual-massages__col { flex: 1; }
.manual-massages__divider {
    width: 1px; background: rgba(188,154,92,0.15); flex-shrink: 0; align-self: stretch;
}
.manual-massages__col-title {
    font-family: 'titleTypo', serif; font-size: 1.4rem; font-weight: 700;
    color: var(--gold); margin-bottom: 0.5rem;
}
.manual-massages__col-intro {
    font-size: 0.82rem; line-height: 1.7; margin-bottom: 1.5rem;
}
.manual-massages--navy .manual-massages__col-intro { color: rgba(255,255,255,0.55); }
.manual-massages--cream .manual-massages__col-intro { color: var(--text-body); }
.manual-massages__col-intro strong { color: var(--gold); font-weight: 600; }

/* Cards */
.manual-massages__card {
    padding: 2rem 2.2rem; margin-bottom: 1rem;
    border: 1px solid rgba(188,154,92,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.manual-massages--navy .manual-massages__card {
    background: rgba(255,255,255,0.04); border-color: rgba(188,154,92,0.15);
}
.manual-massages--cream .manual-massages__card {
    background: white; border-color: rgba(188,154,92,0.1);
}
.manual-massages__card:hover {
    transform: translateY(-3px); box-shadow: 0 8px 30px rgba(18,39,58,0.06);
}
.manual-massages__card-name {
    font-family: 'titleTypo', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.4rem;
}
.manual-massages--navy .manual-massages__card-name { color: white; }
.manual-massages--cream .manual-massages__card-name { color: var(--navy); }
.manual-massages__card-desc {
    font-size: 0.82rem; line-height: 1.7; margin-bottom: 1rem;
}
.manual-massages--navy .manual-massages__card-desc { color: rgba(255,255,255,0.6); }
.manual-massages--cream .manual-massages__card-desc { color: var(--text-body); }
.manual-massages__card-desc strong { color: var(--gold); font-weight: 600; }

/* Meta inline (1 seul prix) */
.manual-massages__meta {
    display: flex; align-items: baseline; gap: 1rem;
}
.manual-massages__meta-duration {
    font-family: 'titleTypo', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold);
}
.manual-massages__meta-price { font-size: 0.75rem; }
.manual-massages--navy .manual-massages__meta-price { color: var(--steel); }
.manual-massages--cream .manual-massages__meta-price { color: var(--steel); }

/* Variants (plusieurs prix) */
.manual-massages__variants {
    display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.8rem;
}
.manual-massages__variant {
    flex: 1; min-width: 100px; text-align: center;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(188,154,92,0.15); border-radius: 4px;
    transition: border-color 0.3s ease;
}
.manual-massages__variant:hover { border-color: var(--gold); }
.manual-massages__variant-label {
    font-size: 0.6rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.1rem;
}
.manual-massages--navy .manual-massages__variant-label { color: var(--steel); }
.manual-massages--cream .manual-massages__variant-label { color: var(--steel); }
.manual-massages__variant-duration {
    font-family: 'titleTypo', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold);
}
.manual-massages__variant-price {
    font-size: 0.65rem; margin-top: 0.1rem;
}
.manual-massages--navy .manual-massages__variant-price { color: var(--steel); }
.manual-massages--cream .manual-massages__variant-price { color: var(--steel); }

@media (max-width: 1024px) {
    .manual-massages--navy, .manual-massages--cream { padding: 3rem 1.2rem; }
    .manual-massages__columns { flex-direction: column; }
    .manual-massages__divider { display: none; }
}
@media (max-width: 480px) {
    .manual-massages--navy, .manual-massages--cream { padding: 2.5rem 1rem; }
    .manual-massages__card { padding: 1.5rem; }
    .manual-massages__variants { flex-direction: column; }
}

/* ═══════════════════════════════════════
   ZEN FORMULAS (Combos / Rituels)
   ═══════════════════════════════════════ */
.zen-formulas--cream { background: var(--cream); }
.zen-formulas--navy { background: var(--navy); position: relative; overflow: hidden; }
.zen-formulas--cream, .zen-formulas--navy { padding: 5rem 3.5rem; }

.zen-formulas__inner { max-width: 1500px; margin: 0 auto; }
.zen-formulas__header { text-align: center; margin-bottom: 3.5rem; }
.zen-formulas__subtitle {
    font-family: 'baseTypo', sans-serif; font-size: 0.9rem;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.zen-formulas__title {
    font-family: 'titleTypo', serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; line-height: 1.25;
}
.zen-formulas--cream .zen-formulas__title { color: var(--navy); }
.zen-formulas--navy .zen-formulas__title { color: white; }
.zen-formulas__separator { width: 40px; height: 2px; background: var(--gold); margin: 1rem auto; }
.zen-formulas__intro {
    font-size: 0.9rem; line-height: 1.8; max-width: 800px; margin: 0 auto;
}
.zen-formulas--cream .zen-formulas__intro { color: var(--text-body); }
.zen-formulas--navy .zen-formulas__intro { color: rgba(255,255,255,0.7); }
.zen-formulas__intro strong { color: var(--gold); font-weight: 600; }

/* Grid */
.zen-formulas__grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}

/* Cards */
.zen-formulas__card {
    padding: 1.8rem 2rem;
    border: 1px solid rgba(188,154,92,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.zen-formulas--cream .zen-formulas__card { background: white; }
.zen-formulas--navy .zen-formulas__card { background: rgba(255,255,255,0.03); }
.zen-formulas__card:hover {
    transform: translateY(-3px); box-shadow: 0 8px 30px rgba(18,39,58,0.06);
}
.zen-formulas__card-header {
    display: flex; align-items: baseline; justify-content: space-between;
    margin-bottom: 0.8rem; gap: 1rem;
}
.zen-formulas__card-name {
    font-family: 'titleTypo', serif; font-size: 1.1rem; font-weight: 700;
}
.zen-formulas--cream .zen-formulas__card-name { color: var(--navy); }
.zen-formulas--navy .zen-formulas__card-name { color: white; }
.zen-formulas__card-tag {
    font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold); white-space: nowrap;
    border: 1px solid rgba(188,154,92,0.3); padding: 0.25rem 0.7rem; border-radius: 9999px;
}

/* Steps */
ul.zen-formulas__steps { list-style: none; margin: 0 0 1rem 0; padding: 0 !important; padding-left: 0 !important; }
.zen-formulas__step {
    display: flex; align-items: flex-start; gap: 0.6rem;
    padding: 0.4rem 0; font-size: 0.8rem; line-height: 1.6;
}
.zen-formulas--cream .zen-formulas__step { color: var(--text-body); }
.zen-formulas--navy .zen-formulas__step { color: rgba(255,255,255,0.65); }
.zen-formulas__step-num {
    flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
    background: rgba(188,154,92,0.1); color: var(--gold);
    font-size: 0.65rem; font-weight: 700;
    display: flex; align-items: center; justify-content: center; margin-top: 2px;
}

/* Meta */
.zen-formulas__card-meta {
    display: flex; align-items: baseline; gap: 1rem;
    padding-top: 0.8rem; border-top: 1px solid rgba(188,154,92,0.1);
}
.zen-formulas__card-duration {
    font-family: 'titleTypo', serif; font-size: 1.35rem; font-weight: 700; color: var(--gold);
}
.zen-formulas__card-price { font-size: 0.75rem; }
.zen-formulas--cream .zen-formulas__card-price { color: var(--steel); }
.zen-formulas--navy .zen-formulas__card-price { color: rgba(255,255,255,0.45); }

@media (max-width: 1024px) {
    .zen-formulas--cream, .zen-formulas--navy { padding: 3rem 1.2rem; }
    .zen-formulas__grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .zen-formulas--cream, .zen-formulas--navy { padding: 2.5rem 1rem; }
}

/* ═══════════════════════════════════════
   ZEN BOOKING (Reservation cards salons)
   ═══════════════════════════════════════ */
.zen-booking { background: var(--cream); padding: 6rem 3.5rem; }
.zen-booking__inner { max-width: 1500px; margin: 0 auto; }
.zen-booking__header { text-align: center; margin-bottom: 1.5rem; }
.zen-booking__subtitle {
    font-family: 'baseTypo', sans-serif; font-size: 0.9rem;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.zen-booking__title {
    font-family: 'titleTypo', serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; color: var(--navy); line-height: 1.25;
}
.zen-booking__separator { width: 40px; height: 2px; background: var(--gold); margin: 1rem auto; }
.zen-booking__intro {
    font-size: 0.9rem; line-height: 1.8; color: var(--text-body); max-width: 800px; margin: 0 auto;
}
.zen-booking__intro strong { color: var(--gold); font-weight: 600; }

.zen-booking__grid {
    display: flex; gap: 3rem; max-width: 1200px; margin: 2rem auto 0;
}
.zen-booking__card {
    flex: 1; text-align: center;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(188,154,92,0.15); border-radius: 4px;
}
.zen-booking__card-name {
    font-family: 'titleTypo', serif; font-size: 1.3rem; font-weight: 700;
    color: var(--navy); margin-bottom: 0.6rem;
}
.zen-booking__card-desc {
    font-size: 0.85rem; line-height: 1.8; color: var(--text-body); margin-bottom: 1.5rem;
}
.zen-booking__card-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.zen-booking__btn {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: 'baseTypo', sans-serif; font-size: 0.75rem; letter-spacing: 0.2em;
    text-transform: uppercase; padding: 1rem 2rem; transition: all 0.3s ease; text-decoration: none;
}
.zen-booking__btn--primary { color: white; background: var(--gold); }
.zen-booking__btn--primary:hover { background: #a8873f; }
.zen-booking__btn--outline { color: var(--gold); border: 1px solid var(--gold); background: transparent; }
.zen-booking__btn--outline:hover { background: var(--gold); color: white; }

@media (max-width: 768px) {
    .zen-booking { padding: 3rem 1.2rem; }
    .zen-booking__grid { flex-direction: column; gap: 1.5rem; }
}

/* ═══════════════════════════════════════
   ZEN GIFT CARDS (Cartes Cadeaux)
   ═══════════════════════════════════════ */
.zen-gift { background: var(--cream); padding: 5rem 3.5rem; }
.zen-gift__inner { max-width: 1300px; margin: 0 auto; }

.zen-gift__layout { display: flex; gap: 4rem; align-items: flex-start; }
.zen-gift__text { flex: 1; }
.zen-gift__subtitle {
    font-family: 'baseTypo', sans-serif; font-size: 0.9rem;
    letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.8rem;
}
.zen-gift__title {
    font-family: 'titleTypo', serif; font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 1rem;
}
.zen-gift__separator { width: 40px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.zen-gift__body { font-size: 0.9rem; line-height: 1.9; color: var(--text-body); }
.zen-gift__body strong { color: var(--gold); font-weight: 600; }
.zen-gift__body p + p { margin-top: 0.8rem; }

/* Encart droite */
.zen-gift__box { flex: 0 0 42%; }
.zen-gift__box-inner {
    padding: 2.5rem; border: 1px solid rgba(188,154,92,0.2); border-radius: 4px;
}
.zen-gift__box-title {
    font-family: 'titleTypo', serif; font-size: 1.2rem; font-weight: 700;
    color: var(--navy); margin-bottom: 1.2rem;
}
.zen-gift__box-intro {
    font-size: 0.82rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1rem;
}
.zen-gift__box-intro strong { color: var(--gold); }
.zen-gift__box-steps { margin-bottom: 1.5rem; }
.zen-gift__box-step {
    display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 1rem;
}
.zen-gift__box-step-num {
    flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
    background: rgba(188,154,92,0.1); display: flex; align-items: center; justify-content: center;
    font-family: 'titleTypo', serif; font-size: 0.75rem; font-weight: 700; color: var(--gold); margin-top: 2px;
}
.zen-gift__box-step p { font-size: 0.82rem; line-height: 1.7; color: var(--text-body); }
.zen-gift__box-btns { display: flex; gap: 0.8rem; }
.zen-gift__box-btn {
    flex: 1; display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; font-family: 'baseTypo', sans-serif; font-size: 0.72rem;
    letter-spacing: 0.15em; text-transform: uppercase; color: white;
    background: var(--gold); padding: 0.9rem 1.5rem; transition: all 0.3s ease; text-decoration: none;
}
.zen-gift__box-btn:hover { background: #a8873f; }

/* Photos */
.zen-gift__images {
    display: flex; gap: 1rem; margin-top: 3rem;
}
.zen-gift__img-wrap { flex: 1; overflow: hidden; }
.zen-gift__img-wrap img {
    width: 100%; aspect-ratio: 1/1; object-fit: cover;
    transition: transform 0.8s ease;
}
.zen-gift__img-wrap:hover img { transform: scale(1.04); }

@media (max-width: 1024px) {
    .zen-gift { padding: 3rem 1.2rem; }
    .zen-gift__layout { flex-direction: column; gap: 2rem; }
    .zen-gift__box { flex: none; width: 100%; }
}
@media (max-width: 480px) {
    .zen-gift { padding: 2.5rem 1rem; }
    .zen-gift__images { flex-direction: column; }
    .zen-gift__box-btns { flex-direction: column; }
}
