/* ==========================================================================
   JUST MOD — Stylesheet (faithful copy)
   ========================================================================== */

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

:root {
    --c-bg:        #ffffff;
    --c-surface:   #ffffff;
    --c-dark:      #111111;
    --c-text:      #1a1a1a;
    --c-muted:     #5f5f5f;
    --c-line:      #e6e6e6;
    --c-primary:   #111111;
    --c-accent:    #c8a063;

    --ff-sans: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    --ff-display: 'Inter', sans-serif;
    --ff-serif: 'Inter', sans-serif;

    --radius: 6px;
    --radius-lg: 14px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
    --shadow:    0 14px 44px rgba(0,0,0,.10);
    --shadow-lg: 0 24px 60px rgba(0,0,0,.18);

    --header-h: 80px;
    --container: 1280px;

    --t-fast: .2s ease;
    --t:      .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--ff-sans);
    color: var(--c-text);
    background: var(--c-bg);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

h1, h2, h3, h4 {
    font-family: var(--ff-display);
    font-weight: 700;
    line-height: 1.1;
    color: var(--c-dark);
    letter-spacing: -.02em;
    text-transform: none;
}
h1 { font-size: clamp(2.6rem, 8vw, 7rem); }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: .9rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; }

p { color: var(--c-muted); }

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

/* BUTTONS
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: all var(--t);
    border: 1.5px solid transparent;
    white-space: nowrap;
    cursor: pointer;
}
.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: .8rem; }

.btn-primary { background: var(--c-dark); color: #fff; }
.btn-primary:hover { background: var(--c-accent); transform: translateY(-2px); box-shadow: var(--shadow); }

.contact-form .btn-primary { background: #0275c5; }
.contact-form .btn-primary:hover { background: #015a99; }

.btn-outline { border-color: var(--c-dark); color: var(--c-dark); }
.btn-outline:hover { background: var(--c-dark); color: #fff; }

.btn-ghost { color: #fff; border-color: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; color: var(--c-dark); }

/* HEADER
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: all var(--t);
}
.site-header.scrolled { border-color: var(--c-line); box-shadow: var(--shadow-sm); }
.site-header.transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}
.site-header.transparent .main-nav a,
.site-header.transparent .logo img { filter: brightness(0) invert(1); }
.site-header.transparent.scrolled {
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
}
.site-header.transparent.scrolled .main-nav a,
.site-header.transparent.scrolled .logo img { filter: none; }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}
.logo img { height: 56px; width: auto; transition: filter var(--t); }

.main-nav ul { display: flex; gap: 40px; list-style: none; }
.main-nav a {
    font-size: .85rem;
    font-weight: 600;
    color: var(--c-dark);
    position: relative;
    padding: 6px 0;
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: filter var(--t);
}
.main-nav a::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 1.5px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--t);
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); transform-origin: left; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.burger {
    display: none;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.burger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--c-dark);
    transition: all var(--t-fast);
}
.site-header.transparent:not(.scrolled) .burger span { background: #fff; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* 1. HERO VIDEO
   -------------------------------------------------------------------------- */
.hero-video {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.55) 100%);
    z-index: 1;
}
.hero-video-title {
    position: relative;
    width: 100%;
    z-index: 2;
    color: #fff;
    text-align: center;
    padding: 0 24px;
}
.hero-video-title h1 {
    color: #fff;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(2rem, 6vw, 5.5rem);
    line-height: 1.1;
    text-transform: none;
    letter-spacing: -.02em;
    margin: 0 auto;
    max-width: 14ch;
    text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* 2. CONTACT
   -------------------------------------------------------------------------- */
.contact { padding: clamp(60px, 8vw, 110px) 0; background: #fff; }
.contact .container { max-width: 720px; }

.contact-text { text-align: center; margin-bottom: 3rem; }
.contact-text h2 {
    margin-bottom: 1.2rem;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 600;
    letter-spacing: 0;
    color: var(--c-dark);
}
.contact-text .contact-sub {
    font-size: clamp(1.35rem, 3.8vw, 2.2rem);
    font-weight: 700;
    color: var(--c-dark);
    margin: 0 auto 2rem;
    line-height: 1.2;
    letter-spacing: -.02em;
    max-width: 22ch;
}
.contact-text p { font-size: 1.05rem; line-height: 1.7; color: var(--c-dark); max-width: 540px; margin: 0 auto; }
.contact-text p a { color: var(--c-dark); }
.contact-text p a[href^="tel:"] { color: #0275c5; }
.contact-text p strong { font-weight: 800; border-bottom: 2px solid currentColor; }

.contact-form {
    background: #f4f4f4;
    padding: clamp(20px, 3vw, 32px);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-form input:not([type="checkbox"]),
.contact-form select,
.contact-form textarea {
    padding: 18px 22px;
    border: 1.5px solid #e0e0e0;
    border-radius: 100px;
    background: transparent;
    color: var(--c-dark);
    transition: all var(--t-fast);
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
}
.contact-form select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23999' stroke-width='1.5'><path d='M1 1l5 5 5-5'/></svg>"); background-repeat: no-repeat; background-position: right 22px center; padding-right: 48px; }
.contact-form textarea {
    border-radius: 22px;
    resize: vertical;
    min-height: 160px;
    padding: 18px 22px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #999; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--c-dark);
    background: #fff;
}
.contact-form .btn {
    margin-top: 8px;
    align-self: stretch;
    padding: 18px 32px;
    font-size: .95rem;
}
.form-msg { margin: 0; font-size: .9rem; min-height: 1.4em; text-align: center; }
.form-msg.success { color: #2a7d4f; }

/* 3. RICH TEXT (SeikoMod)
   -------------------------------------------------------------------------- */
.rich-text { padding: clamp(80px, 10vw, 140px) 0; }
.rich-text .container { max-width: 880px; }
.rich-text h2 {
    text-align: center;
    margin-bottom: 3rem;
}
.rich-text h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 1.5rem;
}
.rich-text p {
    color: var(--c-text);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
}
.rich-text p[data-placeholder] {
    color: #aaa;
    background: #fafafa;
    border-left: 3px dashed #ddd;
    padding: 14px 18px;
    border-radius: 4px;
}

/* 4. SERVICES SCROLL (4 services in alternating layout)
   -------------------------------------------------------------------------- */
.services-scroll { padding: clamp(60px, 8vw, 120px) 0; }

.services-row {
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 8vw, 110px);
}

.service-block {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(40px, 6vw, 90px);
    align-items: center;
}
.service-block.reverse { grid-template-columns: 1fr 1.1fr; }
.service-block.reverse .service-block-img { order: 2; }
.service-block.reverse .service-block-text { order: 1; }

.service-block-img {
    overflow: hidden;
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
}
.service-block-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}
.service-block:hover .service-block-img img { transform: scale(1.05); }

.service-block-num {
    display: inline-block;
    font-weight: 600;
    font-size: .9rem;
    color: #0275c5;
    margin-bottom: 1rem;
    letter-spacing: .2em;
}
.service-block-text h3 {
    text-transform: none;
    font-weight: 700;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    margin-bottom: .8rem;
    letter-spacing: -.02em;
}
.service-block-sub {
    font-weight: 500;
    font-size: .95rem;
    color: var(--c-dark);
    margin-bottom: 1.5rem;
}
.service-block-text p { font-size: .9rem; margin-bottom: 1.2rem; }
.service-block-result {
    color: var(--c-dark) !important;
    font-weight: 600;
    padding: 14px 20px;
    background: #fafafa;
    border-left: 3px solid #0275c5;
    border-radius: 4px;
    margin-top: 1.5rem !important;
    margin-bottom: 0 !important;
}

/* 5. IMAGE OVERLAY
   -------------------------------------------------------------------------- */
.image-overlay {
    position: relative;
    height: clamp(400px, 70vh, 720px);
    overflow: hidden;
    color: #fff;
    text-align: center;
}
.image-overlay > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.image-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.3), rgba(0,0,0,.6));
    z-index: 1;
}
.image-overlay-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px;
}
.image-overlay-content h2 {
    color: #fff;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-transform: none;
}
.image-overlay-content p {
    font-weight: 400;
    color: rgba(255,255,255,.9);
    font-size: clamp(1.2rem, 2.2vw, 1.6rem);
}

/* 7. VALUES (3 colonnes icônes)
   -------------------------------------------------------------------------- */
.values { padding: clamp(80px, 10vw, 140px) 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.value-card {
    text-align: center;
    padding: 40px 24px;
}
.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0275c5;
}
.value-icon svg { width: 56px; height: 56px; }
.value-card h3 {
    text-transform: none;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: .8rem;
    color: #0275c5;
}
.value-card p { font-size: 1rem; color: #0275c5; }

.values-carousel { position: relative; }
.values-arrow { display: none; }
.values-dots { display: none; }

/* 8. GALLERY CAROUSEL
   -------------------------------------------------------------------------- */
.gallery-carousel { padding: 0 0 clamp(80px, 10vw, 140px); }
.gc-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}
.gc-wrapper::-webkit-scrollbar { display: none; }
.gc-wrapper.is-dragging { cursor: grabbing; user-select: none; }
.gc-wrapper.is-dragging .gc-item img { transition: none; pointer-events: none; }
.gc-track {
    display: flex;
    gap: 16px;
    width: max-content;
    will-change: scroll-position;
}
.gc-item {
    flex: 0 0 calc((100vw - 80px) / 5);
    max-width: 280px;
    aspect-ratio: 4/5;
    border-radius: 24px;
    overflow: hidden;
    cursor: zoom-in;
}
.gc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s ease;
}
.gc-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    padding: 24px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lb-img {
    max-width: min(92vw, 1200px);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transform: scale(.96);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}
.lightbox.is-open .lb-img { transform: scale(1); }
.lb-close,
.lb-nav {
    position: absolute;
    background: rgba(255, 255, 255, .12);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), transform var(--t-fast);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.lb-close:hover,
.lb-nav:hover { background: rgba(255, 255, 255, .25); }
.lb-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 28px;
    line-height: 1;
}
.lb-nav {
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    font-size: 32px;
    line-height: 1;
}
.lb-nav:hover { transform: translateY(-50%) scale(1.05); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
@media (max-width: 640px) {
    .lb-nav { width: 42px; height: 42px; font-size: 26px; }
    .lb-prev { left: 12px; }
    .lb-next { right: 12px; }
    .lb-close { top: 12px; right: 12px; width: 38px; height: 38px; font-size: 24px; }
}


/* 9. BOTTOM MARQUEE
   -------------------------------------------------------------------------- */
.bottom-marquee {
    background: var(--c-dark);
    color: #fff;
    padding: 36px 0;
    overflow: hidden;
    border-top: 1px solid var(--c-line);
}
.bottom-marquee-track {
    display: flex;
    gap: 36px;
    width: max-content;
    animation: marquee 50s linear infinite;
    align-items: center;
    white-space: nowrap;
}
.bottom-marquee-track span {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: clamp(1.5rem, 3.5vw, 3rem);
    text-transform: uppercase;
    letter-spacing: .02em;
}
.bottom-marquee-track span:nth-child(2n) {
    -webkit-text-stroke: 1.5px #fff;
    color: transparent;
}
.bottom-marquee-track span:nth-child(odd) { color: #fff; }

/* FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: #f6f6f6;
    color: var(--c-text);
    padding: 80px 0 0;
    border-top: 1px solid var(--c-line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}
.footer-logo { height: 60px; width: auto; margin-bottom: 16px; }

.footer-col h4 { color: var(--c-dark); margin-bottom: 18px; font-size: .8rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a, .footer-col li { font-size: .9rem; color: var(--c-muted); }
.footer-col a:hover { color: var(--c-dark); }
.footer-contact em { font-style: normal; font-weight: 700; color: var(--c-dark); border-bottom: 1px solid currentColor; }

.newsletter-form {
    display: flex;
    gap: 6px;
    margin-bottom: 18px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid var(--c-line);
    border-radius: 4px;
    background: #fff;
    font-size: .9rem;
}
.newsletter-form .btn { padding: 12px 18px; font-size: .75rem; }

.socials { display: flex; gap: 10px; }
.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--c-line);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--t-fast);
    color: var(--c-dark);
}
.socials a:hover { background: var(--c-dark); color: #fff; border-color: var(--c-dark); }
.socials svg { width: 16px; height: 16px; }

.footer-bottom {
    border-top: 1px solid var(--c-line);
    padding: 20px 0;
}
.footer-bottom p { font-size: .8rem; margin: 0; color: var(--c-muted); text-align: center; }

/* PAGE TEMPLATE (pages secondaires)
   -------------------------------------------------------------------------- */
.page-hero {
    padding: 160px 0 80px;
    text-align: center;
    background: var(--c-dark);
    color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: 1rem; font-size: clamp(2rem, 5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,.75); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: .75rem;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: #fff; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: clamp(60px, 8vw, 120px) 0;
}
.gallery-item {
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

.section-header { max-width: 700px; margin: 0 auto 4rem; }
.section-header.center { text-align: center; }
.section-header p { margin-top: 1rem; font-size: 1.05rem; }
.section-num {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    color: var(--c-accent);
    margin-bottom: 1rem;
    letter-spacing: .15em;
    text-transform: uppercase;
}

/* PRICING */
.pricing { padding: clamp(60px, 8vw, 120px) 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}
.price-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--t);
    position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.price-card.featured { background: var(--c-dark); color: #fff; border-color: var(--c-dark); }
.price-card.featured h3 { color: #fff; }
.price-card.featured p { color: rgba(255,255,255,.7); }
.price-card.featured .price-amount { color: var(--c-accent); }
.price-card.featured .price-features li { color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.12); }

.price-badge {
    position: absolute;
    top: -14px;
    right: 28px;
    background: var(--c-accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    padding: 6px 14px;
    border-radius: 100px;
}
.price-card h3 { margin-bottom: 8px; text-transform: none; }
.price-card > p { font-size: .92rem; margin-bottom: 28px; }
.price-amount {
    font-family: var(--ff-display);
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1;
}
.price-amount small {
    font-size: .75rem;
    color: var(--c-muted);
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    display: block;
    margin-top: 8px;
}
.price-features { list-style: none; margin-bottom: 32px; }
.price-features li {
    padding: 12px 0 12px 28px;
    border-top: 1px solid var(--c-line);
    font-size: .92rem;
    position: relative;
}
.price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--c-accent);
    font-weight: 700;
}
.price-features li:last-child { border-bottom: 1px solid var(--c-line); }
.price-card.featured .price-features li:last-child { border-bottom-color: rgba(255,255,255,.12); }

/* APPOINTMENT page */
.appointment-section { padding: clamp(60px, 8vw, 120px) 0; }
.appointment-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: start;
}
.appointment-info {
    background: var(--c-dark);
    color: #fff;
    padding: clamp(36px, 5vw, 56px);
    border-radius: var(--radius-lg);
    position: sticky;
    top: calc(var(--header-h) + 24px);
}
.appointment-info h2 { color: #fff; margin-bottom: 1rem; }
.appointment-info p { color: rgba(255,255,255,.75); }
.appointment-info ul { list-style: none; margin-top: 32px; }
.appointment-info li { padding: 18px 0; border-top: 1px solid rgba(255,255,255,.12); display: flex; justify-content: space-between; gap: 16px; }
.appointment-info li:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.appointment-info strong { color: var(--c-accent); font-size: .8rem; letter-spacing: .15em; text-transform: uppercase; }
.appointment-info a { color: #fff; }

.cta-band {
    background: var(--c-dark);
    color: #fff;
    padding: clamp(60px, 8vw, 100px) 0;
    text-align: center;
}
.cta-band h2 { color: #fff; max-width: 750px; margin: 0 auto 1rem; }
.cta-band p { color: rgba(255,255,255,.75); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-ghost-light { color: var(--c-dark); border-color: var(--c-dark); }
.btn-ghost-light:hover { background: var(--c-dark); color: #fff; }
.center-cta { text-align: center; margin-top: 3rem; }

/* Visually hidden (accessible to SEO and screen readers) */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Pricing — flyer image */
.flyer-wrap {
    margin: 0 auto;
    max-width: 720px;
    padding: clamp(20px, 4vw, 48px) 0;
}
.flyer-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15);
    cursor: zoom-in;
    transition: transform var(--t-fast);
}
.flyer-img:hover { transform: translateY(-2px); }

.pricing-detail {
    max-width: 720px;
    margin: clamp(40px, 6vw, 72px) auto 0;
    padding: 0 16px;
}
.pricing-detail h2 {
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    margin: clamp(28px, 4vw, 44px) 0 12px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.pricing-detail h3 {
    font-size: 1.05rem;
    margin: 20px 0 8px;
    color: var(--c-dark);
}
.pricing-detail p, .pricing-detail li {
    color: var(--c-muted);
    line-height: 1.65;
    font-size: .98rem;
}
.pricing-detail p { margin-bottom: 12px; }
.pricing-intro { font-size: 1.05rem; }
.pricing-options { list-style: none; padding: 0; columns: 2; column-gap: 24px; margin: 8px 0 0; }
.pricing-options li {
    padding: 6px 0;
    break-inside: avoid;
}
.pricing-detail a { color: var(--c-accent); text-decoration: underline; }
@media (max-width: 600px) {
    .pricing-options { columns: 1; }
}

/* Pricing — section titles, 2-col layout & options */
.pricing-grid + .pricing-section-title { margin-top: clamp(56px, 7vw, 88px); }
.pricing-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    margin: 0 auto clamp(28px, 4vw, 48px);
}
.pricing-section-title:first-child { margin-top: 0; }
.pricing-section-title h2 {
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    text-transform: uppercase;
    letter-spacing: .04em;
    margin: 0;
}
.pricing-section-mark {
    color: var(--c-accent);
    font-size: 1.4rem;
    line-height: 1;
}
.pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; }

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 32px;
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    padding: 36px clamp(24px, 5vw, 48px);
}
.option-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--c-line);
    font-size: .98rem;
}
.option-item:nth-last-child(-n+2) { border-bottom: none; }
.option-label { color: var(--c-dark); }
.option-price { font-weight: 700; color: var(--c-accent); white-space: nowrap; }

/* RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .service-block,
    .service-block.reverse { grid-template-columns: 1fr; gap: 32px; }
    .service-block.reverse .service-block-img { order: 0; }
    .service-block.reverse .service-block-text { order: 0; }
    .values-carousel { overflow: hidden; }
    .values-grid {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        transition: transform .5s cubic-bezier(.4,0,.2,1);
        will-change: transform;
        touch-action: pan-y;
    }
    .value-card {
        flex: 0 0 100%;
        min-width: 0;
        padding: 32px 16px;
    }
    .values-arrow {
        position: absolute;
        top: calc(50% - 24px);
        transform: translateY(-50%);
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: #fff;
        box-shadow: var(--shadow);
        color: var(--c-dark);
        font-size: 1.4rem;
        line-height: 1;
        z-index: 4;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        cursor: pointer;
    }
    .values-prev { left: 4px; }
    .values-next { right: 4px; }
    .values-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }
    .values-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(0,0,0,.18);
        transition: background var(--t-fast);
    }
    .values-dot.active { background: var(--c-dark); }
    .gc-item { flex: 0 0 calc((100vw - 64px) / 3); max-width: 320px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-grid-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; gap: 14px; }
    .pricing-grid-2 .price-card { padding: 24px 18px; }
    .pricing-grid-2 .price-card h3 { font-size: 1.1rem; }
    .pricing-grid-2 .price-card > p { font-size: .85rem; margin-bottom: 16px; }
    .pricing-grid-2 .price-amount { font-size: 1.1rem; }
    .pricing-grid-2 .price-features li { font-size: .85rem; padding: 8px 0 8px 20px; }
    .options-grid { grid-template-columns: 1fr; max-width: 420px; }
    .option-item:nth-last-child(-n+2) { border-bottom: 1px dashed var(--c-line); }
    .option-item:last-child { border-bottom: none; }
    .appointment-grid { grid-template-columns: 1fr; gap: 48px; }
    .appointment-info { position: static; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .burger { display: flex; }

    .main-nav {
        position: fixed;
        top: calc(var(--header-h) + 12px);
        right: 12px;
        bottom: auto;
        width: calc(100% - 24px);
        max-width: 360px;
        background: #ffffff;
        padding: 24px 28px;
        border-radius: 20px;
        transform: translateX(calc(100% + 24px));
        transition: transform var(--t);
        z-index: 99;
        box-shadow: 0 24px 60px rgba(0,0,0,.18);
    }
    .main-nav.open { transform: translateX(0); }
    .main-nav ul {
        flex-direction: column;
        gap: 4px;
        align-items: stretch;
    }
    .main-nav a {
        color: var(--c-dark) !important;
        filter: none !important;
        font-family: var(--ff-display);
        font-weight: 600;
        font-size: 1.15rem;
        padding: 16px 4px;
        border-bottom: 1px solid rgba(0,0,0,.06);
        text-transform: none;
        letter-spacing: 0;
    }
    .main-nav li:last-child a { border-bottom: none; }
    .main-nav a::after { display: none; }

    .container { padding: 0 20px; }

    .hero-video { min-height: 500px; }

    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }

    .gc-item { flex: 0 0 calc((100vw - 48px) / 2); max-width: 280px; }

    /* Services: horizontal scroll on mobile */
    .services-scroll .container { padding: 0; }
    .services-row {
        flex-direction: row;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 16px;
        scrollbar-width: none;
        align-items: flex-start;
    }
    .services-row::-webkit-scrollbar { display: none; }
    .service-block,
    .service-block.reverse {
        flex: 0 0 85%;
        scroll-snap-align: center;
        gap: 20px;
        align-items: start;
        align-content: start;
    }

    .gallery-grid { grid-template-columns: 1fr; }
    body { font-size: 15px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .logo img { height: 44px; }
    .btn { padding: 14px 24px; font-size: .85rem; }
}

/* LEGAL PAGES (mentions, CGU/CGV, confidentialité)
   -------------------------------------------------------------------------- */
.legal-hero {
    background: #0b0c10;
    color: #fff;
    padding: clamp(120px, 14vw, 170px) 0 clamp(50px, 6vw, 70px);
    border-bottom: 1px solid #1a1c22;
}
.legal-hero .container { max-width: 1100px; }
.legal-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-display);
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: rgba(255, 255, 255, .45);
    margin: 0 0 28px;
    font-weight: 500;
}
.legal-breadcrumb a { color: rgba(255, 255, 255, .75); text-decoration: none; transition: color var(--t-fast); }
.legal-breadcrumb a:hover { color: #fff; }
.legal-breadcrumb span[aria-hidden] { opacity: .35; }
.legal-hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(2.2rem, 4.6vw, 3.4rem);
    line-height: 1.05;
    margin: 0 0 20px;
    letter-spacing: -.02em;
    font-weight: 600;
}
.legal-hero .legal-tagline {
    font-size: clamp(.95rem, 1.4vw, 1.05rem);
    color: rgba(255, 255, 255, .65);
    max-width: 640px;
    line-height: 1.6;
    margin: 0 0 28px;
    font-weight: 300;
}
.legal-hero .legal-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
}
.legal-hero .legal-pills li {
    font-family: var(--ff-display);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-weight: 500;
    padding: 10px 18px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7);
}

.legal {
    background: #fafafa;
    padding: clamp(40px, 5vw, 70px) 0 clamp(70px, 8vw, 110px);
}
.legal .container { max-width: 1100px; }
.legal-layout {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: start;
}
.legal-aside {
    position: sticky;
    top: 100px;
    align-self: start;
}
.legal-toc {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 0;
    padding: 24px 26px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}
.legal-toc::-webkit-scrollbar { width: 4px; }
.legal-toc::-webkit-scrollbar-thumb { background: #ccc; }
.legal-toc::-webkit-scrollbar-track { background: transparent; }
.legal-toc-label {
    display: block;
    font-family: var(--ff-display);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-weight: 600;
    color: #999;
    margin: 0 0 14px;
}
.legal-toc ol {
    list-style: none;
    counter-reset: toc;
    padding: 0;
    margin: 0;
}
.legal-toc li {
    counter-increment: toc;
    margin: 0;
    border-left: 1px solid #e6e6e6;
    transition: border-color var(--t-fast);
}
.legal-toc a {
    display: flex;
    gap: 12px;
    padding: 6px 0 6px 14px;
    font-size: .82rem;
    line-height: 1.4;
    color: #555;
    text-decoration: none;
    transition: color var(--t-fast);
}
.legal-toc a::before {
    content: counter(toc, decimal-leading-zero);
    font-family: var(--ff-display);
    font-weight: 500;
    font-size: .72rem;
    color: #bbb;
    flex-shrink: 0;
    letter-spacing: .04em;
    transition: color var(--t-fast);
}
.legal-toc li:hover { border-left-color: #0b0c10; }
.legal-toc li:hover a,
.legal-toc li:hover a::before { color: #0b0c10; }
.legal-toc li.is-active { border-left-color: #0b0c10; }
.legal-toc li.is-active a { color: #0b0c10; font-weight: 600; }
.legal-toc li.is-active a::before { color: #0b0c10; }

.legal-content {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 0;
    padding: clamp(36px, 4.5vw, 64px);
}
.legal-section { scroll-margin-top: 100px; }
.legal-section + .legal-section { margin-top: clamp(48px, 5.5vw, 72px); }
.legal-section h2 {
    font-family: var(--ff-display);
    font-size: clamp(1.5rem, 2.3vw, 1.85rem);
    margin: 0 0 22px;
    color: #0b0c10;
    line-height: 1.18;
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
    font-weight: 600;
    letter-spacing: -.01em;
}
.legal-section h2 .sec-num {
    display: block;
    font-family: var(--ff-sans, 'Inter', sans-serif);
    font-weight: 500;
    font-size: .68rem;
    color: #0275c5;
    letter-spacing: .22em;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.legal-section h2 .sec-num + .sec-title {
    display: block;
    font-weight: 600;
    font-family: var(--ff-display);
}
.legal h3 {
    font-family: var(--ff-display);
    font-size: 1.08rem;
    margin: 28px 0 10px;
    color: #0b0c10;
    font-weight: 600;
}
.legal p, .legal li {
    font-size: .95rem;
    line-height: 1.72;
    color: #2a2a2a;
}
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { padding-left: 22px; margin: 10px 0 18px; }
.legal li { margin: 5px 0; }
.legal strong { color: #0b0c10; font-weight: 600; }
.legal a { color: #0275c5; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.legal a:hover { color: #0b0c10; }

.legal-callout {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 0;
    margin: 20px 0;
    border-left: 2px solid #0b0c10;
    background: #f5f5f5;
}
.legal-callout svg { flex-shrink: 0; width: 14px; height: 14px; margin-top: 4px; color: #0b0c10; stroke-width: 2; }
.legal-callout p { margin: 0; font-size: .88rem; line-height: 1.6; }
.legal-callout strong { display: block; margin-bottom: 4px; color: #0b0c10; font-size: .88rem; font-weight: 600; }
.legal-callout--warn { border-left-color: #c84a14; }
.legal-callout--warn svg { color: #c84a14; }
.legal-callout--key { border-left-color: #0275c5; }
.legal-callout--key svg { color: #0275c5; }

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #ececec;
}
.legal-actions button,
.legal-actions a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 0;
    border: 1px solid #e0e0e0;
    margin-right: -1px;
    background: #fff;
    font-family: var(--ff-display);
    font-size: .78rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #555;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--t-fast);
}
.legal-actions button svg { width: 13px; height: 13px; }
.legal-actions button:hover,
.legal-actions a:hover {
    border-color: #0b0c10;
    color: #0b0c10;
    background: #fafafa;
    z-index: 1;
    position: relative;
}

@media (max-width: 880px) {
    .legal-layout { grid-template-columns: 1fr; }
    .legal-aside { position: static; }
    .legal-toc {
        padding: 16px 20px;
        font-size: .9rem;
    }
}

@media print {
    .site-header, .site-footer, .legal-aside, .legal-actions { display: none; }
    .legal-hero { background: #fff; color: #000; padding: 0 0 20px; }
    .legal-hero h1 { color: #000; }
    .legal-hero .legal-tagline, .legal-hero .legal-pills { display: none; }
    .legal-breadcrumb { color: #555; }
    .legal { padding: 0; background: #fff; }
    .legal-layout { display: block; }
    .legal-content { box-shadow: none; border: none; padding: 0; }
    .legal-section h2 { break-after: avoid; }
}

.legal-form-note {
    font-size: .8rem;
    color: #555;
    margin: 6px 0 0;
}
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .8rem;
    color: #6b6b6b;
    line-height: 1.55;
    padding: 14px 4px 4px;
    cursor: pointer;
    user-select: none;
}
.form-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    padding: 0;
    border: 1.5px solid #cfcfcf;
    border-radius: 4px;
    background: #fff;
    flex-shrink: 0;
    cursor: pointer;
    transition: all .15s ease;
    position: relative;
    box-sizing: border-box;
}
.form-consent input[type="checkbox"]:hover { border-color: #0b0c10; }
.form-consent input[type="checkbox"]:checked {
    background: #0b0c10;
    border-color: #0b0c10;
}
.form-consent input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 1.7px 1.7px 0;
    transform: rotate(45deg);
}
.form-consent input[type="checkbox"]:focus-visible {
    outline: 2px solid #0275c5;
    outline-offset: 2px;
}
.form-consent span { flex: 1; min-width: 0; }
.form-consent a {
    color: #0b0c10;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: #cfcfcf;
    text-decoration-thickness: 1px;
    transition: text-decoration-color .15s;
}
.form-consent a:hover { text-decoration-color: #0275c5; color: #0275c5; }

/* REVEAL ANIMATIONS
   -------------------------------------------------------------------------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
