/* =========================
   Reset & base
   ========================= */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; }

:root {
    --bg: #f7f8f5;
    --bg-alt: #ffffff;
    --ink: #0f1d18;
    --ink-soft: #4a5a54;
    --muted: #6b7872;
    --line: #e6ebe7;

    --primary: #1f7a5a;          /* deep emerald */
    --primary-soft: #e8f3ed;
    --primary-dark: #155742;
    --accent: #c6e7d4;            /* mint */

    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 28px;
    --shadow-sm: 0 1px 2px rgba(15, 29, 24, 0.04), 0 1px 3px rgba(15, 29, 24, 0.06);
    --shadow: 0 10px 30px -12px rgba(15, 29, 24, 0.18);
    --shadow-lg: 0 30px 60px -20px rgba(15, 29, 24, 0.25);

    --container: 1200px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.1;
    font-weight: 600;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 0.95rem; font-weight: 700; font-family: 'Inter', sans-serif; letter-spacing: 0.02em; }
em { font-style: italic; color: var(--primary); }

.eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary);
    padding: 6px 14px;
    background: var(--primary-soft);
    border-radius: 999px;
    margin-bottom: 18px;
}

.muted { color: var(--muted); }
.small { font-size: 0.85rem; }
.strong { font-weight: 600; color: var(--ink); }
.lead { font-size: 1.15rem; color: var(--ink-soft); max-width: 32rem; }
.section-lead { font-size: 1.05rem; color: var(--ink-soft); max-width: 38rem; margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 6px 18px -6px rgba(31, 122, 90, 0.55);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 24px -8px rgba(31, 122, 90, 0.6); }
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }

/* =========================
   Nav
   ========================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(247, 248, 245, 0.8);
    backdrop-filter: saturate(180%) blur(16px);
    -webkit-backdrop-filter: saturate(180%) blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.nav.scrolled {
    border-bottom-color: var(--line);
    background: rgba(247, 248, 245, 0.92);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 18px;
    padding-bottom: 18px;
    gap: 24px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
}
.brand-mark svg { width: 20px; height: 20px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; font-size: 0.95rem; }
.brand-text strong { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.05rem; }
.brand-text span { color: var(--muted); font-size: 0.8rem; }

.nav-links {
    display: flex;
    gap: 32px;
    font-size: 0.95rem;
    color: var(--ink-soft);
}
.nav-links a { position: relative; transition: color 0.2s ease; }
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
    transform-origin: left;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink-soft);
    border: 1.5px solid var(--line);
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.social-icon:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-soft);
}
.nav-cta-group .nav-cta {
    padding: 11px 20px;
    font-size: 0.9rem;
}
.nav-cta-group .nav-cta svg { stroke: currentColor; }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

/* =========================
   Hero
   ========================= */
.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(60px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
}
.hero-bg {
    position: absolute;
    inset: -10% -10% auto -10%;
    height: 80%;
    background:
        radial-gradient(circle at 20% 20%, rgba(31, 122, 90, 0.12), transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(198, 231, 212, 0.6), transparent 55%);
    z-index: 0;
    pointer-events: none;
}
.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-text h1 { margin: 8px 0 20px; }
.hero-text .lead { margin-bottom: 32px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--ink-soft);
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.hero-meta div { display: flex; align-items: center; gap: 10px; }
.hero-meta strong { color: var(--ink); }
.dot {
    width: 9px; height: 9px; border-radius: 50%;
    display: inline-block;
}
.dot-open { background: #2bb673; box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.18); animation: pulse 2s infinite; }

.hero-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
    transition: color 0.2s ease;
}
.hero-rating span:first-child {
    color: #f4b400;
    letter-spacing: 1px;
    font-size: 0.95rem;
}
.hero-rating:hover { color: var(--primary); }
.hero-rating:hover span:last-child { text-decoration: underline; }
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.18); }
    50% { box-shadow: 0 0 0 8px rgba(43, 182, 115, 0.05); }
}

/* Hero photo */
.hero-visual {
    position: relative;
    aspect-ratio: 16 / 10;
    max-height: 460px;
}
.card-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(198, 231, 212, 0.6), transparent 60%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(30px);
}
.hero-photo {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.hero-photo:hover img { transform: scale(1.04); }
.hero-floating {
    position: absolute;
    bottom: -28px;
    left: -28px;
    right: 28px;
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    backdrop-filter: blur(10px);
}
.badge {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}
.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.2s ease;
}
.link-arrow:hover { gap: 12px; }

/* =========================
   Section heads
   ========================= */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}
.section-head h2 { margin: 8px 0 16px; }

/* =========================
   Services
   ========================= */
.services { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg-alt); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.service-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}
.service-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid; place-items: center;
    margin-bottom: 20px;
    transition: background 0.25s ease, color 0.25s ease;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card:hover .service-icon { background: var(--primary); color: #fff; }
.service-card h3 { margin-bottom: 8px; font-family: 'Inter', sans-serif; }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; }

.service-card-highlight {
    position: relative;
    border-color: var(--primary-soft);
    background: linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--primary-soft) 35%, var(--bg)) 100%);
}
.service-card-highlight:hover { border-color: var(--primary); }
.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =========================
   Exclusifs (services uniques)
   ========================= */
.exclusifs {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
    background: #0f1d18;
    color: #e6efea;
    overflow: hidden;
}
.exclusifs-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 0%, rgba(31, 122, 90, 0.45), transparent 40%),
        radial-gradient(circle at 85% 100%, rgba(198, 231, 212, 0.18), transparent 45%);
    pointer-events: none;
}
.exclusifs > .container { position: relative; z-index: 1; }
.eyebrow-light {
    background: rgba(198, 231, 212, 0.15);
    color: var(--accent);
}
.section-head-light h2 { color: #fff; }
.section-lead-light { color: rgba(230, 239, 234, 0.75); }

.exclusifs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.exclusif-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.exclusif-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(198, 231, 212, 0.25);
}
.exclusif-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-family: 'Fraunces', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: rgba(198, 231, 212, 0.18);
    letter-spacing: -0.02em;
    line-height: 1;
}
.exclusif-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #2b9870);
    color: #fff;
    display: grid;
    place-items: center;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px -8px rgba(31, 122, 90, 0.6);
}
.exclusif-icon svg { width: 28px; height: 28px; }
.exclusif-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent);
    background: rgba(198, 231, 212, 0.12);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}
.exclusif-card h3 {
    color: #fff;
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    margin-bottom: 12px;
    line-height: 1.2;
}
.exclusif-card p {
    color: rgba(230, 239, 234, 0.72);
    font-size: 0.95rem;
    margin-bottom: 18px;
}
.exclusif-card p strong { color: #fff; font-weight: 600; }
.exclusif-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(230, 239, 234, 0.78);
}
.exclusif-list li {
    position: relative;
    padding-left: 20px;
}
.exclusif-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.exclusifs-cta {
    margin-top: 48px;
    text-align: center;
}
.btn-on-dark {
    background: #fff;
    color: var(--ink);
}
.btn-on-dark:hover {
    background: var(--accent);
    color: var(--ink);
    transform: translateY(-2px);
}

@media (max-width: 960px) {
    .exclusifs-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* =========================
   Galerie
   ========================= */
.galerie { padding: clamp(80px, 10vw, 140px) 0; }
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}
.g-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}
.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.g-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(15, 29, 24, 0.18));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.g-item:hover img { transform: scale(1.06); }
.g-item:hover::after { opacity: 1; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

@media (max-width: 800px) {
    .galerie-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .g-wide { grid-column: span 2; }
    .g-tall { grid-row: span 1; }
}
@media (max-width: 480px) {
    .galerie-grid { grid-template-columns: 1fr; }
    .g-wide { grid-column: span 1; }
}

/* =========================
   Engagements
   ========================= */
.engagements { padding: clamp(80px, 10vw, 140px) 0; }
.engagements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.engagements-text h2 { margin: 8px 0 20px; }
.engagements-text > p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 32px; max-width: 32rem; }
.check-list { display: flex; flex-direction: column; gap: 20px; }
.check-list li { display: flex; gap: 16px; align-items: flex-start; }
.check {
    flex: 0 0 28px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: grid; place-items: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 2px;
}
.engagements-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.engagements-photo {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--primary-soft);
    aspect-ratio: 4 / 5;
}
.engagements-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.engagements-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.stat {
    background: var(--bg-alt);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: left;
}
.stat.alt {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.stat.alt .stat-label { color: rgba(255,255,255,0.85); }
.stat-num {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-num small { font-size: 1.6rem; font-weight: 500; opacity: 0.7; }
.stat-label { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.4; }

/* =========================
   Équipe
   ========================= */
.equipe { padding: clamp(80px, 10vw, 140px) 0; }
.equipe .section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}
.equipe-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.equipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px -22px rgba(31, 122, 90, 0.35);
    border-color: rgba(31, 122, 90, 0.3);
}
.equipe-card.lead {
    background: linear-gradient(160deg, rgba(31, 122, 90, 0.08), rgba(31, 122, 90, 0.02));
    border-color: rgba(31, 122, 90, 0.25);
    grid-column: span 1;
}
.equipe-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 18px;
    letter-spacing: 0.5px;
}
.equipe-card.lead .equipe-avatar { width: 84px; height: 84px; font-size: 1.7rem; }
.equipe-card h3 { font-size: 1.15rem; margin: 0 0 6px; }
.equipe-role {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
}
.equipe-card .muted { font-size: 0.9rem; line-height: 1.55; }
@media (max-width: 720px) {
    .equipe-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .equipe-card { padding: 24px 16px; }
    .equipe-card.lead { grid-column: 1 / -1; }
}

/* =========================
   Horaires
   ========================= */
.horaires { padding: clamp(80px, 10vw, 140px) 0; background: var(--bg-alt); }
.horaires-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.horaires-grid h2 { margin: 8px 0 16px; }
.horaires-list {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px 24px;
}
.horaire-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
}
.horaire-row:last-child { border-bottom: 0; }
.horaire-row span:first-child { color: var(--ink); font-weight: 500; }
.horaire-row span:last-child { color: var(--ink-soft); font-variant-numeric: tabular-nums; }
.horaire-row.closed span:last-child { color: #c25b5b; }

/* =========================
   Contact
   ========================= */
.contact { padding: clamp(80px, 10vw, 140px) 0; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.contact-info h2 { margin: 8px 0 12px; }
.contact-info > p { color: var(--ink-soft); margin-bottom: 32px; }
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.contact-icon {
    flex: 0 0 44px;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    display: grid; place-items: center;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-list a:hover { color: var(--primary); }

.map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--line);
    aspect-ratio: 4 / 3;
}
.map iframe { width: 100%; height: 100%; border: 0; }

/* =========================
   Legal pages (mentions, confidentialité)
   ========================= */
.legal-main {
    padding: clamp(110px, 14vw, 160px) 0 clamp(60px, 8vw, 100px);
    background: var(--bg);
}
.legal-content {
    max-width: 780px;
    margin: 0 auto;
}
.legal-content h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    margin: 12px 0 8px;
}
.legal-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    margin: 36px 0 12px;
    color: var(--ink);
}
.legal-content p,
.legal-content li {
    color: var(--ink-soft);
    line-height: 1.7;
    margin: 0 0 12px;
}
.legal-content ul {
    padding-left: 1.2rem;
    margin: 0 0 12px;
}
.legal-content strong { color: var(--ink); }
.legal-content a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.legal-meta {
    color: var(--ink-soft);
    font-size: 0.9rem;
    margin-bottom: 40px;
}

/* =========================
   Ordonnance CTA
   ========================= */
.ordonnance-cta {
    padding: clamp(50px, 7vw, 80px) 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
}
.ordonnance-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(32px, 4vw, 48px);
    box-shadow: 0 18px 40px -28px rgba(15, 29, 24, 0.25);
}
.ordonnance-text .eyebrow { margin-bottom: 14px; }
.ordonnance-text h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 12px;
}
.ordonnance-text p { color: var(--ink-soft); max-width: 36rem; margin: 0; }
.ordonnance-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.btn-ordonnance { white-space: nowrap; }
.ordonnance-note { font-style: italic; }
@media (max-width: 820px) {
    .ordonnance-inner { grid-template-columns: 1fr; gap: 24px; }
    .ordonnance-actions { align-items: stretch; }
    .btn-ordonnance { justify-content: center; }
}

/* =========================
   Témoignages
   ========================= */
.temoignages {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--line);
}
.temoignages .section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.temoignage-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.temoignage-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-soft);
}
.temoignage-card-wide {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-soft), #eaf6f0);
    border-color: transparent;
}
.temoignage-stars {
    color: #f4b400;
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1;
}
.temoignage-card blockquote {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 1.05rem;
    line-height: 1.55;
    color: var(--ink);
    font-style: italic;
    flex: 1;
    quotes: "« " " »";
}
.temoignage-card blockquote::before { content: open-quote; color: var(--primary); margin-right: 2px; }
.temoignage-card blockquote::after { content: close-quote; color: var(--primary); margin-left: 2px; }
.temoignage-card-wide blockquote { font-size: 1.15rem; }
.temoignage-card footer {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}
.temoignage-card footer strong {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
}
.temoignage-meta {
    font-size: 0.8rem;
    color: var(--muted);
}
.temoignages-link {
    display: block;
    text-align: center;
    margin-top: 40px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    transition: color 0.2s ease;
}
.temoignages-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 800px) {
    .temoignages-grid { grid-template-columns: 1fr; }
    .temoignages .section-head { margin-bottom: 40px; }
}

/* =========================
   Avis CTA
   ========================= */
.avis-cta {
    padding: clamp(60px, 8vw, 100px) 0;
    background: linear-gradient(135deg, var(--primary-soft), #eaf6f0);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.avis-inner {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
.avis-text h2 { margin: 8px 0 14px; }
.avis-text p { color: var(--ink-soft); max-width: 38rem; }
.avis-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
.avis-actions .btn-primary {
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    box-shadow: 0 8px 22px -10px rgba(15, 29, 24, 0.2);
}
.avis-actions .btn-primary:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.avis-actions .stars {
    color: #f4b400;
    letter-spacing: 1px;
    font-size: 0.85rem;
}
.avis-actions .btn-primary:hover .stars { color: #fff; }
.avis-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.social-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.social-pill:hover {
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

@media (max-width: 800px) {
    .avis-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =========================
   Footer
   ========================= */
.footer {
    background: #0f1d18;
    color: #cfd8d4;
    padding: 80px 0 24px;
}
.footer h4 { color: #fff; margin-bottom: 16px; }
.footer a { color: #cfd8d4; transition: color 0.2s ease; }
.footer a:hover { color: #fff; }
.footer .brand-mark { background: var(--accent); color: var(--primary-dark); }
.footer .brand-text strong { color: #fff; }
.footer .brand-text span { color: #8aa098; }
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p { margin-top: 16px; }
.footer-brand .muted { color: #8aa098; }
.footer-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.footer-cols > div { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom .muted { color: #8aa098; }

/* =========================
   Mobile sticky action bar
   ========================= */
.mobile-action-bar { display: none; }
@media (max-width: 720px) {
    .mobile-action-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        display: grid;
        grid-template-columns: 1fr 1.4fr;
        gap: 8px;
        padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-top: 1px solid var(--line);
        z-index: 50;
        box-shadow: 0 -10px 28px -18px rgba(15, 29, 24, 0.22);
    }
    .mobile-action {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 12px;
        border-radius: 14px;
        font-weight: 600;
        font-size: 0.92rem;
        line-height: 1;
        background: var(--bg-alt);
        color: var(--ink);
        border: 1px solid var(--line);
        min-height: 50px;
        transition: transform 0.15s ease;
    }
    .mobile-action:active { transform: scale(0.97); }
    .mobile-action-primary {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
        box-shadow: 0 8px 20px -10px rgba(31, 122, 90, 0.45);
    }
    .mobile-action svg { width: 18px; height: 18px; }
    body { padding-bottom: 84px; }
}

/* =========================
   Reveal animations
   ========================= */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================
   Responsive
   ========================= */
@media (max-width: 960px) {
    .hero-inner,
    .engagements-grid,
    .horaires-grid,
    .contact-grid,
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .nav-cta-group .social-icon { display: none; }
    .hero-visual { aspect-ratio: 16 / 11; max-height: none; margin-bottom: 40px; }
    .hero-floating { left: 16px; right: 16px; bottom: -24px; padding: 18px 20px; }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--bg-alt);
        padding: 20px 24px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }
    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .nav-links a { padding: 16px 0; border-bottom: 1px solid var(--line); min-height: 44px; }
    .nav-links a:last-child { border-bottom: 0; }
    .nav-toggle { display: flex; }

    .footer-cols { grid-template-columns: 1fr 1fr; }
    .engagements-stats { grid-template-columns: 1fr 1fr; }
    .hero-meta { flex-direction: column; gap: 14px; }
    .nav-cta-group .nav-cta span { display: none; }
    .nav-cta-group .nav-cta { padding: 12px; min-width: 44px; min-height: 44px; justify-content: center; }
}

@media (max-width: 520px) {
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { justify-content: center; width: 100%; }
    .service-card { padding: 28px 24px; }
    .service-badge { top: 14px; right: 14px; font-size: 0.7rem; padding: 3px 9px; }
    .exclusif-card { padding: 28px 22px; }
    .horaire-row { font-size: 0.92rem; }
    h1 { font-size: clamp(2rem, 8vw, 2.6rem) !important; }
}

/* Réduit les animations pour les utilisateurs sensibles aux mouvements */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
