/* ═══════════════════════════════════════════════════
   PHÉNIX INK — Main Stylesheet
   Dark Luxe / Tattoo Studio / Touche Féminine
   ═══════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────── */
:root {
    --purple: #A357B9;
    --purple-hover: #C77DDB;
    --purple-glow: rgba(163,87,185,0.3);
    --black: #101010;
    --dark: #0A0A0A;
    --grey-dark: #2B2B2B;
    --grey-mid: #999999;
    --grey-light: #DEDEDE;
    --grey-bg: #F7F7F7;
    --white: #FFFFFF;
    --font-script: 'Pinyon Script', cursive;
    --font-body: 'Montserrat', sans-serif;
    --container: 1200px;
    --container-wide: 1400px;
    --container-sm: 800px;
    --header-h: 100px;
    --transition: 0.3s ease;
}

/* ── Reset ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: var(--font-body); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { color: var(--purple); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--purple-hover); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
::selection { background: var(--purple); color: var(--white); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--grey-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ── Layout ─────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 30px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: var(--container-sm); margin: 0 auto; padding: 0 30px; }
.center { text-align: center; }
.center-btn { text-align: center; margin-top: 40px; }

/* ── Typography ─────────────────────────────── */
.section-label {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--purple);
    margin-bottom: 8px;
}
.section-label.center { text-align: center; }

.section-title-script {
    font-family: var(--font-script);
    font-size: 52px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}
.section-title-script.center { text-align: center; }

.section-desc {
    color: var(--grey-mid);
    font-size: 15px;
    max-width: 600px;
    margin-bottom: 40px;
}
.section-desc.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ── Buttons ────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 16px 40px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 4px 15px var(--purple-glow);
}
.btn-primary:hover {
    background: var(--purple-hover);
    color: var(--white);
    box-shadow: 0 6px 25px var(--purple-glow);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--purple);
}
.btn-outline:hover {
    background: var(--purple);
    color: var(--white);
}

.btn-lg { padding: 18px 50px; font-size: 14px; }
.btn-sm { padding: 10px 24px; font-size: 11px; }
.btn-block { width: 100%; text-align: center; }

/* ═══════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════ */
.phenix-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    background: rgba(16, 16, 16, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-dark);
    z-index: 1000;
    transition: all var(--transition);
}
.header-inner {
    max-width: var(--container-wide);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 30px;
}
.header-logo a, .header-logo .custom-logo-link { display: flex; align-items: center; }
.header-logo img, .header-logo .custom-logo { height: 100px; width: auto; }
.site-title-link { text-decoration: none; }
.site-title-script { font-family: var(--font-script); font-size: 28px; color: var(--white); }

/* Nav */
.header-nav .nav-menu { display: flex; gap: 35px; list-style: none; }
.header-nav .nav-menu li a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--white);
    text-decoration: none;
    position: relative;
    padding: 5px 0;
}
.header-nav .nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--purple);
    transform: scaleX(0);
    transition: transform var(--transition);
}
.header-nav .nav-menu li a:hover::after,
.header-nav .nav-menu li.current-menu-item a::after { transform: scaleX(1); }
.header-nav .nav-menu li a:hover,
.header-nav .nav-menu li.current-menu-item a { color: var(--purple); }

/* Social */
.header-social { display: flex; gap: 12px; }
.header-social a { color: var(--white); transition: color var(--transition); }
.header-social a:hover { color: var(--purple); }

/* Burger */
.header-burger { display: none; background: none; border: none; cursor: pointer; padding: 5px; }
.header-burger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; transition: all var(--transition); }
.header-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header-burger.active span:nth-child(2) { opacity: 0; }
.header-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ═══════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.slider-wrapper { position: absolute; inset: 0; }
.slide {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    animation: kenBurns 20s ease infinite alternate;
}
.slide.active { opacity: 1; }
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}
.slider-overlay {
    position: absolute; inset: 0;
    background: rgba(16,16,16,0.60);
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 20px;
}
.hero-title {
    font-family: var(--font-script);
    font-size: 90px;
    font-weight: 400;
    color: var(--white);
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
    animation: fadeInDown 1s ease;
}
.hero-subtitle {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--grey-light);
    margin-top: 10px;
    animation: fadeInUp 1s ease 0.2s both;
}
.hero-speciality {
    color: var(--purple);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 8px;
    animation: fadeIn 1s ease 0.4s both;
}
.hero-cta { margin-top: 35px; animation: fadeInUp 1s ease 0.6s both; }

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}
.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid var(--grey-mid);
    background: transparent;
    cursor: pointer;
    transition: all var(--transition);
}
.slider-dot.active { background: var(--purple); border-color: var(--purple); }

.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Animations */
@keyframes fadeInDown { from { opacity:0; transform:translateY(-30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

/* ═══════════════════════════════════════════════
   SECTION À PROPOS
   ═══════════════════════════════════════════════ */
.section-about {
    background: var(--black);
    padding: 100px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
    align-items: center;
}
.about-image img {
    width: 100%;
    border: 3px solid var(--purple);
    border-radius: 8px;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}
.about-image img:hover {
    filter: grayscale(0%);
    box-shadow: 0 10px 40px var(--purple-glow);
}
.about-image-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--grey-dark);
    border: 3px solid var(--purple);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}
.about-speciality {
    color: var(--purple);
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 20px;
}
.about-text p { color: var(--grey-light); font-size: 15px; line-height: 1.9; margin-bottom: 15px; }
.about-offer-box {
    margin-top: 25px;
    padding: 25px;
    background: var(--grey-dark);
    border-left: 3px solid var(--purple);
    border-radius: 4px;
}
.offer-title { color: var(--white); font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.about-offer-box ul { padding: 0; }
.about-offer-box li { color: var(--grey-light); font-size: 14px; padding: 6px 0; }

/* ═══════════════════════════════════════════════
   PORTFOLIO PREVIEW (Home)
   ═══════════════════════════════════════════════ */
.section-portfolio-preview {
    background: var(--dark);
    padding: 100px 0 80px;
}
.section-flash-preview {
    background: var(--black);
    padding: 100px 0 80px;
}
.portfolio-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
}
.portfolio-item {
    border-radius: 6px;
    overflow: hidden;
    display: block;
}
.portfolio-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.portfolio-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}
.no-items-msg {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--grey-mid);
    padding: 60px 20px;
    background: var(--grey-dark);
    border-radius: 8px;
    font-size: 14px;
}

/* Flash items */
.flash-item { text-align: center; }
.flash-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform 0.5s ease;
}
.flash-item:hover img { transform: scale(1.03); }

/* Wrapper relatif pour l'overlay sur la home */
.flash-item-home { position: relative; }
.flash-item-img-wrap { position: relative; overflow: hidden; border-radius: 6px; }
.flash-item-img-wrap img { display: block; width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s ease; border-radius: 6px; }
.flash-item-home:hover .flash-item-img-wrap img { transform: scale(1.03); }
.flash-item-img-wrap .flash-status-overlay { border-radius: 6px; font-size: 14px; letter-spacing: 2px; }
.flash-badge {
    display: inline-block;
    margin-top: 10px;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.badge-available    { background: var(--purple); color: var(--white); }
.badge-chosen       { background: #e67e22;       color: var(--white); }
.badge-unavailable,
.badge-reserved     { background: #c0392b;        color: var(--white); }

/* Flash status overlay (sur l'image) */
.flash-status-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase;
}
/* Page flash : overlay dans .flash-img-wrap hors du <a> → cliquable (pointer-events: none) */
.flash-img-wrap { position: relative; overflow: hidden; }
.flash-img-wrap a { display: block; }
.flash-img-wrap .flash-status-overlay { pointer-events: none; }

/* Accueil : overlay dans .flash-item-img-wrap → bloque les clics (TROP TARD) */
.flash-item-img-wrap .flash-status-overlay { pointer-events: all; cursor: default; }
.flash-overlay-chosen      { background: rgba(230,126,34,0.60); color: #fff; }
.flash-overlay-unavailable,
.flash-overlay-reserved    { background: rgba(192,57,43,0.65);  color: #fff; }

/* ═══════════════════════════════════════════════
   CTA
   ═══════════════════════════════════════════════ */
.section-cta {
    background: var(--grey-dark);
    padding: 80px 0;
}
.cta-box { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-icon { margin-bottom: 20px; }
.cta-text { color: var(--grey-light); font-size: 16px; line-height: 1.8; margin-bottom: 30px; }

/* ═══════════════════════════════════════════════
   CONTACT HOME
   ═══════════════════════════════════════════════ */
.section-contact-home {
    background: var(--black);
    padding: 100px 0;
}
.contact-home-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 60px;
}
.contact-list { margin-top: 20px; }
.contact-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: var(--grey-light); font-size: 15px; }
.contact-list a { color: var(--grey-light); }
.contact-list a:hover { color: var(--purple); }
.contact-home-social { display: flex; gap: 10px; margin-top: 30px; }
.social-circle {
    display: flex; align-items: center; justify-content: center;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--grey-dark);
    color: var(--white);
    transition: all var(--transition);
}
.social-circle:hover { background: var(--purple); color: var(--white); transform: translateY(-3px); }

/* ═══════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════ */
.contact-home-form, .contact-form-box {
    background: #1A1A1A;
    border-radius: 8px;
    padding: 40px;
}
.form-title-script {
    font-family: var(--font-script);
    font-size: 32px;
    color: var(--white);
    text-align: center;
    margin-bottom: 25px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 15px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { margin-bottom: 15px; }
.form-group label { color: var(--grey-light); font-size: 13px; margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    background: var(--grey-dark);
    border: 1px solid #444;
    border-radius: 4px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 2px rgba(163,87,185,0.2);
}
.form-group textarea { resize: vertical; }
.form-group select { appearance: none; cursor: pointer; }

/* ═══════════════════════════════════════════════
   PAGE HERO
   ═══════════════════════════════════════════════ */
.page-hero-compact {
    background: var(--dark);
    padding: 140px 0 60px;
    text-align: center;
}
.page-title-script {
    font-family: var(--font-script);
    font-size: 62px;
    color: var(--white);
    margin: 8px 0 15px;
}
.page-desc { color: var(--grey-mid); font-size: 15px; max-width: 600px; margin: 0 auto; }

/* ═══════════════════════════════════════════════
   PORTFOLIO FULL (Masonry)
   ═══════════════════════════════════════════════ */
.section-portfolio-full {
    background: var(--black);
    padding: 40px 0 80px;
}
.masonry-grid {
    columns: 4;
    column-gap: 10px;
}
.masonry-item {
    break-inside: avoid;
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
    display: block;
    position: relative;
}
.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}
.masonry-item:hover img { transform: scale(1.05); filter: brightness(1.1); }
.masonry-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(163,87,185,0.3) 100%);
    opacity: 0;
    transition: opacity var(--transition);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

/* Flash masonry items */
.flash-masonry-item { position: relative; }
.flash-masonry-item a { display: block; }
/* Wrapper relatif pour overlay (overlay hors du <a> → clics passent) */
.flash-img-wrap { position: relative; overflow: hidden; }
.flash-img-wrap a { display: block; }
.flash-masonry-info {
    padding: 8px 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    background: var(--grey-dark);
    border-radius: 0 0 6px 6px;
    margin-top: -4px;
}
.flash-masonry-title { font-size: 13px; font-weight: 500; color: var(--white); }
.flash-card-reserved-overlay {
    position: absolute; inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 14px; color: #ff6b6b; text-transform: uppercase; letter-spacing: 2px;
}

.no-items-full {
    text-align: center;
    padding: 80px 30px;
    background: var(--grey-dark);
    border-radius: 8px;
    column-span: all;
}
.no-items-full h3 { font-size: 24px; margin-bottom: 15px; }
.no-items-full p { color: var(--grey-mid); font-size: 14px; line-height: 1.8; }

/* CTA Bottom */
.section-cta-bottom {
    background: var(--grey-dark);
    padding: 60px 0;
}

/* Pagination */
.pagination { text-align: center; margin-top: 40px; }
.pagination a, .pagination span {
    display: inline-block;
    padding: 8px 16px;
    margin: 0 4px;
    border-radius: 4px;
    color: var(--grey-light);
    background: var(--grey-dark);
    font-size: 14px;
    transition: all var(--transition);
}
.pagination .current, .pagination a:hover { background: var(--purple); color: var(--white); }

/* ═══════════════════════════════════════════════
   FLASH PAGE
   ═══════════════════════════════════════════════ */
.section-flash-full { background: var(--black); padding: 40px 0 80px; }

.flash-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.flash-tab {
    padding: 10px 24px;
    border: none;
    background: var(--grey-dark);
    color: var(--grey-mid);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition);
}
.flash-tab:hover, .flash-tab.active { background: var(--purple); color: var(--white); }
.tab-count {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
    padding: 1px 7px;
    font-size: 10px;
    margin-left: 5px;
}
.flash-tab.active .tab-count { background: rgba(255,255,255,0.25); }

/* Flash panels (tabs content) */
.flash-panel { display: none; }
.flash-panel.active { display: block; }

.flash-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.flash-card { border-radius: 8px; overflow: hidden; background: #1A1A1A; transition: transform var(--transition); position: relative; }
.flash-card:hover { transform: translateY(-5px); }
.flash-card img { width: 100%; height: 280px; object-fit: cover; }
.flash-card-info { padding: 15px; text-align: center; }
.flash-card-info h3 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.flash-card-theme { display: inline-block; font-size: 11px; color: var(--purple); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.flash-card-reserved-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600; text-transform: uppercase;
    letter-spacing: 2px; color: var(--grey-mid);
}

/* ═══════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════ */
.section-contact-cards { background: var(--black); padding: 60px 0 80px; }
.contact-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-card {
    background: #1A1A1A;
    border-radius: 8px;
    padding: 40px 25px;
    text-align: center;
}
.contact-card h3 { font-size: 16px; font-weight: 600; margin: 15px 0 10px; }
.contact-card-value { color: var(--grey-light); font-size: 16px; display: block; }
.contact-card-value a { color: var(--grey-light); }
.contact-card-social { display: flex; justify-content: center; gap: 10px; margin-top: 5px; }
.contact-card-handle { color: var(--purple); font-size: 14px; margin-top: 10px; display: block; }
.contact-card-note { color: var(--grey-mid); font-size: 12px; font-style: italic; margin-top: 5px; display: block; }

.section-map { background: var(--black); padding: 0 0 0; }
.map-wrapper { padding: 0 40px; }

.section-contact-form { background: var(--black); padding: 80px 0 100px; }

/* ═══════════════════════════════════════════════
   RDV PAGE
   ═══════════════════════════════════════════════ */
.section-rdv-steps { background: var(--black); padding: 60px 0; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.step-number { font-family: var(--font-script); font-size: 48px; color: var(--purple); display: block; }
.step-item h3 { font-size: 15px; font-weight: 600; margin: 10px 0; }
.step-item p { color: var(--grey-mid); font-size: 13px; }

.section-rdv-booking { background: var(--black); padding: 20px 0 60px; }
.booking-box {
    background: #1A1A1A;
    border: 1px solid var(--grey-dark);
    border-radius: 8px;
    padding: 50px;
}
.booking-placeholder { text-align: center; padding: 30px 0; color: var(--grey-light); }
.booking-placeholder p { margin-bottom: 15px; font-size: 15px; }
.booking-cta-group { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.booking-info-box {
    margin-top: 30px;
    padding: 20px;
    background: var(--grey-dark);
    border-radius: 6px;
    border-left: 3px solid var(--purple);
}
.booking-info-title { color: var(--white); font-size: 14px; margin-bottom: 10px; }
.booking-info-box ul { padding-left: 0; }
.booking-info-box li { color: var(--grey-light); font-size: 13px; padding: 4px 0; }
.booking-info-box li::before { content: '• '; color: var(--purple); }

.section-rdv-types { background: var(--dark); padding: 80px 0; }
.rdv-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.rdv-type-card {
    background: #1A1A1A;
    border-radius: 8px;
    padding: 40px 35px;
}
.rdv-type-card h3 { font-size: 18px; font-weight: 600; margin: 15px 0 12px; }
.rdv-type-card p { color: var(--grey-mid); font-size: 14px; line-height: 1.8; }
.rdv-type-card a { color: var(--purple); }

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.phenix-footer { background: var(--dark); }
.footer-accent-line { height: 2px; background: var(--purple); }
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 60px 30px 40px;
}
.footer-col .custom-logo-link img, .footer-col .custom-logo { height: 100px; width: auto; }
.footer-logo-text { font-family: var(--font-script); font-size: 28px; color: var(--white); }
.footer-desc { color: var(--grey-mid); font-size: 13px; line-height: 1.8; margin-top: 15px; }
.footer-heading {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 20px;
}
.footer-nav-list { list-style: none; }
.footer-nav-list li { padding: 5px 0; }
.footer-nav-list a { color: var(--grey-mid); font-size: 13px; transition: color var(--transition); }
.footer-nav-list a:hover { color: var(--purple); }
.footer-contact-list li { color: var(--grey-mid); font-size: 13px; padding: 5px 0; }
.footer-contact-list a { color: var(--grey-mid); }
.footer-contact-list a:hover { color: var(--purple); }
.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.footer-social a { color: var(--white); transition: all var(--transition); }
.footer-social a:hover { color: var(--purple); transform: translateY(-2px); }
.footer-bottom {
    border-top: 1px solid var(--grey-dark);
    text-align: center;
    padding: 20px 30px;
}
.footer-bottom p { color: #666; font-size: 12px; }

/* ═══════════════════════════════════════════════
   PORTFOLIO PAGE CONTENT (Gutenberg Blocks)
   ═══════════════════════════════════════════════ */

/* Supprime les styles WordPress par défaut dans le fond dark */
.portfolio-page-content {
    padding: 40px 20px 80px;
    color: var(--white);
}

/* Titres de page de portfolio (H1 injecté par WP) */
.portfolio-page-content h1 { display: none; }

/* Gallery block WordPress */
.portfolio-page-content .wp-block-gallery {
    columns: 4;
    gap: 10px;
    display: block !important;
}
.portfolio-page-content .wp-block-gallery .wp-block-image,
.portfolio-page-content .wp-block-gallery figure {
    break-inside: avoid;
    margin: 0 0 10px 0 !important;
    border-radius: 6px;
    overflow: hidden;
}
.portfolio-page-content .wp-block-gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.4s ease, filter 0.4s ease;
    cursor: pointer;
}
.portfolio-page-content .wp-block-gallery img:hover {
    transform: scale(1.04);
    filter: brightness(1.1);
}

/* Image block seul */
.portfolio-page-content .wp-block-image img {
    border-radius: 6px;
    width: 100%;
}

/* Columns block */
.portfolio-page-content .wp-block-columns {
    gap: 10px;
}
.portfolio-page-content .wp-block-column img {
    border-radius: 6px;
    width: 100%;
    transition: transform 0.4s ease;
}
.portfolio-page-content .wp-block-column img:hover {
    transform: scale(1.03);
}

/* Supprime caption et légende */
.portfolio-page-content figcaption { display: none; }

/* Textes éventuels dans la page */
.portfolio-page-content p { color: var(--grey-mid); }
.portfolio-page-content h2 { color: var(--white); font-family: var(--font-script); font-size: 36px; }
.portfolio-page-content h3 { color: var(--white); font-size: 20px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .portfolio-grid-4, .flash-grid { grid-template-columns: repeat(3, 1fr); }
    .masonry-grid { columns: 3; }
    .portfolio-page-content .wp-block-gallery { columns: 3; }
}

@media (max-width: 768px) {
    .header-nav {
        display: none;
        position: fixed;
        top: 80px !important;
        left: 0; right: 0; bottom: 0;
        background: #101010 !important;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        z-index: 999;
        overflow-y: auto;
    }
    .header-nav.open { display: flex; }
    .header-nav .nav-menu { flex-direction: column; gap: 25px; text-align: center; }
    .header-nav .nav-menu li a { font-size: 16px; }
    .header-social { display: none; }
    .header-burger { display: block; }

    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 14px; }

    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .contact-home-grid { grid-template-columns: 1fr; gap: 40px; }
    .portfolio-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .flash-grid { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { columns: 2; }
    .contact-cards-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .rdv-types-grid { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .form-row { grid-template-columns: 1fr; }

    .section-title-script { font-size: 38px; }
    .page-title-script { font-size: 38px; }
    .booking-box { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .portfolio-grid-4 { grid-template-columns: 1fr 1fr; gap: 8px; }
    .flash-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .masonry-grid { columns: 2; column-gap: 6px; }
    .portfolio-page-content .wp-block-gallery { columns: 2; }
    .hero-title { font-size: 38px; }
}

/* ── Form Status Messages ──────────────────── */
.form-status {
    padding: 0;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    transition: all 0.3s ease;
}
.form-status.form-success {
    padding: 12px 20px;
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #2ecc71;
}
.form-status.form-error {
    padding: 12px 20px;
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.4);
    color: #e74c3c;
}

/* ── RDV Tabs (Prise de RDV) ───────────────── */
.rdv-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}
.rdv-tab {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--grey-dark);
    background: transparent;
    color: var(--grey-mid);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all var(--transition);
}
.rdv-tab:hover { border-color: var(--purple); color: var(--white); }
.rdv-tab.active { border-color: var(--purple); background: var(--purple); color: var(--white); }
.rdv-panel { display: none; }
.rdv-panel.active { display: block; }

/* Placeholder panel quand URL non configurée */
.rdv-not-configured {
    text-align: center;
    padding: 50px 30px;
}
.rdv-placeholder-icon { font-size: 48px; display: block; margin-bottom: 15px; }
.rdv-not-configured h3 { font-size: 22px; margin-bottom: 10px; color: var(--white); }
.rdv-not-configured p { color: var(--grey-mid); margin-bottom: 8px; font-size: 14px; }
.rdv-info-form { padding: 10px 0; }

/* Booking embed (Google Calendar / Calendly) */
.booking-embed-wrapper { border-radius: 8px; overflow: hidden; }
.booking-embed-wrapper iframe { display: block; border-radius: 8px; }
.booking-external .booking-cta-group { justify-content: center; }
.rdv-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding: 14px 16px;
    background: var(--grey-dark);
    border-radius: 6px;
    border-left: 3px solid var(--purple);
}
.rdv-panel-desc { color: var(--grey-light); font-size: 13px; margin: 0; }
.rdv-panel-desc a { color: var(--purple); }

/* ═══════════════════════════════════════════════
   PAGE SOINS
   ═══════════════════════════════════════════════ */
.section-soins { background: var(--black); padding: 50px 0 80px; }

/* Fiches images */
.soins-sheets { margin-bottom: 60px; }
.soins-sheets-intro { text-align:center; color: var(--grey-mid); font-size:14px; margin-bottom:20px; }
.soins-sheets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.soins-sheet-card { text-align: center; }
.soins-sheet-card a {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--grey-dark);
}
.soins-sheet-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.soins-sheet-card a:hover img { transform: scale(1.03); }
.soins-sheet-overlay {
    position: absolute; inset: 0;
    background: rgba(163,87,185,0.7);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 8px; color: white; opacity: 0;
    transition: opacity 0.3s;
    font-size: 13px; font-weight: 600; letter-spacing: 1px;
}
.soins-sheet-card a:hover .soins-sheet-overlay { opacity: 1; }
.soins-sheet-card p { color: var(--grey-mid); font-size: 12px; margin-top: 8px; }

/* Contenu soins */
.soins-section { margin-bottom: 50px; }
.soins-title {
    font-family: var(--font-script);
    font-size: 38px;
    color: var(--white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.soins-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--purple);
    color: white;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
.soins-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.soins-card {
    background: #1A1A1A;
    border-radius: 8px;
    padding: 25px;
    border-top: 3px solid var(--grey-dark);
}
.soins-card-do { border-top-color: #2ecc71; }
.soins-card-dont { border-top-color: #e74c3c; }
.soins-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 15px; }
.soins-card ul { list-style: none; padding: 0; }
.soins-card li { color: var(--grey-light); font-size: 14px; padding: 6px 0; padding-left: 0; border-bottom: 1px solid rgba(255,255,255,0.05); line-height: 1.6; }
.soins-card li:last-child { border-bottom: none; }

.soins-steps-list { display: flex; flex-direction: column; gap: 16px; }
.soins-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #1A1A1A;
    border-radius: 8px;
    padding: 20px;
}
.soins-step-icon { font-size: 28px; flex-shrink: 0; }
.soins-step strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 5px; }
.soins-step p { color: var(--grey-mid); font-size: 14px; margin: 0; }

.soins-warning-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(163,87,185,0.1);
    border: 1px solid rgba(163,87,185,0.3);
    border-radius: 8px;
    padding: 25px;
    margin-top: 40px;
}
.soins-warning-box svg { flex-shrink: 0; margin-top: 3px; }
.soins-warning-box strong { display: block; color: var(--white); font-size: 16px; margin-bottom: 8px; }
.soins-warning-box p { color: var(--grey-light); font-size: 14px; margin: 0; }

@media (max-width: 768px) {
    .soins-sheets-grid { grid-template-columns: 1fr; }
    .soins-grid { grid-template-columns: 1fr; }
    .soins-title { font-size: 28px; }
}
