/* ========================================================
   CRYO'TERRE'HAPPY — style.css
   Palette: deep navy + ice blue + warm white + gold accent
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   ======================================================== */

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

:root {
    --navy:      #0d1b2a;
    --navy-mid:  #1a2e42;
    --navy-soft: #253d54;
    --ice:       #c8e6f5;
    --ice-light: #e8f4fb;
    --white:     #fafaf8;
    --cream:     #f4f1eb;
    --gold:      #b89a5e;
    --gold-light:#d4b87a;
    --text-dark: #1a1a1a;
    --text-mid:  #4a5568;
    --text-light:#718096;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;
    --radius:    4px;
    --radius-lg: 12px;
    --transition: 0.3s ease;
    --max-w:     1200px;
    --max-w-wide:1400px;
}

html { scroll-behavior: smooth; font-size: 16px; }

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

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

.container--wide {
    max-width: var(--max-w-wide);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 3rem;
    transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 27, 42, 0.96);
    backdrop-filter: blur(12px);
    padding: 1rem 3rem;
    box-shadow: 0 1px 20px rgba(0,0,0,0.3);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.03em;
}

.logo-accent { color: #9AD027; }

.nav-links {
    display: flex;
    gap: 2.5rem;
    margin-left: auto;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    transition: color var(--transition);
}

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

.btn-reserver {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border: 1px solid var(--navy);
    color: var(--navy);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: var(--font-body);
    border-radius: var(--radius);
    transition: background var(--transition), color var(--transition);
	background: var(--gold);
    white-space: nowrap;
}

.btn-reserver:hover {
    background: var(--gold-light);
    color: var(--navy);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}

.burger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(200,230,245,0.08) 0%, transparent 60%),
        linear-gradient(160deg, #0d1b2a 0%, #1a3a55 50%, #0d2338 100%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='0.5' fill='rgba(200,230,245,0.15)'/%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 10rem 3rem 4rem;
}

.hero-tag {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ice);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero-title em {
    font-style: italic;
    color: var(--ice);
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--gold);
    color: var(--navy);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}

.cta-primary:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.cta-primary--sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.75rem;
    margin-top: 1rem;
    display: inline-block;
}

.cta-secondary {
    display: inline-block;
    padding: 0.85rem 2rem;
    border: 1px solid rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: border-color var(--transition), color var(--transition);
}

.cta-secondary:hover {
    border-color: var(--ice);
    color: var(--ice);
}

.hero-features {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: auto;
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    transition: background var(--transition);
}

.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,0.04); }

.feature-icon {
    font-size: 1.5rem;
    color: var(--ice);
    font-style: normal;
}

.feature-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    line-height: 1.4;
}

.scroll-indicator {
    position: absolute;
    right: 3rem;
    bottom: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    writing-mode: vertical-rl;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50% { transform: scaleY(0.6); opacity: 1; }
}

/* ─── INTRO BAND ─── */
.intro-band {
    background: var(--navy);
    padding: 1.25rem 0;
    overflow: hidden;
}

.intro-band-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    padding: 0 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.intro-band .dot { color: var(--gold); }

/* ─── SECTION HEADER ─── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--navy);
}

/* ─── SERVICES OVERVIEW ─── */
.services-section {
    padding: 7rem 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #e2e8f0;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: background var(--transition);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease;
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover { background: var(--ice-light); }

.service-card--featured {
    background: var(--navy);
}

.service-card--featured:hover { background: var(--navy-mid); }

.service-card--featured h3,
.service-card--featured p { color: var(--white); }

.service-card--featured .service-link { color: var(--gold); }

.service-temp {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    line-height: 1;
}

.service-card--featured .service-temp { color: var(--ice); }

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--gold));
    line-height: 1.2;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.7;
    flex: 1;
}

.service-link {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    transition: gap var(--transition);
    margin-top: auto;
}

.service-link:hover { letter-spacing: 0.15em; }

/* ─── DETAIL SECTIONS ─── */
.detail-section {
    padding: 8rem 0;
}

.detail-section--light { background: var(--cream); }
.detail-section--dark  { background: var(--navy); }

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 6rem;
    align-items: start;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.detail-layout.visible {
    opacity: 1;
    transform: translateY(0);
}

.detail-layout--reverse { grid-template-columns: 1.6fr 1fr; }

.detail-visual {
    position: sticky;
    top: 6rem;
}


.detail-content .section-tag { margin-bottom: 1.5rem; }

.detail-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.detail-section--dark .detail-content h2 { color: var(--white); }
.detail-section--dark .detail-content { color: rgba(255,255,255,0.8); }

.detail-intro {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 3rem;
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
}

.detail-section--dark .detail-intro { color: rgba(255,255,255,0.6); }

.benefits-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.benefit-group {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.benefit-group.visible {
    opacity: 1;
    transform: translateY(0);
}

.benefit-group h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.benefit-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.benefit-group li {
    font-size: 0.85rem;
    color: var(--text-mid);
    padding-left: 1rem;
    position: relative;
}

.benefit-group li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 4px;
    height: 1px;
    background: var(--gold);
}

.contre-indications {
    background: rgba(13,27,42,0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.contre-indications--light {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
}

/* Navy warning panel (cryothérapie) */
.ci-warning-dark {
    background: rgba(13, 27, 42, 0.07);
    border: 1px solid rgba(13, 27, 42, 0.2);
    border-left: 4px solid var(--navy);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2.5rem;
}

.ci-warning-icon--dark {
    font-size: 1.2rem;
    color: var(--navy);
    line-height: 1;
}

.ci-title-dark {
    margin-bottom: 0 !important;
    color: var(--navy) !important;
}

.ci-list--dark li {
    color: var(--navy) !important;
}

.ci-list--dark li::before {
    color: var(--navy);
}

/* Blue warning panel */
.ci-warning {
    background: rgba(30, 100, 200, 0.12) !important;
    border: 1px solid rgba(80, 150, 255, 0.35) !important;
    border-left: 4px solid #4a90e2 !important;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.ci-warning-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.ci-warning-icon {
    font-size: 1.2rem;
    color: #4a90e2;
    line-height: 1;
}

.ci-warning .ci-warning-header h4 {
    margin-bottom: 0;
    color: #4a90e2;
}

.ci-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ci-list li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    padding-left: 1.1rem;
    position: relative;
}

.ci-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: 500;
}

.contre-indications h4,
.zones-grid h4,
.deroulement h4 {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 500;
}

.ci-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.ci-grid span {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: rgba(184,154,94,0.1);
    border: 1px solid rgba(184,154,94,0.2);
    border-radius: 100px;
    color: var(--text-mid);
}

.detail-section--dark .ci-grid span { color: rgba(255,255,255,0.6); }

.deroulement {
    margin-bottom: 0;
}

.deroulement ol {
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-left: 0;
    list-style: none;
}

.deroulement li {
    counter-increment: steps;
    font-size: 0.85rem;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.deroulement li::before {
    content: counter(steps, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    min-width: 2rem;
    font-weight: 400;
}

.detail-section--dark .deroulement li { color: rgba(255,255,255,0.6); }

/* Zones */
.zones-grid { margin-bottom: 2.5rem; }

.zones-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.zone-item {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: rgba(255,255,255,0.7);
    transition: border-color var(--transition), color var(--transition);
}

.zone-item:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.zones-note {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    font-style: italic;
    margin-top: 0.5rem;
}

/* ─── TARIFS ─── */
.pricing-section {
    padding: 8rem 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.price-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.price-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.price-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.price-card--featured {
    border-color: var(--navy);
    border-width: 2px;
}

.price-card-header {
    padding: 2rem 2rem 1.5rem;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.price-card--featured .price-card-header { background: var(--gold); }

.price-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--white);
}

.price-card--featured .price-card-header h3 { color: var(--navy); }

.price-main {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--ice);
    line-height: 1;
}

.price-main span {
    font-size: 0.9rem;
    font-family: var(--font-body);
    font-weight: 300;
    color: rgba(255,255,255,0.5);
    margin-left: 0.25rem;
}

.price-card--featured .price-main { color: var(--navy); }
.price-card--featured .price-main span { color: rgba(13,27,42,0.5); }

.price-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-card-body p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
}

.price-section h4 {
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.price-section small {
    font-size: 0.65rem;
    color: var(--text-light);
    display: block;
    margin-top: 0.25rem;
    font-style: italic;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
}

.price-table td {
    font-size: 0.85rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-mid);
}

.price-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: var(--navy);
}

.contact-btn {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--gold);
    text-transform: uppercase;
    transition: letter-spacing var(--transition);
    font-weight: 500;
    margin-top: 0.5rem;
}

.contact-btn:hover { letter-spacing: 0.14em; }

/* ─── FOOTER ─── */
.footer { background: var(--navy); color: var(--white); }

.footer-top { padding: 5rem 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand .logo-text { display: block; margin-bottom: 1.25rem; }

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-info h4 {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 1rem;
}

.footer-info p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-info a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.footer-info a:hover { color: var(--gold); }

.footer-note {
    font-style: italic;
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.35) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.5rem 0;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
}

.footer-bottom a {
    color: #b89a5e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #d4b87a;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
    animation: fadeUp 0.8s ease both;
}

.hero-tag        { animation-delay: 0.1s; }
.hero-title      { animation-delay: 0.25s; }
.hero-subtitle   { animation-delay: 0.4s; }
.hero-ctas       { animation-delay: 0.55s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .detail-layout { grid-template-columns: 1fr; gap: 3rem; }
    .detail-layout--reverse { direction: ltr; }
    .detail-visual { position: static; }
    .cryo-visual { min-height: auto; padding: 2.5rem; flex-direction: row; align-items: center; }
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: 1fr; }
    .benefits-tabs { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 1.25rem 1.5rem; }
    .navbar.scrolled { padding: 1rem 1.5rem; }
    .nav-links {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--navy);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        font-size: 1.2rem;
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 1rem; }
    .btn-reserver { display: none; }
    .burger { display: flex; }
    .hero-content { padding: 8rem 1.5rem 3rem; }
    .hero-features { flex-wrap: wrap; }
    .feature-item { width: 50%; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .scroll-indicator { display: none; }
    .container, .container--wide { padding: 0 1.25rem; }
    .detail-section { padding: 5rem 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-top { padding: 3rem 0; }
    .intro-band-inner { gap: 1rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    .hero-ctas { flex-direction: column; }
    .cta-primary, .cta-secondary { text-align: center; }
    .lipo-stat-row { flex-direction: column; }
    .lipo-stat { padding: 1.5rem; }
    .stat-value { font-size: 2.5rem; }
}

/* ─── CRYO PHOTO VISUAL ─── */
.cryo-visual-wrap {
    position: sticky;
    top: 6rem;
}

.cryo-img-box {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy);
}

.cryo-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    opacity: 0.85;
    transition: opacity var(--transition);
}

.cryo-img-box:hover .cryo-photo { opacity: 1; }

.cryo-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    gap: 0.75rem;
}

.cryo-badge {
    display: flex;
    flex-direction: column;
}

.cryo-img-overlay .temp-value {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--ice);
    line-height: 1;
}

.cryo-img-overlay .temp-unit {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.cryo-img-overlay .duration-display {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.cryo-img-overlay .duration-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--gold);
}

.cryo-img-overlay .duration-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ─── LIPO GALLERY ─── */
.lipo-visual {
    position: sticky;
    top: 6rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.lipo-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lipo-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.lipo-gallery-main img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s ease;
}

.lipo-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.lipo-thumb {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    opacity: 0.5;
    border: 2px solid transparent;
    transition: opacity var(--transition), border-color var(--transition);
}

.lipo-thumb:hover { opacity: 0.8; }

.lipo-thumb.active {
    opacity: 1;
    border-color: var(--gold);
}

.lipo-stat-row {
    display: flex;
    gap: 1rem;
}

.lipo-stat {
    flex: 1;
    padding: 1.5rem 1.75rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
}

.lipo-stat--sm { padding: 1.5rem; }

.stat-value {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    line-height: 1.5;
    margin-top: 0.4rem;
    display: block;
}

/* ─── NOUS TROUVER ─── */
.location-section {
    padding: 8rem 0 0;
    background: var(--cream);
}

.location-section .section-title { color: var(--navy); }

.location-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    margin-top: 4rem;
    min-height: 580px;
}

.location-info-col {
    display: flex;
    flex-direction: column;
    background: var(--navy);
    padding: 3rem;
    gap: 2.5rem;
}

.location-photo-box {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.location-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.location-photo-box:hover .location-photo { transform: scale(1.03); }

.location-photo-caption {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    gap: 0.2rem;
}

.location-photo-caption span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.05em;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ld-icon {
    font-size: 1.1rem;
    color: var(--gold);
    min-width: 1.5rem;
    margin-top: 0.1rem;
}

.location-detail-item strong {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.location-detail-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.location-detail-item a {
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}

.location-detail-item a:hover { color: var(--gold); }

.ld-note {
    font-style: italic;
    font-size: 0.75rem !important;
    color: rgba(255,255,255,0.35) !important;
}

.location-map-col {
    position: relative;
}

.location-map {
    width: 100%;
    height: 100%;
    min-height: 580px;
    border: none;
    display: block;
    filter: grayscale(20%);
    transition: filter var(--transition);
}

.location-map:hover { filter: grayscale(0%); }

/* Responsive – location */
@media (max-width: 1100px) {
    .location-layout { grid-template-columns: 1fr; }
    .location-map { min-height: 400px; }
    .location-info-col { padding: 2.5rem 2rem; }
}

@media (max-width: 768px) {
    .location-section { padding: 5rem 0 0; }
    .cryo-photo { height: 280px; }
    .lipo-gallery-main img { height: 220px; }
    .lipo-thumb { height: 60px; }
    .cryo-visual-wrap { position: relative; top: auto; }
}

/* Style pour le logo dans la navigation */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-logo {
    height: 100px; /* Ajustez la taille selon vos besoins */
    width: auto;
    margin-right: 12px; /* Espace entre le logo et le texte */
    object-fit: contain;
}

/* Optionnel : ajuster la taille du logo sur mobile */
@media (max-width: 768px) {
    .navbar-logo {
        height: 80px;
    }
}

/* 1. On s'assure que la section du haut "enferme" bien l'image */
.hero {
    position: relative; /* Très important pour bloquer l'image ici */
    overflow: hidden;   /* Empêche l'image de baver sur les autres sections */
    /* Vos autres styles existants pour .hero (comme min-height: 100vh etc.) restent ici */
}

/* 2. On applique l'image uniquement dans la boîte du haut */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('fond.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

/* 3. Optionnel : L'overlay pour assombrir juste cette image et lire le texte */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); 
    z-index: -1;
}

/* ─── HERO DESC CARD ─── */
.hero-desc-card {
    position: absolute;
    right: 8rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 320px;
    color: #FFFFF0;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    padding: 1.5rem;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .hero-desc-card {
        right: 2rem;
        max-width: 260px;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .hero-desc-card {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        margin: 0 1.25rem 2rem;
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

/* ================================================================
   CRYO'TERRE'HAPPY — Bannière Cookies RGPD
   Thème : Deep Navy · Gold · Ice Blue
   Fonts  : Cormorant Garamond (titres) · DM Sans (corps)
   ================================================================ */

/* ── Overlay ── */
#cookie-overlay {
    position: fixed; inset: 0; z-index: 9998;
    background: rgba(5, 14, 24, 0.78);
    backdrop-filter: blur(8px) saturate(0.75);
    -webkit-backdrop-filter: blur(8px) saturate(0.75);
    opacity: 0; pointer-events: none;
    transition: opacity 0.5s ease;
}
#cookie-overlay.visible { opacity: 1; pointer-events: all; }


/* ══════════════════════════════════════════
   BANNIÈRE PRINCIPALE
══════════════════════════════════════════ */
#cookie-banner {
    position: fixed;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%) translateY(calc(100% + 3rem));
    z-index: 9999;
    width: min(800px, calc(100vw - 2rem));
    background: #0d1b2a;
    border: 1px solid rgba(184, 154, 94, 0.32);
    border-radius: 14px;
    box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.65),
        0 0 0 1px rgba(255,255,255,0.03) inset;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.55s ease;
    opacity: 0;
    overflow: hidden;
}

/* Ligne dorée en haut */
#cookie-banner::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 5%, #b89a5e 40%, #d4b87a 60%, transparent 95%);
}

#cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Grille intérieure */
.ck-inner {
    padding: 2rem 2.4rem 2rem;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2.4rem;
    align-items: center;
}

/* Titre */
.ck-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: #fafaf8;
    margin-bottom: 0.6rem;
    letter-spacing: 0.025em;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
/* Pastille dorée devant le titre */
.ck-title::before {
    content: '';
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #b89a5e;
    box-shadow: 0 0 10px rgba(184,154,94,0.7);
    flex-shrink: 0;
}

/* Texte descriptif — lisible sur navy */
.ck-desc {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.84rem;
    font-weight: 300;
    color: rgba(200, 230, 245, 0.82);   /* ice blue bien visible */
    line-height: 1.75;
    max-width: 520px;
}
.ck-desc a {
    color: #d4b87a;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(212,184,122,0.45);
    transition: color 0.2s;
}
.ck-desc a:hover { color: #e8cc8c; }

/* ── Boutons ── */
.ck-actions {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    align-items: stretch;
    flex-shrink: 0;
    min-width: 170px;
}

.ck-btn {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.73rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.72rem 1.4rem;
    border-radius: 30px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.25s ease;
    text-align: center;
    border: 1px solid transparent;
}

/* Accepter — gold plein */
.ck-btn-accept {
    background: linear-gradient(135deg, #b89a5e, #d4b87a);
    color: #0d1b2a;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(184,154,94,0.38);
    border-color: transparent;
}
.ck-btn-accept:hover {
    background: linear-gradient(135deg, #c9aa6e, #e8cc8c);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(184,154,94,0.48);
}

/* Refuser — discret */
.ck-btn-refuse {
    background: transparent;
    color: rgba(200, 230, 245, 0.7);
    border-color: rgba(200, 230, 245, 0.18);
}
.ck-btn-refuse:hover {
    background: rgba(200, 230, 245, 0.07);
    color: #fafaf8;
    border-color: rgba(200, 230, 245, 0.35);
}

/* Personnaliser — gold outline */
.ck-btn-custom {
    background: transparent;
    color: rgba(184, 154, 94, 0.75);
    border-color: rgba(184, 154, 94, 0.28);
    font-size: 0.68rem;
    padding: 0.55rem 1rem;
}
.ck-btn-custom:hover {
    background: rgba(184, 154, 94, 0.1);
    color: #d4b87a;
    border-color: rgba(184, 154, 94, 0.55);
}


/* ══════════════════════════════════════════
   PANNEAU DE PERSONNALISATION
══════════════════════════════════════════ */
#cookie-panel {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 10000;
    width: 420px;
    max-width: calc(100vw - 2rem);
    background: #0d1b2a;
    border: 1px solid rgba(184, 154, 94, 0.28);
    border-radius: 14px;
    transform: translateY(calc(100% + 3rem));
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s ease;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 28px 70px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.03) inset;
    overflow: hidden;
}
/* Ligne dorée en haut */
#cookie-panel::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent 5%, #b89a5e 40%, #d4b87a 60%, transparent 95%);
    z-index: 1;
}
#cookie-panel.open { transform: translateY(0); opacity: 1; }

/* En-tête panneau */
.ckp-header {
    padding: 1.35rem 1.8rem;
    border-bottom: 1px solid rgba(200, 230, 245, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.ckp-header h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #fafaf8;
    letter-spacing: 0.03em;
}

/* Bouton fermer */
.ckp-close {
    background: rgba(200, 230, 245, 0.06);
    border: 1px solid rgba(200, 230, 245, 0.1);
    border-radius: 50%;
    color: rgba(200, 230, 245, 0.5);
    font-size: 0.8rem;
    cursor: pointer;
    width: 30px; height: 30px;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}
.ckp-close:hover {
    background: rgba(200, 230, 245, 0.12);
    color: #fafaf8;
    border-color: rgba(200, 230, 245, 0.25);
}

/* Corps du panneau */
.ckp-body {
    overflow-y: auto;
    padding: 1.2rem 1.8rem 0.8rem;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(184,154,94,0.3) transparent;
}
.ckp-body::-webkit-scrollbar { width: 4px; }
.ckp-body::-webkit-scrollbar-track { background: transparent; }
.ckp-body::-webkit-scrollbar-thumb { background: rgba(184,154,94,0.3); border-radius: 4px; }

/* Texte intro */
.ckp-intro {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.79rem;
    font-weight: 300;
    font-style: italic;
    color: rgba(200, 230, 245, 0.55);
    margin-bottom: 1.2rem;
    line-height: 1.7;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(200, 230, 245, 0.06);
}


/* ══════════════════════════════════════════
   CASES DE CATÉGORIES — le cœur du design
══════════════════════════════════════════ */
.ck-cat {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(200, 230, 245, 0.09);
    border-radius: 10px;
    margin-bottom: 0.7rem;
    overflow: hidden;
    transition: border-color 0.25s, background 0.25s;
}
.ck-cat:hover {
    border-color: rgba(184, 154, 94, 0.25);
    background: rgba(184, 154, 94, 0.03);
}
/* Accentuation gauche sur hover */
.ck-cat::before {
    content: '';
    display: block;
    height: 1px;
    background: linear-gradient(90deg, rgba(184,154,94,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}
.ck-cat:hover::before { opacity: 1; }

.ck-cat-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 1.15rem;
    gap: 1rem;
}

.ck-cat-info strong {
    display: block;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    color: #c8e6f5;   /* ice — bien lisible sur navy */
    margin-bottom: 0.18rem;
    letter-spacing: 0.01em;
}
.ck-cat-info span {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.68rem;
    font-weight: 300;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(184, 154, 94, 0.6);
}

.ck-cat-detail {
    padding: 0.65rem 1.15rem 0.85rem;
    border-top: 1px solid rgba(200, 230, 245, 0.06);
}
.ck-cat-detail p {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.76rem;
    font-weight: 300;
    color: rgba(200, 230, 245, 0.58);
    line-height: 1.7;
}
.ck-cat-detail a {
    color: #d4b87a;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(212,184,122,0.4);
}
.ck-cat-detail a:hover { color: #e8cc8c; }

/* Tag "Toujours actifs" */
.always-active-tag {
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(200, 230, 245, 0.35);
    font-style: italic;
    white-space: nowrap;
    margin-right: 0.4rem;
}


/* ══════════════════════════════════════════
   TOGGLE SWITCH
══════════════════════════════════════════ */
.ck-toggle {
    position: relative;
    display: inline-block;
    width: 46px; height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}
.ck-toggle input {
    opacity: 0; width: 0; height: 0;
    position: absolute;
}
.ck-slider {
    position: absolute; inset: 0;
    background: rgba(200, 230, 245, 0.1);
    border: 1px solid rgba(200, 230, 245, 0.15);
    border-radius: 26px;
    transition: background 0.3s, border-color 0.3s;
    cursor: pointer;
}
.ck-slider::after {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border-radius: 50%;
    left: 2px; top: 2px;
    background: rgba(200, 230, 245, 0.5);
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.28s;
    box-shadow: 0 1px 5px rgba(0,0,0,0.4);
}
.ck-toggle input:checked + .ck-slider {
    background: rgba(184, 154, 94, 0.22);
    border-color: rgba(184, 154, 94, 0.55);
    box-shadow: 0 0 12px rgba(184, 154, 94, 0.25);
}
.ck-toggle input:checked + .ck-slider::after {
    transform: translateX(20px);
    background: linear-gradient(135deg, #b89a5e, #d4b87a);
    box-shadow: 0 1px 6px rgba(184,154,94,0.5);
}
.ck-toggle input:disabled + .ck-slider {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}


/* ── Pied du panneau ── */
.ckp-footer {
    padding: 1.1rem 1.8rem;
    border-top: 1px solid rgba(200, 230, 245, 0.08);
    background: rgba(0,0,0,0.15);
}
.ckp-save {
    width: 100%;
    background: linear-gradient(135deg, #b89a5e, #d4b87a);
    color: #0d1b2a;
    border: none;
    border-radius: 30px;
    padding: 0.82rem 1.4rem;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(184,154,94,0.32);
}
.ckp-save:hover {
    background: linear-gradient(135deg, #c9aa6e, #e8cc8c);
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(184,154,94,0.45);
}


/* ══════════════════════════════════════════
   BOUTON ROUVRIR (après consentement)
══════════════════════════════════════════ */
#cookie-reopen {
    position: fixed;
    bottom: 1.4rem; left: 1.4rem;
    z-index: 9000;
    background: linear-gradient(135deg, #0f2035, #1a2e42);
    border: 1px solid rgba(184, 154, 94, 0.38);
    border-radius: 50px;
    padding: 0.55rem 1.1rem;
    font-family: 'DM Sans', system-ui, sans-serif;
    font-size: 0.67rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b89a5e;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 0.45rem;
    transition: all 0.25s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}
#cookie-reopen::before {
    content: '✦';
    font-size: 0.55rem;
    color: #d4b87a;
}
#cookie-reopen:hover {
    background: linear-gradient(135deg, #1a2e42, #253d54);
    border-color: rgba(184, 154, 94, 0.65);
    color: #d4b87a;
    box-shadow: 0 6px 22px rgba(0,0,0,0.5), 0 0 14px rgba(184,154,94,0.15);
    transform: translateY(-1px);
}
#cookie-reopen.show { display: flex; }


/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 640px) {
    .ck-inner {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding: 1.6rem 1.5rem 1.5rem;
    }
    #cookie-banner { bottom: 1rem; }
    .ck-actions { flex-direction: row; flex-wrap: wrap; min-width: 0; }
    .ck-btn { flex: 1; min-width: 120px; }
    #cookie-panel { right: 1rem; bottom: 1rem; width: calc(100vw - 2rem); }
}

/* ── SECTION AVIS AVEC IMAGE DE FOND ── */
.reviews-section {
    padding: 100px 0;
    position: relative;
    /* On combine l'image et un dégradé sombre pour que le texte reste lisible */
    background-image: linear-gradient(rgba(5, 14, 24, 0.85), rgba(5, 14, 24, 0.85)), url('salon.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optionnel : crée un léger effet parallaxe au scroll */
    overflow: hidden;
}

.reviews-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: #fafaf8;
    text-align: center;
    margin-bottom: 50px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.reviews-section h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: #b89a5e;
    margin: 20px auto 0;
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 24px;
    padding: 20px 5%;
    scrollbar-width: none;
    position: relative;
    z-index: 2; /* Pour passer au-dessus du fond */
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 85%;
    /* On rend la carte un peu plus opaque pour qu'elle se détache du fond photo */
    background: rgba(13, 27, 42, 0.7); 
    backdrop-filter: blur(10px); /* Effet de flou derrière la carte (très moderne) */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(184, 154, 94, 0.3);
    padding: 40px 30px;
    border-radius: 0;
    scroll-snap-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-card:hover {
    border-color: rgba(184, 154, 94, 0.8);
    background: rgba(13, 27, 42, 0.9);
    transform: translateY(-5px);
}

.stars {
    color: #b89a5e;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.review-card p {
    font-family: 'DM Sans', sans-serif;
    color: #fafaf8; /* Texte blanc pur pour contraster avec l'image */
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.author {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: #b89a5e;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .review-card {
        flex: 0 0 350px;
    }
}
/* ─── ILS EN PARLENT ─── */
.ils-en-parlent {
    background: var(--navy);
    padding: 7rem 0;
}

.ils-en-parlent .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.ils-en-parlent .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
    margin-top: 0.5rem;
}

.ils-en-parlent .section-tag {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.video-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* ratio 16:9 */
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--navy-mid);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(184,154,94,0.15);
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(184,154,94,0.35);
}

.video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .ils-en-parlent {
        padding: 4rem 0;
    }
}
