/* ============================================
   CLINIQUE LABELDENT — DESIGN TOKENS
   C2 Color System     — Locked 2026-03-04
   C3 Typography       — Locked 2026-03-04
   C6 Motion / Easing  — Locked 2026-03-04
   ============================================ */

:root {

  /* ---- SURFACES ---- */
  /* 70–75% of every page is white. The alt surface creates depth without color. */
  --color-bg:             #FFFFFF;  /* Primary page background — the dominant canvas */
  --color-bg-alt:         #F8F7F4;  /* Alternate sections: testimonials, about, FAQ */

  /* ---- TEXT ---- */
  /* Near-black with a fraction of warmth — not pure #000 which reads harsh on white */
  --color-text:           #1C1917;  /* All headings and body text — Noir Chaleureux */
  --color-text-muted:     #6B6560;  /* Captions, metadata, secondary labels */
  --color-text-subtle:    #A8A09A;  /* Placeholders, disabled, hint text */

  /* ---- BRAND ACCENT — BORDEAUX ---- */
  /* This is the "une touche" — a single brushstroke of color on a white canvas.  */
  /* Use sparingly: primary CTA button, logo mark, one accent per section maximum. */
  /* Never use as a background for large areas. Never stack with itself.           */
  --color-accent:         #800020;  /* Bordeaux — CTAs, logo, key links (on light bg only) */
  --color-accent-hover:   #630019;  /* Deeper burgundy for hover states */
  --color-accent-light:   #FAF0F3;  /* Barely-there tint — selected states only */

  /* ---- DARK BACKGROUND RULE ---- */
  /* Bordeaux (#800020) on dark (#1C1917) = 1.65:1 contrast — invisible. NEVER use. */
  /* On dark surfaces, the accent hierarchy inverts:                                 */
  /*   Primary highlight   → white (#FFFFFF)                                         */
  /*   Bordeaux-family tint → --color-accent-on-dark (light rose, 8:1 on dark)      */
  --color-accent-on-dark:  #E8A8B8;  /* Light rose — Bordeaux family on dark bg, 8:1 contrast */
  --color-text-on-dark:    #FFFFFF;  /* Primary text on dark backgrounds */
  --color-text-muted-dark: #A8A09A;  /* Secondary text on dark backgrounds */
  --color-border-dark:     #2C2927;  /* Subtle dividers on dark backgrounds */

  /* ---- BORDERS & DIVIDERS ---- */
  --color-border:         #E5E1DE;  /* Section dividers, card outlines, input borders */
  --color-ghost-hover:    #F5F2F0;  /* Hover on ghost buttons or secondary list items */

  /* ---- FUNCTIONAL — not brand colors, not used decoratively ---- */
  --color-success:        #4F7942;  /* Appointment confirmed, form success */
  --color-warning:        #D4A017;  /* Important notices */
  --color-error:          #C0392B;  /* Form validation errors */

  /* ---- TYPOGRAPHY ---- */
  /* C3 Typography System — Locked 2026-03-04 */
  /* Fraunces (variable serif) — display, headlines, pull quotes */
  /* Inter (variable sans)    — body, UI, captions, metadata    */
  --font-display:   'Fraunces', serif;
  --font-body:      'Inter', sans-serif;

  /* Fraunces optical size — use opsz axis to tune character at each scale */
  /* --opsz 9 (soft, warm)  for body-adjacent sizes                        */
  /* --opsz 72 (sharp, structured) for hero headlines                      */

  /* --- TYPE SCALE --- */
  --text-xs:    0.75rem;    /* 12px — metadata, legal, timestamps */
  --text-sm:    0.875rem;   /* 14px — captions, secondary labels  */
  --text-base:  1rem;       /* 16px — body text baseline          */
  --text-lg:    1.125rem;   /* 18px — lead paragraphs, intro text */
  --text-xl:    1.25rem;    /* 20px — card titles, section labels */
  --text-2xl:   1.5rem;     /* 24px — sub-headings (H3)           */
  --text-3xl:   1.875rem;   /* 30px — section headings (H2)       */
  --text-4xl:   2.25rem;    /* 36px — page titles (H1 mobile)     */
  --text-5xl:   3rem;       /* 48px — H1 desktop                  */
  --text-6xl:   3.75rem;    /* 60px — hero headline               */
  --text-7xl:   4.5rem;     /* 72px — hero headline — large screen*/

  /* --- FONT WEIGHTS --- */
  /* Inter: 400 (regular) / 500 (medium) / 600 (semibold) / 700 (bold) */
  /* Fraunces: 300 (light, elegant) / 400 (regular) / 700 (bold hero)  */
  --font-weight-light:     300;
  --font-weight-normal:    400;
  --font-weight-medium:    500;
  --font-weight-semibold:  600;
  --font-weight-bold:      700;

  /* --- LINE HEIGHTS --- */
  --line-height-none:     1;      /* display headlines — tight tracking */
  --line-height-tight:    1.2;    /* H1/H2 display text                 */
  --line-height-snug:     1.375;  /* H3/H4 sub-headings                 */
  --line-height-normal:   1.5;    /* body text standard                 */
  --line-height-relaxed:  1.75;   /* long-form reading, blog            */

  /* --- LETTER SPACING --- */
  --tracking-tight:   -0.02em;   /* Fraunces headlines — pull letters in  */
  --tracking-normal:   0em;      /* body — no adjustment                  */
  --tracking-wide:     0.05em;   /* labels, eyebrows, caps — open up      */
  --tracking-widest:   0.15em;   /* ALL CAPS small labels                 */

  /* ---- SPACING ---- */
  --space-1:   0.25rem;   /*  4px */
  --space-2:   0.5rem;    /*  8px */
  --space-3:   0.75rem;   /* 12px */
  --space-4:   1rem;      /* 16px */
  --space-5:   1.25rem;   /* 20px */
  --space-6:   1.5rem;    /* 24px */
  --space-8:   2rem;      /* 32px */
  --space-10:  2.5rem;    /* 40px */
  --space-12:  3rem;      /* 48px */
  --space-14:  3.5rem;    /* 56px */
  --space-16:  4rem;      /* 64px */
  --space-20:  5rem;      /* 80px */
  --space-24:  6rem;      /* 96px */

  /* ---- LAYOUT ---- */
  --container-sm:   640px;
  --container-md:   768px;
  --container-lg:   1024px;
  --container-xl:   1280px;
  --container-2xl:  1536px;

  /* ---- BORDERS ---- */
  --radius-sm:   0.25rem;   /*  4px */
  --radius-md:   0.5rem;    /*  8px */
  --radius-lg:   0.75rem;   /* 12px */
  --radius-xl:   1rem;      /* 16px */
  --radius-full: 9999px;    /* Pill shape */

  /* ---- SHADOWS ---- */
  /* Shadows should be rare — white space creates depth, not shadows */
  --shadow-sm:  0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md:  0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
  --shadow-lg:  0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);

  /* ---- EASING CURVES ---- */
  /* C6 Motion — Locked 2026-03-04 */
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1.0);   /* Standard deceleration */
  --ease-in-out: cubic-bezier(0.4, 0.0, 0.2, 1.0);   /* Smooth both ends */
  --ease-enter:  cubic-bezier(0.0, 0.0, 0.3, 1.0);   /* Viewport entry */
  --ease-brand:  cubic-bezier(0.16, 1, 0.3, 1);      /* Signature — slow finish, confident arrival */

  /* ---- TRANSITIONS ---- */
  --transition-fast:    150ms;   /* Hover color/opacity */
  --transition-base:    250ms;   /* Button states, form focus */
  --transition-slow:    400ms;   /* Panel slides, reveals */
  --transition-enter:   600ms;   /* Hero + first viewport impressions */
  --transition-page:    350ms;   /* Page-level transitions */

}
:root{--color-bg:#FFFFFF;--color-bg-alt:#F8F7F4;--color-text:#1C1917;--color-text-muted:#6B6560;--color-text-subtle:#A8A09A;--color-accent:#800020;--color-accent-hover:#630019;--color-accent-light:#FAF0F3;--color-accent-on-dark:#E8A8B8;--color-text-on-dark:#FFFFFF;--color-text-muted-dark:#A8A09A;--color-border-dark:#2C2927;--color-border:#E5E1DE;--color-ghost-hover:#F5F2F0;--color-success:#4F7942;--color-warning:#D4A017;--color-error:#C0392B;--font-display:'Fraunces',serif;--font-body:'Inter',sans-serif;--text-xs:0.75rem;--text-sm:0.875rem;--text-base:1rem;--text-lg:1.125rem;--text-xl:1.25rem;--text-2xl:1.5rem;--text-3xl:1.875rem;--text-4xl:2.25rem;--text-5xl:3rem;--text-6xl:3.75rem;--text-7xl:4.5rem;--font-weight-light:300;--font-weight-normal:400;--font-weight-medium:500;--font-weight-semibold:600;--font-weight-bold:700;--line-height-none:1;--line-height-tight:1.2;--line-height-snug:1.375;--line-height-normal:1.5;--line-height-relaxed:1.75;--tracking-tight:-0.02em;--tracking-normal:0em;--tracking-wide:0.05em;--tracking-widest:0.15em;--space-1:0.25rem;--space-2:0.5rem;--space-3:0.75rem;--space-4:1rem;--space-5:1.25rem;--space-6:1.5rem;--space-8:2rem;--space-10:2.5rem;--space-12:3rem;--space-14:3.5rem;--space-16:4rem;--space-20:5rem;--space-24:6rem;--container-sm:640px;--container-md:768px;--container-lg:1024px;--container-xl:1280px;--container-2xl:1536px;--radius-sm:0.25rem;--radius-md:0.5rem;--radius-lg:0.75rem;--radius-xl:1rem;--radius-full:9999px;--shadow-sm:0 1px 2px 0 rgb(0 0 0 / 0.05);--shadow-md:0 4px 6px -1px rgb(0 0 0 / 0.08),0 2px 4px -2px rgb(0 0 0 / 0.08);--shadow-lg:0 10px 15px -3px rgb(0 0 0 / 0.08),0 4px 6px -4px rgb(0 0 0 / 0.08);--ease-out:cubic-bezier(0.0,0.0,0.2,1.0);--ease-in-out:cubic-bezier(0.4,0.0,0.2,1.0);--ease-enter:cubic-bezier(0.0,0.0,0.3,1.0);--ease-brand:cubic-bezier(0.16,1,0.3,1);--transition-fast:150ms;--transition-base:250ms;--transition-slow:400ms;--transition-enter:600ms;--transition-page:350ms}*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}html{font-size:16px;scroll-behavior:smooth;-webkit-text-size-adjust:100%}body{font-family:var(--font-body);font-size:var(--text-base);color:var(--color-text);background:var(--color-bg);line-height:var(--line-height-normal);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;overflow-x:hidden}img,video{display:block;max-width:100%;height:auto}a{color:inherit;text-decoration:none}ul,ol{list-style:none}button{font-family:inherit;cursor:pointer;border:none;background:none}input,textarea,select{font-family:inherit;font-size:inherit}.container{width:100%;max-width:var(--container-xl);margin:0 auto;padding:0 var(--space-5)}@media (min-width:768px){.container{padding:0 var(--space-10)}}@media (min-width:1280px){.container{padding:0 var(--space-16)}}.section{padding:var(--space-20) 0}.section-lg{padding:var(--space-24) 0}.section-sm{padding:var(--space-12) 0}.section-alt{background:var(--color-bg-alt)}.section-dark{background:var(--color-text)}h1,h2,h3,h4,h5{font-family:var(--font-display);font-weight:var(--font-weight-normal);line-height:var(--line-height-tight);letter-spacing:var(--tracking-tight);color:var(--color-text)}h1{font-size:var(--text-4xl)}h2{font-size:var(--text-3xl)}h3{font-size:var(--text-2xl)}h4{font-size:var(--text-xl)}@media (min-width:768px){h1{font-size:var(--text-5xl)}h2{font-size:var(--text-4xl)}}p{line-height:var(--line-height-relaxed)}.eyebrow{display:block;font-family:var(--font-body);font-size:var(--text-xs);font-weight:var(--font-weight-semibold);letter-spacing:var(--tracking-widest);text-transform:uppercase;color:var(--color-accent);margin-bottom:var(--space-3)}.eyebrow-dark{color:var(--color-accent-on-dark)}.section-header{margin-bottom:var(--space-12)}.section-header-centered{text-align:center;max-width:640px;margin:0 auto var(--space-12)}.section-title{font-size:var(--text-3xl);font-weight:var(--font-weight-light);font-variation-settings:'opsz' 30,'WONK' 0;margin-bottom:var(--space-4)}@media (min-width:768px){.section-title{font-size:var(--text-4xl);font-variation-settings:'opsz' 36,'WONK' 0}}.section-lead{font-size:var(--text-lg);color:var(--color-text-muted);line-height:var(--line-height-relaxed);max-width:560px}.section-header-centered .section-lead{margin:0 auto}.divider{width:40px;height:2px;background:var(--color-accent);margin:var(--space-6) 0}.divider-centered{margin:var(--space-6) auto}.breadcrumb{display:flex;align-items:center;gap:var(--space-2);font-size:var(--text-sm);color:var(--color-text-muted);margin-bottom:var(--space-6);flex-wrap:wrap}.breadcrumb a{color:var(--color-text-muted);transition:color var(--transition-fast) var(--ease-out)}.breadcrumb a:hover{color:var(--color-accent)}.breadcrumb-sep{color:var(--color-text-subtle);font-size:var(--text-xs)}.text-accent{color:var(--color-accent)}.text-muted{color:var(--color-text-muted)}.text-on-dark{color:var(--color-text-on-dark)}.mt-4{margin-top:var(--space-4)}.mt-6{margin-top:var(--space-6)}.mt-8{margin-top:var(--space-8)}.mt-12{margin-top:var(--space-12)}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.animate-enter{opacity:0;transform:translateY(24px);transition:opacity var(--transition-enter) var(--ease-brand),transform var(--transition-enter) var(--ease-brand)}.animate-enter.is-visible{opacity:1;transform:translateY(0)}.animate-enter:nth-child(2){transition-delay:80ms}.animate-enter:nth-child(3){transition-delay:160ms}.animate-enter:nth-child(4){transition-delay:240ms}.animate-enter:nth-child(5){transition-delay:320ms}.animate-enter:nth-child(6){transition-delay:400ms}.animate-enter:nth-child(7){transition-delay:480ms}.animate-enter:nth-child(8){transition-delay:560ms}@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}}.btn{display:inline-flex;align-items:center;justify-content:center;gap:var(--space-2);padding:var(--space-3) var(--space-8);font-family:var(--font-body);font-size:var(--text-sm);font-weight:var(--font-weight-semibold);letter-spacing:var(--tracking-wide);text-transform:uppercase;text-decoration:none;border-radius:var(--radius-full);cursor:pointer;transition:background var(--transition-fast) var(--ease-out),color var(--transition-fast) var(--ease-out),border-color var(--transition-fast) var(--ease-out),transform var(--transition-fast) var(--ease-out),box-shadow var(--transition-base) var(--ease-out);white-space:nowrap}.btn:focus-visible{outline:2px solid var(--color-accent);outline-offset:3px}.btn-primary{background:var(--color-accent);color:#FFFFFF;border:1px solid var(--color-accent)}.btn-primary:hover{background:var(--color-accent-hover);border-color:var(--color-accent-hover);transform:translateY(-1px);box-shadow:var(--shadow-md)}.btn-primary:active{transform:translateY(0);box-shadow:none}.btn-ghost{background:transparent;color:var(--color-text);border:1px solid var(--color-border)}.btn-ghost:hover{background:var(--color-ghost-hover);border-color:var(--color-text-subtle)}.btn-ghost-dark{background:transparent;color:#FFFFFF;border:1px solid rgba(255,255,255,0.4)}.btn-ghost-dark:hover{background:rgba(255,255,255,0.1);border-color:#FFFFFF}.btn-whatsapp{background:#25D366;color:#1C1917;border:1px solid #25D366}.btn-whatsapp:hover{background:#1ebe5d;border-color:#1ebe5d;transform:translateY(-1px);box-shadow:var(--shadow-md)}.nav{position:fixed;top:0;left:0;right:0;z-index:100;background:rgba(255,255,255,0.95);backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);border-bottom:1px solid transparent;transition:border-color var(--transition-base) var(--ease-out),box-shadow var(--transition-base) var(--ease-out)}.nav.scrolled{border-color:var(--color-border);box-shadow:var(--shadow-sm)}.nav-inner{display:flex;align-items:center;justify-content:space-between;height:72px;padding:0 var(--space-5);max-width:var(--container-xl);margin:0 auto}@media (min-width:1280px){.nav-inner{padding:0 var(--space-16)}}.nav-logo{display:flex;align-items:center;flex-shrink:0}.nav-logo img{height:36px;width:auto}.nav-links{display:none;align-items:center;gap:var(--space-8)}@media (min-width:1024px){.nav-links{display:flex}}.nav-link{position:relative;font-family:var(--font-body);font-size:var(--text-sm);font-weight:var(--font-weight-medium);color:var(--color-text);text-decoration:none;padding:var(--space-1) 0;transition:color var(--transition-fast) var(--ease-out)}.nav-link::after{content:'';position:absolute;bottom:-2px;left:0;width:0;height:1px;background:var(--color-accent);transition:width var(--transition-base) var(--ease-brand)}.nav-link:hover{color:var(--color-accent)}.nav-link:hover::after,.nav-link.active::after{width:100%}.nav-link.active{color:var(--color-accent)}.nav-dropdown{position:relative}.nav-dropdown-toggle{display:flex;align-items:center;gap:4px;font-family:var(--font-body);font-size:var(--text-sm);font-weight:var(--font-weight-medium);color:var(--color-text);cursor:pointer;padding:var(--space-1) 0;transition:color var(--transition-fast) var(--ease-out);background:none;border:none}.nav-dropdown-toggle:hover{color:var(--color-accent)}.nav-dropdown-arrow{width:12px;height:12px;transition:transform var(--transition-base) var(--ease-out)}.nav-dropdown:hover .nav-dropdown-arrow,.nav-dropdown.open .nav-dropdown-arrow{transform:rotate(180deg)}.nav-dropdown-menu{position:absolute;top:calc(100% + 12px);left:50%;transform:translateX(-50%);background:var(--color-bg);border:1px solid var(--color-border);border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);padding:var(--space-2);min-width:240px;opacity:0;visibility:hidden;transform:translateX(-50%) translateY(-8px);transition:opacity var(--transition-base) var(--ease-out),transform var(--transition-base) var(--ease-brand),visibility var(--transition-base)}.nav-dropdown:hover .nav-dropdown-menu,.nav-dropdown.open .nav-dropdown-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}.nav-dropdown-item{display:block;padding:var(--space-3) var(--space-4);font-size:var(--text-sm);color:var(--color-text);border-radius:var(--radius-md);transition:background var(--transition-fast) var(--ease-out),color var(--transition-fast) var(--ease-out)}.nav-dropdown-item:hover{background:var(--color-accent-light);color:var(--color-accent)}.nav-actions{display:flex;align-items:center;gap:var(--space-4)}.nav-phone{display:none;font-size:var(--text-sm);font-weight:var(--font-weight-medium);color:var(--color-text);transition:color var(--transition-fast) var(--ease-out)}.nav-phone:hover{color:var(--color-accent)}@media (min-width:768px){.nav-phone{display:block}}.nav-hamburger{display:flex;flex-direction:column;justify-content:center;gap:5px;width:40px;height:40px;padding:var(--space-2);cursor:pointer;background:none;border:none}@media (min-width:1024px){.nav-hamburger{display:none}}.nav-hamburger span{display:block;width:100%;height:1.5px;background:var(--color-text);border-radius:2px;transition:transform var(--transition-base) var(--ease-brand),opacity var(--transition-base) var(--ease-out)}.nav-hamburger.open span:nth-child(1){transform:translateY(6.5px) rotate(45deg)}.nav-hamburger.open span:nth-child(2){opacity:0}.nav-hamburger.open span:nth-child(3){transform:translateY(-6.5px) rotate(-45deg)}.nav-drawer{position:fixed;top:0;right:0;bottom:0;width:min(320px,85vw);background:var(--color-bg);z-index:200;padding:80px var(--space-8) var(--space-8);transform:translateX(100%);transition:transform 350ms var(--ease-brand);overflow-y:auto;box-shadow:var(--shadow-lg)}.nav-drawer.open{transform:translateX(0)}.nav-drawer-overlay{position:fixed;inset:0;background:rgba(28,25,23,0.5);z-index:150;opacity:0;visibility:hidden;transition:opacity 250ms var(--ease-out),visibility 250ms}.nav-drawer-overlay.open{opacity:1;visibility:visible}.nav-drawer-links{display:flex;flex-direction:column;gap:var(--space-1)}.nav-drawer-link{display:block;padding:var(--space-4) 0;font-size:var(--text-lg);font-weight:var(--font-weight-medium);color:var(--color-text);border-bottom:1px solid var(--color-border);transition:color var(--transition-fast) var(--ease-out)}.nav-drawer-link:hover{color:var(--color-accent)}.nav-drawer-sub{padding-left:var(--space-4)}.nav-drawer-sub-link{display:block;padding:var(--space-3) 0;font-size:var(--text-base);color:var(--color-text-muted);border-bottom:1px solid var(--color-border);transition:color var(--transition-fast) var(--ease-out)}.nav-drawer-sub-link:hover{color:var(--color-accent)}.nav-drawer-actions{margin-top:var(--space-8);display:flex;flex-direction:column;gap:var(--space-3)}.nav-spacer{height:72px}.trust-bar-dark{background:var(--color-bg-alt);padding:var(--space-10) 0}.trust-bar-dark-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--space-8);text-align:center}@media (min-width:768px){.trust-bar-dark-grid{grid-template-columns:repeat(4,1fr);gap:0}}.trust-stat-dark{display:flex;flex-direction:column;align-items:center;gap:var(--space-1)}@media (min-width:768px){.trust-stat-dark + .trust-stat-dark{border-left:1px solid var(--color-border)}}.trust-stat-dark-number{font-family:var(--font-display);font-size:var(--text-3xl);font-weight:var(--font-weight-light);color:var(--color-text);letter-spacing:var(--tracking-tight);line-height:1.1;font-variation-settings:'opsz' 30,'WONK' 0}.trust-stat-dark-label{font-family:var(--font-body);font-size:var(--text-xs);color:var(--color-text-muted);font-weight:var(--font-weight-normal);letter-spacing:var(--tracking-normal)}.hero-section{display:grid;grid-template-columns:1fr;grid-template-rows:auto;overflow:hidden;background:var(--color-bg)}@media (min-width:1024px){.hero-section{grid-template-columns:52% 48%;grid-template-rows:1fr;min-height:100svh;min-height:100vh}}.hero-content{display:flex;flex-direction:column;justify-content:center;padding:calc(64px + var(--space-10)) var(--space-5) var(--space-10);position:relative;z-index:2}@media (min-width:768px){.hero-content{padding:calc(72px + var(--space-16)) var(--space-10) var(--space-16)}}@media (min-width:1024px){.hero-content{padding:calc(72px + var(--space-20)) var(--space-10) var(--space-20) var(--space-16);max-width:none}}.hero-eyebrow{color:var(--color-accent);margin-bottom:var(--space-5)}.hero-headline{font-family:var(--font-display);font-size:var(--text-3xl);font-weight:var(--font-weight-light);line-height:var(--line-height-tight);letter-spacing:var(--tracking-tight);color:var(--color-text);font-variation-settings:'opsz' 30,'WONK' 0;margin-bottom:var(--space-5)}@media (max-width:1023px){.hero-headline br{display:none}}@media (min-width:480px){.hero-headline{font-size:var(--text-4xl);font-variation-settings:'opsz' 36,'WONK' 0}}@media (min-width:768px){.hero-headline{font-size:var(--text-5xl);font-variation-settings:'opsz' 48,'WONK' 0}}@media (min-width:1024px){.hero-headline{font-size:var(--text-6xl);font-variation-settings:'opsz' 72,'WONK' 0}}.hero-headline em{font-style:italic;font-weight:var(--font-weight-light);color:var(--color-text)}.hero-sub{font-size:var(--text-lg);color:var(--color-text-muted);line-height:var(--line-height-relaxed);max-width:44ch;margin-bottom:var(--space-10)}@media (min-width:768px){.hero-sub{font-size:var(--text-xl)}}.hero-actions{display:flex;flex-direction:column;gap:var(--space-3);margin-bottom:var(--space-8)}.hero-actions .btn{justify-content:center;width:100%}@media (min-width:480px){.hero-actions{flex-direction:row;align-items:center;gap:var(--space-4);flex-wrap:wrap;margin-bottom:var(--space-10)}.hero-actions .btn{width:auto;justify-content:flex-start}}.hero-cta-primary{padding:var(--space-4) var(--space-10)}.hero-trust{display:flex;align-items:center;gap:var(--space-3)}.hero-stars{display:flex;gap:2px}.hero-trust-text{font-size:var(--text-sm);color:var(--color-text-muted);font-weight:var(--font-weight-medium)}.hero-image-col{position:relative;overflow:hidden;min-height:min(65vw,440px)}@media (min-width:1024px){.hero-image-col{min-height:unset}}.hero-photo{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:center top;display:block;mix-blend-mode:multiply}.hero-content .eyebrow,.hero-headline,.hero-sub,.hero-actions,.hero-trust{opacity:0;transform:translateY(20px);transition:opacity var(--transition-enter) var(--ease-brand),transform var(--transition-enter) var(--ease-brand)}body.is-loaded .hero-content .eyebrow{opacity:1;transform:none;transition-delay:0ms}body.is-loaded .hero-headline{opacity:1;transform:none;transition-delay:100ms}body.is-loaded .hero-sub{opacity:1;transform:none;transition-delay:220ms}body.is-loaded .hero-actions{opacity:1;transform:none;transition-delay:340ms}body.is-loaded .hero-trust{opacity:1;transform:none;transition-delay:440ms}.hero-image-col{opacity:0;transition:opacity 900ms var(--ease-brand);transition-delay:150ms}body.is-loaded .hero-image-col{opacity:1}/* ============================================
   CLINIQUE LABELDENT — GLOBAL STYLES
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--line-height-normal);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { list-style: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ---- LAYOUT ---- */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-5);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--space-10); }
}

@media (min-width: 1280px) {
  .container { padding: 0 var(--space-16); }
}

/* ---- SECTIONS ---- */
.section      { padding: var(--space-20) 0; }
.section-lg   { padding: var(--space-24) 0; }
.section-sm   { padding: var(--space-12) 0; }
.section-alt  { background: var(--color-bg-alt); }
.section-dark { background: var(--color-text); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

@media (min-width: 768px) {
  h1 { font-size: var(--text-5xl); }
  h2 { font-size: var(--text-4xl); }
}

p { line-height: var(--line-height-relaxed); }

/* ---- EYEBROW ---- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}

.eyebrow-dark { color: var(--color-accent-on-dark); }

/* ---- SECTION HEADER ---- */
.section-header { margin-bottom: var(--space-12); }

.section-header-centered {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}

.section-title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  font-variation-settings: 'opsz' 30, 'WONK' 0;
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--text-4xl);
    font-variation-settings: 'opsz' 36, 'WONK' 0;
  }
}

.section-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 560px;
}

.section-header-centered .section-lead { margin: 0 auto; }

/* ---- DIVIDER ---- */
.divider {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  margin: var(--space-6) 0;
}

.divider-centered { margin: var(--space-6) auto; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast) var(--ease-out);
}

.breadcrumb a:hover { color: var(--color-accent); }
.breadcrumb-sep { color: var(--color-text-subtle); font-size: var(--text-xs); }

/* ---- UTILITIES ---- */
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-muted); }
.text-on-dark { color: var(--color-text-on-dark); }

.mt-4  { margin-top: var(--space-4); }
.mt-6  { margin-top: var(--space-6); }
.mt-8  { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- SCROLL ANIMATIONS ---- */
.animate-enter {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity var(--transition-enter) var(--ease-brand),
    transform var(--transition-enter) var(--ease-brand);
}

.animate-enter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-enter:nth-child(2) { transition-delay: 80ms; }
.animate-enter:nth-child(3) { transition-delay: 160ms; }
.animate-enter:nth-child(4) { transition-delay: 240ms; }
.animate-enter:nth-child(5) { transition-delay: 320ms; }
.animate-enter:nth-child(6) { transition-delay: 400ms; }
.animate-enter:nth-child(7) { transition-delay: 480ms; }
.animate-enter:nth-child(8) { transition-delay: 560ms; }

/* ---- REDUCED MOTION ---- */
@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;
  }
}
/* ============================================
   CLINIQUE LABELDENT — COMPONENTS
   ============================================ */

/* ================================================================
   BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition:
    background var(--transition-fast) var(--ease-out),
    color var(--transition-fast) var(--ease-out),
    border-color var(--transition-fast) var(--ease-out),
    transform var(--transition-fast) var(--ease-out),
    box-shadow var(--transition-base) var(--ease-out);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* Primary — Bordeaux */
.btn-primary {
  background: var(--color-accent);
  color: #FFFFFF;
  border: 1px solid var(--color-accent);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Ghost — on light background */
.btn-ghost {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-ghost:hover {
  background: var(--color-ghost-hover);
  border-color: var(--color-text-subtle);
}

/* Ghost — on dark background */
.btn-ghost-dark {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.4);
}

.btn-ghost-dark:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
}

/* WhatsApp */
.btn-whatsapp {
  background: #25D366;
  color: #1C1917;
  border: 1px solid #25D366;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ================================================================
   NAVIGATION
================================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color var(--transition-base) var(--ease-out),
    box-shadow var(--transition-base) var(--ease-out);
}

.nav.scrolled {
  border-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--space-5);
  max-width: var(--container-xl);
  margin: 0 auto;
}

@media (min-width: 1280px) {
  .nav-inner { padding: 0 var(--space-16); }
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-8);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  position: relative;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  text-decoration: none;
  padding: var(--space-1) 0;
  transition: color var(--transition-fast) var(--ease-out);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width var(--transition-base) var(--ease-brand);
}

.nav-link:hover { color: var(--color-accent); }
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }
.nav-link.active { color: var(--color-accent); }

/* Services dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  cursor: pointer;
  padding: var(--space-1) 0;
  transition: color var(--transition-fast) var(--ease-out);
  background: none;
  border: none;
}

.nav-dropdown-toggle:hover { color: var(--color-accent); }

.nav-dropdown-arrow {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-base) var(--ease-out);
}

.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown.open .nav-dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition:
    opacity var(--transition-base) var(--ease-out),
    transform var(--transition-base) var(--ease-brand),
    visibility var(--transition-base);
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast) var(--ease-out),
              color var(--transition-fast) var(--ease-out);
}

.nav-dropdown-item:hover {
  background: var(--color-accent-light);
  color: var(--color-accent);
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.nav-phone {
  display: none;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  transition: color var(--transition-fast) var(--ease-out);
}

.nav-phone:hover { color: var(--color-accent); }

@media (min-width: 768px) {
  .nav-phone { display: block; }
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--space-2);
  cursor: pointer;
  background: none;
  border: none;
}

@media (min-width: 1024px) {
  .nav-hamburger { display: none; }
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition-base) var(--ease-brand),
              opacity var(--transition-base) var(--ease-out);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--color-bg);
  z-index: 200;
  padding: 80px var(--space-8) var(--space-8);
  transform: translateX(100%);
  transition: transform 350ms var(--ease-brand);
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 250ms var(--ease-out),
    visibility 250ms;
}

.nav-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.nav-drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.nav-drawer-link {
  display: block;
  padding: var(--space-4) 0;
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast) var(--ease-out);
}

.nav-drawer-link:hover { color: var(--color-accent); }

.nav-drawer-sub {
  padding-left: var(--space-4);
}

.nav-drawer-sub-link {
  display: block;
  padding: var(--space-3) 0;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--transition-fast) var(--ease-out);
}

.nav-drawer-sub-link:hover { color: var(--color-accent); }

.nav-drawer-actions {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Spacer to offset fixed nav */
.nav-spacer { height: 72px; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: var(--color-text);
  color: var(--color-text-on-dark);
  padding: var(--space-20) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer-brand-logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-base);
  color: var(--color-text-muted-dark);
  font-style: italic;
  margin-bottom: var(--space-6);
  line-height: var(--line-height-snug);
}

.footer-social {
  display: flex;
  gap: var(--space-4);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-full);
  color: var(--color-text-muted-dark);
  transition:
    color var(--transition-fast) var(--ease-out),
    border-color var(--transition-fast) var(--ease-out);
}

.footer-social-link:hover {
  color: var(--color-accent-on-dark);
  border-color: var(--color-accent-on-dark);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  transition: color var(--transition-fast) var(--ease-out);
}

.footer-link:hover { color: var(--color-text-on-dark); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer-contact-icon {
  width: 16px;
  height: 16px;
  color: var(--color-accent-on-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-snug);
}

.footer-contact-text a {
  color: var(--color-text-muted-dark);
  transition: color var(--transition-fast) var(--ease-out);
}

.footer-contact-text a:hover { color: var(--color-text-on-dark); }

.footer-bottom {
  margin-top: var(--space-16);
  padding: var(--space-6) 0;
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer-copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted-dark);
}

.footer-legal {
  display: flex;
  gap: var(--space-6);
}

.footer-legal-link {
  font-size: var(--text-xs);
  color: var(--color-text-muted-dark);
  transition: color var(--transition-fast) var(--ease-out);
}

.footer-legal-link:hover { color: var(--color-text-on-dark); }

/* ================================================================
   CTA BANNER
================================================================ */
.cta-banner {
  background: var(--color-text);
  padding: var(--space-20) 0;
  text-align: center;
}

.cta-banner-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-on-dark);
  margin-bottom: var(--space-4);
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ================================================================
   CARDS
================================================================ */
.card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition:
    transform var(--transition-base) var(--ease-brand),
    box-shadow var(--transition-base) var(--ease-brand);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Service card */
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  text-decoration: none;
  color: inherit;
  transition:
    transform var(--transition-base) var(--ease-brand),
    box-shadow var(--transition-base) var(--ease-brand),
    border-color var(--transition-base) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-text-subtle);
}

.service-card-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  letter-spacing: var(--tracking-tight);
}

.service-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-5);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent);
  transition: gap var(--transition-base) var(--ease-brand);
}

.service-card:hover .service-card-arrow { gap: var(--space-3); }

/* Testimonial card */
.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: #F59E0B;
}

.testimonial-text {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.testimonial-author-name {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}

.testimonial-author-service {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* ================================================================
   TRUST BAR
================================================================ */
.trust-bar {
  padding: var(--space-10) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  text-align: center;
}

@media (min-width: 768px) {
  .trust-bar-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: 1;
}

.trust-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-2);
}

/* Trust bar — dark variant (homepage) */
.trust-bar-dark {
  background: var(--color-bg-alt);
  padding: var(--space-10) 0;
}

.trust-bar-dark-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  text-align: center;
}

@media (min-width: 768px) {
  .trust-bar-dark-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.trust-stat-dark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

@media (min-width: 768px) {
  .trust-stat-dark + .trust-stat-dark {
    border-left: 1px solid var(--color-border);
  }
}

.trust-stat-dark-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  font-variation-settings: 'opsz' 30, 'WONK' 0;
}

.trust-stat-dark-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--tracking-normal);
}

/* ================================================================
   FORMS
================================================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.form-label {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition:
    border-color var(--transition-fast) var(--ease-out),
    box-shadow var(--transition-fast) var(--ease-out);
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-text-subtle);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px var(--color-accent-light);
}

.form-input.is-error,
.form-textarea.is-error {
  border-color: var(--color-error);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  background: var(--color-bg-alt);
  padding: var(--space-16) 0 var(--space-12);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .page-hero-title { font-size: var(--text-5xl); }
}

.page-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: var(--line-height-relaxed);
}

/* ================================================================
   HOMEPAGE HERO
================================================================ */
.hero-section {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  overflow: hidden;
  background: var(--color-bg);
}

@media (min-width: 1024px) {
  .hero-section {
    grid-template-columns: 52% 48%;
    grid-template-rows: 1fr;
    min-height: 100svh;
    min-height: 100vh;
  }
}

/* Left column — text */
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(64px + var(--space-10)) var(--space-5) var(--space-10);
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-content {
    padding: calc(72px + var(--space-16)) var(--space-10) var(--space-16);
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: calc(72px + var(--space-20)) var(--space-10) var(--space-20) var(--space-16);
    max-width: none;
  }
}

/* Eyebrow */
.hero-eyebrow {
  color: var(--color-accent);
  margin-bottom: var(--space-5);
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 30, 'WONK' 0;
  margin-bottom: var(--space-5);
}

/* Suppress HTML line-break tags on mobile — let text reflow naturally */
@media (max-width: 1023px) {
  .hero-headline br { display: none; }
}

@media (min-width: 480px) {
  .hero-headline {
    font-size: var(--text-4xl);
    font-variation-settings: 'opsz' 36, 'WONK' 0;
  }
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 0;
  }
}

@media (min-width: 1024px) {
  .hero-headline {
    font-size: 4rem;
    font-variation-settings: 'opsz' 72, 'WONK' 0;
  }
}

/* Italic part of headline — Fraunces italic is particularly warm */
.hero-headline em {
  font-style: italic;
  font-weight: var(--font-weight-light);
  color: var(--color-text);
}

/* Subheadline */
.hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 44ch;
  margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
  .hero-sub { font-size: var(--text-xl); }
}

/* CTA row */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.hero-actions .btn {
  justify-content: center;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-10);
  }
  .hero-actions .btn {
    width: auto;
    justify-content: flex-start;
  }
}

.hero-cta-primary {
  padding: var(--space-4) var(--space-10);
}

/* Trust signal */
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-stars {
  display: flex;
  gap: 2px;
}

.hero-trust-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-medium);
}

/* Right column — photo */
.hero-image-col {
  position: relative;
  overflow: hidden;
  /* mobile: photo comes after text (natural HTML order), responsive height */
  min-height: min(65vw, 440px);
}

@media (min-width: 1024px) {
  .hero-image-col {
    min-height: unset;
  }
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  mix-blend-mode: multiply;
}

/* Entrance animation — triggered by JS adding .is-loaded to body */
.hero-content .eyebrow,
.hero-headline,
.hero-sub,
.hero-actions,
.hero-trust {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity var(--transition-enter) var(--ease-brand),
    transform var(--transition-enter) var(--ease-brand);
}

body.is-loaded .hero-content .eyebrow  { opacity: 1; transform: none; transition-delay: 0ms; }
body.is-loaded .hero-headline           { opacity: 1; transform: none; transition-delay: 100ms; }
body.is-loaded .hero-sub                { opacity: 1; transform: none; transition-delay: 220ms; }
body.is-loaded .hero-actions            { opacity: 1; transform: none; transition-delay: 340ms; }
body.is-loaded .hero-trust              { opacity: 1; transform: none; transition-delay: 440ms; }

.hero-image-col {
  opacity: 0;
  transition: opacity 900ms var(--ease-brand);
  transition-delay: 150ms;
}

body.is-loaded .hero-image-col { opacity: 1; }

/* ================================================================
   SERVICES SECTION — slider layout
================================================================ */
.services-section {
  background: var(--color-bg);
  overflow: hidden;   /* clips right bleed of slider */
}

/* Header: eyebrow, title, intro stacked */
.services-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

/* Controls row: arrows left, "Voir tous" right */
.services-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.services-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 30, 'WONK' 0;
  margin: 0;
}

@media (min-width: 768px) {
  .services-title {
    font-size: var(--text-4xl);
    font-variation-settings: 'opsz' 36, 'WONK' 0;
  }
}

.services-view-all {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent);
  white-space: nowrap;
  flex-shrink: 0;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition:
    gap var(--transition-base) var(--ease-brand),
    border-color var(--transition-fast) var(--ease-out);
}

.services-view-all:hover {
  gap: var(--space-3);
  border-color: var(--color-accent);
}

/* Arrows — far right, self-aligned to bottom of header */
.services-header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.slider-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
  transition:
    background var(--transition-fast) var(--ease-out),
    border-color var(--transition-fast) var(--ease-out),
    color var(--transition-fast) var(--ease-out);
}

.slider-btn:hover:not(:disabled) {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

/* Forward button — black by default, accent on hover */
#svc-next {
  background: var(--color-text);
  border-color: var(--color-text);
  color: #fff;
}

#svc-next:hover:not(:disabled) {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

#svc-next:disabled {
  background: var(--color-bg);
  border-color: var(--color-border);
  color: var(--color-text);
}

.slider-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* Slider wrapper — starts flush with container left, bleeds right */
.services-slider-wrap {
  /* uses section overflow:hidden to clip right bleed */
}

/* Sliding track */
.services-slider-track {
  display: flex;
  gap: var(--space-4);
  transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
  cursor: grab;
  user-select: none;
}

.services-slider-track.is-dragging {
  cursor: grabbing;
  transition: none;
}

/* Card — 4 on desktop, 3 on tablet, 1 + peek on mobile */
.svc-card {
  flex: 0 0 80%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

@media (min-width: 640px) {
  .svc-card {
    flex: 0 0 calc((100% - var(--space-4) * 2) / 3);
  }
}

@media (min-width: 1024px) {
  .svc-card {
    flex: 0 0 calc((100% - var(--space-4) * 3) / 4);
  }
}

.svc-card:hover .svc-card-placeholder { transform: scale(1.03); }
.svc-card:hover .svc-card-img img     { transform: scale(1.03); }
.svc-card:hover .svc-card-title       { color: var(--color-accent); }

/* Image — portrait 3:4 */
.svc-card-img {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--color-bg-alt);
  margin-bottom: var(--space-3);
}

.svc-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease-brand);
}

.svc-card-placeholder {
  position: absolute;
  inset: 0;
  background: var(--color-bg-alt);
  transition: transform 500ms var(--ease-brand);
}

/* Card text */
.svc-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.svc-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
  transition: color var(--transition-fast) var(--ease-out);
}

.svc-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
}

/* ================================================================
   WHY LABELDENT — dark split: content left, clinic photo right
================================================================ */
.why-section {
  background: var(--color-text);
}

/* Two-column split — full bleed, no container wrapper */
.why-inner {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .why-inner {
    grid-template-columns: 55% 45%;
    min-height: 680px;
  }
}

/* Left — content column */
.why-content-col {
  display: flex;
  flex-direction: column;
  padding: var(--space-16) var(--space-5);
}

@media (min-width: 768px) {
  .why-content-col { padding: var(--space-20) var(--space-10); }
}

@media (min-width: 1280px) {
  .why-content-col { padding: var(--space-20) var(--space-16); }
}

.why-header {
  margin-bottom: var(--space-10);
}

.why-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  color: #FFFFFF;
  letter-spacing: var(--tracking-tight);
  font-variation-settings: 'opsz' 30, 'WONK' 0;
  margin-top: var(--space-3);
}

@media (min-width: 768px) {
  .why-title {
    font-size: var(--text-4xl);
    font-variation-settings: 'opsz' 36, 'WONK' 0;
  }
}

.why-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  max-width: 50ch;
  margin-top: var(--space-4);
}

/* Cards — vertical stack with 1px dividers */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card */
.why-card {
  background: var(--color-text);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--transition-base) var(--ease-out);
}

.why-card:last-child { border-bottom: none; }

.why-card:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* Large technology label */
.why-card-label {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin-bottom: var(--space-1);
}

.why-card-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: #FFFFFF;
  font-variation-settings: 'opsz' 18, 'WONK' 0;
  line-height: var(--line-height-snug);
}

.why-card-desc {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: var(--line-height-relaxed);
}

/* Footer CTA */
.why-footer {
  margin-top: var(--space-10);
}

/* Right — clinic photo */
.why-img-col {
  overflow: hidden;
}

/* Mobile: image at natural portrait ratio — no cropping */
.why-clinic-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
}

/* Desktop: image absolutely fills the column height */
@media (min-width: 900px) {
  .why-img-col {
    position: relative;
  }

  .why-clinic-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-position: center center;
  }
}

/* ================================================================
   BEFORE / AFTER TEASER
================================================================ */
.ba-section {
  background: var(--color-bg);
}

/* 3-column grid — 1 col on mobile, 3 on tablet+ */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .ba-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Case card */
.ba-case {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* Before/After image split */
.ba-images {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.ba-half {
  position: relative;
  overflow: hidden;
}

/* Real photos — fill the half column, focus on smile area */
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  display: block;
}

/* Thin divider line */
.ba-divider {
  background: var(--color-border);
  width: 1px;
  position: relative;
  z-index: 1;
}

/* Avant / Après labels */
.ba-label {
  position: absolute;
  bottom: var(--space-2);
  left: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.85);
  padding: 2px var(--space-2);
  line-height: 1.6;
}

.ba-label--after {
  left: auto;
  right: var(--space-2);
  color: var(--color-accent);
}

/* Meta below the image */
.ba-meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.ba-treatment {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
}

.ba-detail {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: var(--font-weight-normal);
}

/* Footer CTA */
.ba-footer {
  text-align: center;
}

/* ================================================================
   TESTIMONIALS
================================================================ */
.reviews-section {
  background: var(--color-bg-alt);
}

/* Aggregate score row */
.reviews-aggregate {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.reviews-stars {
  display: flex;
  gap: 3px;
}

.reviews-score {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  line-height: 1;
}

.reviews-count {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* 3-column card grid */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Card */
.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--space-10) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
  position: relative;
}

/* Large opening quote — Fraunces, Bordeaux, decorative */
.review-quote-mark {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: var(--font-weight-light);
  color: var(--color-accent);
  line-height: 0.6;
  font-variation-settings: 'opsz' 72, 'WONK' 0;
  user-select: none;
}

/* Review text */
.review-text {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  font-style: italic;
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
  flex: 1;
  margin: 0;
}

/* Footer row: stars · name + treatment · source */
.review-footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-5);
}

.review-stars {
  display: flex;
  gap: 2px;
}

.review-author {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.review-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}

.review-treatment {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.review-source {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

/* Footer CTA */
.reviews-footer {
  text-align: center;
}

/* ================================================================
   TEAM SECTION
   ================================================================ */

.team-section {
  background: var(--color-bg-alt);
}

/* 3-column grid: Dr. Ali wider, assistants compact */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-5);
    justify-items: stretch;
  }
}

/* ── Card base ── */
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Photo */
.team-photo-wrap {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #d9d2cb;
  margin-bottom: var(--space-4);
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
  transition: transform 0.5s var(--ease-out);
}

.team-card:hover .team-photo {
  transform: scale(1.03);
}

/* Placeholder */
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: #d9d2cb;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b8afa7' width='64' height='64'%3E%3Cpath d='M12 12c2.7 0 4.8-2.1 4.8-4.8S14.7 2.4 12 2.4 7.2 4.5 7.2 7.2 9.3 12 12 12zm0 2.4c-3.2 0-9.6 1.6-9.6 4.8v2.4h19.2v-2.4c0-3.2-6.4-4.8-9.6-4.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: 40%;
}

/* Info block */
.team-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.team-role {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
}

.team-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
  margin: 0;
}

.team-bio {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: var(--space-2) 0 0;
}

/* Footer CTA */
.team-footer {
  text-align: center;
}

/* ================================================================
   REMBOURSEMENT BANNER — dark inline strip for service pages + home
================================================================ */

.remboursement-banner {
  background: var(--color-text);
  padding: var(--space-12) 0;
}

.remboursement-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8);
  max-width: 900px;
  margin: 0 auto;
}

.remboursement-banner-content {
  flex: 1;
  min-width: 0;
}

.remboursement-banner-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-on-dark);
  margin-bottom: var(--space-3);
}

.remboursement-banner-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: #FFFFFF;
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  margin: 0 0 var(--space-2);
}

@media (min-width: 768px) {
  .remboursement-banner-title {
    font-size: var(--text-3xl);
    font-variation-settings: 'opsz' 30, 'WONK' 0;
  }
}

.remboursement-banner-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 52ch;
}

.remboursement-banner-action {
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .remboursement-banner {
    padding: var(--space-10) 0;
  }

  .remboursement-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
  }

  .remboursement-banner-text {
    margin-left: auto;
    margin-right: auto;
  }
}


/* ================================================================
   CTA BANNER
================================================================ */

.cta-banner {
  background: var(--color-text);
  padding: var(--space-20) 0;
}

.cta-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-6);
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  color: #ffffff;
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 30, 'WONK' 0;
  margin: 0;
}

@media (min-width: 768px) {
  .cta-banner-title {
    font-size: var(--text-4xl);
    font-variation-settings: 'opsz' 36, 'WONK' 0;
  }
}

.cta-banner-sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 480px;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-2);
}

/* ================================================================
   FOOTER
================================================================ */

.site-footer {
  background: var(--color-text);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Main body */
.footer-main {
  padding: var(--space-16) 0 var(--space-12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8) var(--space-10);
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
  }
  .footer-brand {
    grid-column: auto;
  }
}

/* Brand column */
.footer-logo-link {
  display: inline-block;
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-style: italic;
  font-variation-settings: 'opsz' 14, 'WONK' 0;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-3);
}

.footer-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-5);
  max-width: 280px;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-social:hover {
  color: #E8A8B8;
}

/* Nav columns */
.footer-col-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 var(--space-4);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-links a:hover {
  color: #ffffff;
}

/* Contact column */
.footer-address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.footer-address p {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
}

.footer-address a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-address a:hover {
  color: #ffffff;
}

.footer-contact-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-5) 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copy {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: var(--space-5);
}

.footer-legal a {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.footer-legal a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ================================================================
   SERVICE PAGES
================================================================ */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  margin-bottom: var(--space-4);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-text-subtle);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.breadcrumb a:hover {
  color: var(--color-text);
}

.breadcrumb span[aria-current] {
  color: var(--color-text-muted);
}

/* S2 — Credentials bar */
.service-creds {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-6) 0;
}

.service-creds-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  justify-content: space-between;
  align-items: center;
}

.service-creds-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
  flex: 1 1 140px;
}

.service-creds-item + .service-creds-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-3));
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--color-border);
}

@media (max-width: 639px) {
  .service-creds-item + .service-creds-item::before {
    display: none;
  }
}

.service-creds-value {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  line-height: 1.2;
}

.service-creds-label {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  letter-spacing: 0.02em;
}

/* ── Shared section primitives (used across all service pages) ── */

.service-section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 32, 'WONK' 0;
  margin: var(--space-3) 0 var(--space-5);
}

@media (min-width: 768px) {
  .service-section-title {
    font-size: var(--text-4xl);
    font-variation-settings: 'opsz' 36, 'WONK' 0;
  }
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.service-body p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-points li {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  padding-left: var(--space-5);
  position: relative;
  line-height: var(--line-height-relaxed);
}

.service-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 14px;
  height: 1px;
  background: var(--color-accent);
}

/* Two-column layout — text + image */
.service-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}

@media (min-width: 768px) {
  .service-two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-14);
  }
}

.service-two-col > * {
  min-width: 0;
}

.service-two-col-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.service-two-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image placeholder */
.service-img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 280px;
  background: #e8e3de;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-img-placeholder span {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  font-style: italic;
}

/* S3 — What is it */
.service-what {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

/* S4 — Candidate */
.service-candidate {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}

.service-candidate-header {
  max-width: 600px;
  margin-bottom: var(--space-10);
}

.service-candidate-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-candidate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: 640px) {
  .service-candidate-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .service-candidate-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-candidate-card {
  background: var(--color-bg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-candidate-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-accent);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  line-height: 1;
}

.service-candidate-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin: 0;
  line-height: var(--line-height-snug);
}

.service-candidate-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-candidate-note {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  line-height: var(--line-height-relaxed);
  border-left: 2px solid var(--color-border);
  padding-left: var(--space-4);
  max-width: 680px;
  margin: 0;
}

/* S5 — Process */
.service-process {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}

.service-process-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-14);
  align-items: start;
}

@media (min-width: 900px) {
  .service-process-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.service-process-header {
  margin-bottom: var(--space-10);
}

.service-process-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Vertical timeline */
.service-process-steps {
  display: flex;
  flex-direction: column;
}

.service-process-step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

/* Left column: number + connecting line */
.service-process-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 36px;
}

.service-process-num {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-light);
  color: var(--color-accent);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
  line-height: 1.4;
  flex-shrink: 0;
}

.service-process-line {
  width: 1px;
  flex: 1;
  min-height: 32px;
  background: var(--color-border);
  margin: var(--space-1) 0;
}

/* Right column: content */
.service-process-right {
  padding-bottom: var(--space-8);
  flex: 1;
}

.service-process-step--last .service-process-right {
  padding-bottom: 0;
}

.service-process-meta {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-2);
  flex-wrap: wrap;
}

.service-process-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin: 0;
  line-height: var(--line-height-snug);
}

.service-process-time {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.service-process-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Image placeholder — right col on desktop */
.service-process-img {
  position: relative;
  overflow: hidden;
  background: #d9d2cb;
}

.service-process-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* MRE callout */
.service-process-mre {
  margin-top: var(--space-8);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-process-mre p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-process-mre-link {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent);
  text-decoration: none;
  align-self: flex-start;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.service-process-mre-link:hover {
  opacity: 0.7;
}

/* S1 — Hero */
.service-hero {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}

.service-hero-content {
  padding: calc(64px + var(--space-14)) var(--space-5) var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
}

.service-hero-display {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  font-style: italic;
  color: var(--color-text-muted);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 24, 'WONK' 1;
  margin: 0;
}

@media (min-width: 768px) {
  .service-hero-display {
    font-size: var(--text-3xl);
    font-variation-settings: 'opsz' 30, 'WONK' 1;
  }
}

.service-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin: 0;
}

.service-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 480px;
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.service-hero-trust {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  margin: 0;
  margin-top: var(--space-2);
  letter-spacing: 0.02em;
}

.service-hero-image {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 320px;
  background: #d9d2cb;
}

.service-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (min-width: 768px) {
  .service-hero-grid {
    grid-template-columns: 55fr 45fr;
    min-height: 580px;
  }

  .service-hero-content {
    padding-left: max(var(--space-5), calc((100vw - 1200px) / 2 + var(--space-5)));
    padding-right: var(--space-12);
  }

  .service-hero-title {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 0;
  }

  .service-hero-image {
    aspect-ratio: auto;
    min-height: unset;
  }
}

/* ================================================================
   SERVICE PAGES — S6 AVANT / APRÈS
================================================================ */

.service-avant {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.service-avant-header {
  max-width: 600px;
  margin-bottom: var(--space-10);
}

.service-avant-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .service-avant-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-avant-case {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-avant-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2);
}

.service-avant-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #d9d2cb;
}

.service-avant-img .service-img-placeholder {
  position: absolute;
  inset: 0;
  min-height: unset;
}

.service-avant-badge {
  position: absolute;
  z-index: 1;
  top: var(--space-2);
  left: var(--space-2);
  font-size: 10px;
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text);
  padding: 3px 7px;
  border-radius: 2px;
}

.service-avant-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-avant-caption {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-avant-cta {
  text-align: center;
  margin-top: var(--space-10);
}

.service-avant-cta a {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent);
  text-decoration: none;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.service-avant-cta a:hover {
  opacity: 0.7;
}

/* ================================================================
   SERVICE PAGES — S7 PRIX
================================================================ */

.service-prix {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}

.service-prix-header {
  max-width: 600px;
  margin-bottom: var(--space-10);
}

.service-prix-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}

@media (min-width: 900px) {
  .service-prix-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-14);
  }
}

.service-prix-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.service-prix-card {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-5) var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-prix-card-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.service-prix-card-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: 1;
  font-variation-settings: 'opsz' 24, 'WONK' 0;
}

.service-prix-card-detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-prix-note {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.service-prix-note-title {
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin: 0;
}

.service-prix-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-prix-mre {
  margin-top: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-prix-mre p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* ----------------------------------------------------------------
   S7 — PRIX TABLE (facettes + autres services multi-matériaux)
---------------------------------------------------------------- */

.service-prix-table-wrap {
  overflow-x: auto;
  margin-bottom: var(--space-8);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.service-prix-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background: var(--color-surface);
}

.service-prix-table thead {
  background: var(--color-bg-subtle, #F5F5F4);
}

.service-prix-table th {
  padding: var(--space-3) var(--space-5);
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.service-prix-table td {
  padding: var(--space-4) var(--space-5);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  line-height: var(--line-height-normal);
  vertical-align: middle;
}

.service-prix-table tbody tr:last-child td {
  border-bottom: none;
}

.service-prix-table td:first-child {
  font-weight: 600;
  white-space: nowrap;
}

.service-prix-table td:nth-child(2) {
  font-weight: 600;
  color: var(--color-bordeaux, #800020);
  white-space: nowrap;
}

/* Popular row highlight */
.service-prix-table tr.is-popular {
  background: #FAF7F7;
}

.service-prix-table tr.is-popular td:first-child {
  border-left: 3px solid var(--color-bordeaux, #800020);
  padding-left: calc(var(--space-5) - 3px);
}

.service-prix-badge {
  display: inline-block;
  margin-top: var(--space-1);
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-bordeaux, #800020);
  background: rgba(128, 0, 32, 0.08);
  border-radius: 99px;
}

/* Bottom info cards — horizontal */
.service-prix-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

@media (min-width: 900px) {
  .service-prix-info-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-prix-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
}

.service-prix-info-card--mre {
  background: #FAF7F7;
  border-color: rgba(128, 0, 32, 0.14);
}

.service-prix-info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-bordeaux, #800020);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.service-prix-info-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  flex: 1;
}

.service-prix-info-title {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold, 600);
  color: var(--color-text);
  margin: 0;
}

.service-prix-info-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Disclaimer */
.service-prix-disclaimer {
  font-size: var(--text-xs);
  color: var(--color-text-subtle, #A8A29E);
  line-height: var(--line-height-relaxed);
  padding: var(--space-4) 0;
  border-top: 1px solid var(--color-border);
  margin-bottom: var(--space-6);
}

/* Section CTA */
.service-prix-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ================================================================
   SERVICE PAGES — COMPARISON TABLE
================================================================ */

.service-comparison-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.service-comparison-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
}

.service-comparison-table th {
  padding: var(--space-3) var(--space-5);
  text-align: left;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt, #F8F7F4);
  white-space: nowrap;
}

.service-comparison-table td {
  padding: var(--space-4) var(--space-5);
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
  line-height: var(--line-height-normal);
  vertical-align: top;
}

.service-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.service-comparison-table td:last-child {
  font-weight: 600;
  white-space: nowrap;
}

/* ================================================================
   SERVICE PAGES — S8 POURQUOI LABELDENT
================================================================ */

.service-why {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.service-why-header {
  max-width: 600px;
  margin-bottom: var(--space-10);
}

.service-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 640px) {
  .service-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-why-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
}

.service-why-num {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: var(--color-border);
  line-height: 1;
  font-variation-settings: 'opsz' 36, 'WONK' 0;
}

.service-why-title {
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin: 0;
}

.service-why-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* ================================================================
   SERVICE PAGES — S9 FAQ
================================================================ */

.service-faq {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}

.service-faq-header {
  max-width: 640px;
  margin: 0 auto var(--space-10);
  text-align: center;
}

.service-faq-list {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--color-border);
}

.service-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.service-faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: var(--line-height-normal);
  user-select: none;
}

.service-faq-item summary::-webkit-details-marker {
  display: none;
}

.service-faq-item summary:hover {
  color: var(--color-accent);
}

.service-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.service-faq-icon::before,
.service-faq-icon::after {
  content: '';
  position: absolute;
  background: var(--color-text-muted);
  border-radius: 1px;
  transition: transform var(--duration-fast) var(--ease-out), opacity var(--duration-fast) var(--ease-out);
}

.service-faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.service-faq-item[open] .service-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.service-faq-item[open] summary {
  color: var(--color-text);
}

.service-faq-a {
  padding-bottom: var(--space-5);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 640px;
  margin: 0;
}

/* ================================================================
   SERVICE PAGES — S10 CTA FINAL
================================================================ */

.service-cta-final {
  background: var(--color-text);
  padding: var(--space-16) 0;
}

.service-cta-final-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.service-cta-final-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: #ffffff;
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin: 0;
}

@media (min-width: 768px) {
  .service-cta-final-title {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 0;
  }
}

.service-cta-final-sub {
  font-size: var(--text-base);
  color: rgba(255, 255, 255, 0.6);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-cta-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

/* ================================================================
   CONTACT PAGE
================================================================ */

/* Section 1 — Header (split layout) */
.contact-header {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.contact-header-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 420px;
}

.contact-header-content {
  padding: calc(64px + var(--space-16)) var(--space-5) var(--space-12);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
  max-width: 600px;
}

.contact-header-photo {
  position: relative;
  min-height: 300px;
  background: #d9d2cb;
}

.contact-header-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

@media (min-width: 768px) {
  .contact-header-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 560px;
  }

  .contact-header-content {
    padding-left: max(var(--space-5), calc((100vw - 1200px) / 2 + var(--space-5)));
    padding-right: var(--space-12);
  }

  .contact-header-photo {
    min-height: unset;
  }
}

.contact-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 0;
  }
}

.contact-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 480px;
}

/* Section 2 — Action zone */
.contact-action {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 380px;
    gap: var(--space-16);
  }
}

/* Form column */
.contact-form-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  margin: var(--space-3) 0 var(--space-8);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text);
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
}

.form-label-note {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-normal);
  letter-spacing: 0;
  text-transform: none;
  color: var(--color-text-muted);
}

.form-input {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-bottom-width: 2px;
  padding: var(--space-4) var(--space-4);
  width: 100%;
  outline: none;
  transition: border-color var(--duration-fast) var(--ease-out),
              border-bottom-color var(--duration-fast) var(--ease-out);
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder {
  color: var(--color-text-subtle);
  font-size: var(--text-sm);
}

.form-input:focus {
  border-color: var(--color-border);
  border-bottom-color: var(--color-accent);
}

.form-input.is-invalid {
  border-color: rgba(192, 57, 43, 0.3);
  border-bottom-color: #c0392b;
}

.form-input.is-valid {
  border-color: var(--color-border);
  border-bottom-color: var(--color-text);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%231C1917' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 96px;
}

.form-required {
  color: var(--color-accent);
  margin-left: 2px;
}

.form-error {
  font-size: var(--text-xs);
  color: #c0392b;
  min-height: 1.2em;
  display: block;
  padding-top: 3px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.form-submit-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.form-footnote {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  margin: 0;
  text-align: center;
}

.form-privacy {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  margin: 0;
  text-align: center;
}

/* Success modal popup */
.success-modal {
  position: fixed;
  inset: 0;
  background: rgba(28, 25, 23, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: var(--space-5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-out);
}

.success-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.success-modal-inner {
  background: var(--color-bg);
  padding: var(--space-12) var(--space-10);
  max-width: 440px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  transform: translateY(12px);
  transition: transform 0.3s var(--ease-out);
}

.success-modal.is-open .success-modal-inner {
  transform: translateY(0);
}

.success-modal svg {
  color: var(--color-accent);
}

.success-modal-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  margin: 0;
}

.success-modal-text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
  max-width: 320px;
}

/* Contact info column */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  background: var(--color-bg-alt);
  padding: var(--space-8);
  border: 1px solid var(--color-border);
}

.contact-wa-btn {
  font-size: var(--text-base);
  padding: var(--space-4) var(--space-6);
}

.contact-phone-link {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.contact-phone-link:hover {
  color: var(--color-accent);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-6);
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.contact-detail-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

.contact-detail-value {
  font-size: var(--text-sm);
  color: var(--color-text);
  margin: 0;
}

.contact-map-link {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-accent);
  text-decoration: none;
}

.contact-map-link:hover {
  text-decoration: underline;
}

.contact-hours {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.contact-hours td {
  padding: var(--space-1) 0;
  vertical-align: top;
}

.contact-hours td:last-child {
  text-align: right;
  color: var(--color-text-muted);
}

.contact-languages {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-4);
}

/* Section 3 — FAQ */
.contact-faq {
  background: var(--color-bg-alt);
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--color-border);
  margin-top: var(--space-12);
  counter-reset: faq;
}

.faq-item {
  padding: var(--space-10) var(--space-10);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  counter-increment: faq;
  position: relative;
}

.faq-item::before {
  content: "0" counter(faq);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: var(--tracking-wide);
  color: var(--color-accent);
  margin-bottom: var(--space-1);
}

.faq-item:last-child {
  border-bottom: none;
}

@media (min-width: 768px) {
  .faq-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .faq-item {
    border-bottom: none;
    border-right: 1px solid var(--color-border);
    padding: var(--space-12) var(--space-10);
  }
  .faq-item:last-child {
    border-right: none;
  }
}

.faq-question {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
  margin: 0;
  line-height: var(--line-height-snug);
}

.faq-answer {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Section 4 — Pull quote */
.contact-quote {
  padding: var(--space-20) 0;
  background: var(--color-bg);
}

.contact-quote-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
}

.contact-quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--color-accent);
  line-height: 0.5;
  font-variation-settings: 'opsz' 72, 'WONK' 0;
  user-select: none;
}

.contact-quote-text {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-style: italic;
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  margin: 0;
}

@media (min-width: 768px) {
  .contact-quote-text {
    font-size: var(--text-2xl);
    font-variation-settings: 'opsz' 24, 'WONK' 0;
  }
}

.contact-quote-cite {
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
}

/* Section 5 — Map */
.contact-location {
  background: var(--color-bg-alt);
}

.contact-map-wrap {
  width: 100%;
  height: 360px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 768px) {
  .contact-map-wrap { height: 440px; }
}

.contact-location-info {
  padding: var(--space-6) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.contact-location-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  font-variation-settings: 'opsz' 16, 'WONK' 0;
  margin: 0;
}

.contact-location-address {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}

/* ================================================================
   GRID LAYOUTS
================================================================ */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ================================================================
   SERVICE PAGES — MOBILE OPTIMIZATIONS
   Targets ≤ 639px (phones)
================================================================ */

@media (max-width: 639px) {

  /* ── S1 Hero ── */
  .service-hero-content {
    padding-top: calc(64px + var(--space-8)); /* 96px — nav height + comfortable breathing room */
    padding-bottom: var(--space-10);
  }

  .service-hero-sub {
    font-size: var(--text-base); /* 16px — 18px is too wide for 375px */
  }

  .service-hero-image {
    min-height: 240px; /* was 320px — shorten the placeholder on small screens */
  }

  /* Stack hero CTA buttons full-width */
  .service-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .service-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* ── S2 Credentials bar ── */
  .service-creds {
    padding: var(--space-5) 0;
  }
  .service-creds-list {
    gap: var(--space-4);
  }

  /* ── Section vertical padding — all service sections ── */
  .service-what,
  .service-candidate,
  .service-process,
  .service-avant,
  .service-prix,
  .service-why,
  .service-faq,
  .service-cta-final {
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }

  /* ── S4 Candidate header ── */
  .service-candidate-header {
    margin-bottom: var(--space-8);
  }

  /* ── S5 Process ── */
  .service-process-header {
    margin-bottom: var(--space-8);
  }

  /* Hide image placeholder column — no value on mobile */
  .service-process-img {
    display: none;
  }

  /* ── S6 Avant/Après ── */
  .service-avant-header {
    margin-bottom: var(--space-8);
  }

  /* ── S7 Prix ── */
  .service-prix-header {
    margin-bottom: var(--space-8);
  }

  /* Smooth iOS scroll on price table */
  .service-prix-table-wrap {
    -webkit-overflow-scrolling: touch;
  }

  /* Stack price CTA buttons full-width */
  .service-prix-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .service-prix-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Info cards — reduce padding */
  .service-prix-info-card {
    padding: var(--space-4);
    gap: var(--space-3);
  }

  /* ── S8 Pourquoi ── */
  .service-why-header {
    margin-bottom: var(--space-8);
  }

  /* ── S9 FAQ ── */
  .service-faq-header {
    margin-bottom: var(--space-8);
  }
  .service-faq-item summary {
    padding: var(--space-4) 0; /* slightly tighter tap target row */
  }

  /* ── S10 CTA final ── */
  .service-cta-final-title {
    font-size: var(--text-3xl); /* 30px — 36px is wide for a phone */
    font-variation-settings: 'opsz' 30, 'WONK' 0;
  }

  .service-cta-final-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .service-cta-final-actions .btn {
    width: 100%;
    justify-content: center;
  }

}


/* ================================================================
   RELATED SERVICES — cross-linking section on service pages
================================================================ */
.service-related {
  padding: var(--space-20) 0;
  background: var(--color-bg);
}

.service-related-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.service-related-header .eyebrow {
  margin-bottom: var(--space-3);
}

.service-related-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 52ch;
  margin: var(--space-4) auto 0;
}

.service-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-related-card {
  display: block;
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--color-border);
  text-decoration: none;
  color: var(--color-text);
  transition:
    border-color var(--transition-fast) var(--ease-out),
    box-shadow var(--transition-fast) var(--ease-out);
}

.service-related-card:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.service-related-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  margin-bottom: var(--space-2);
}

.service-related-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

@media (max-width: 767px) {
  .service-related {
    padding: var(--space-16) 0;
  }

  .service-related-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .service-related-card {
    padding: var(--space-6) var(--space-5);
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .service-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-4);
  }
}
/* ============================================
   AVANT-APRÈS — Page styles
   Page : /avant-apres
   ============================================ */


/* ── HERO ──────────────────────────────────── */

.gallery-hero {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.gallery-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.gallery-hero-content {
  padding: var(--space-16) var(--space-6) var(--space-16);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .gallery-hero-grid {
    grid-template-columns: 1fr 1fr;
    max-width: var(--container-xl);
    margin: 0 auto;
  }

  .gallery-hero-content {
    padding: var(--space-20) var(--space-16) var(--space-20) var(--space-16);
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .gallery-hero-image {
    display: block;
    position: relative;
    min-height: 480px;
  }

  .gallery-hero-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

.gallery-hero-title {
  font-size: var(--text-4xl);
  font-family: var(--font-display);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin-bottom: var(--space-5);
}

.gallery-hero-title em {
  font-style: italic;
  font-weight: var(--font-weight-light);
}

@media (min-width: 768px) {
  .gallery-hero-title {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 0;
  }
}

.gallery-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 52ch;
  margin-bottom: var(--space-8);
}


/* ── CASE SECTION ──────────────────────────── */

.case-section {
  padding: var(--space-20) 0;
}

.case-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .case-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }

  /* Alternate layout — slider left, text right */
  .case-layout--reverse > .case-slider-wrap { order: -1; }
  .case-layout--reverse > .case-content     { order:  1; }
}


/* ── CASE CONTENT ──────────────────────────── */

.case-title {
  font-size: var(--text-3xl);
  font-family: var(--font-display);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 30, 'WONK' 0;
  margin-bottom: var(--space-5);
}

@media (min-width: 768px) {
  .case-title {
    font-size: var(--text-4xl);
    font-variation-settings: 'opsz' 36, 'WONK' 0;
  }
}

.case-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 55ch;
  margin-bottom: var(--space-8);
}


/* ── CASE META TABLE ───────────────────────── */

.case-meta {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-8);
}

/* When inside an alt-bg section, invert to white */
.section-alt .case-meta {
  background: var(--color-bg);
}

.case-meta-item {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  font-size: var(--text-sm);
}

.case-meta-label {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  min-width: 88px;
  flex-shrink: 0;
}

.case-meta-value {
  color: var(--color-text-muted);
}


/* ── CASE LINK ─────────────────────────────── */

.case-link {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast) var(--ease-out);
}

.case-link:hover {
  color: var(--color-accent-hover);
}


/* ── BEFORE / AFTER SLIDER ─────────────────── */

.case-slider-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 4 / 3;
  background: var(--color-bg-alt);
  box-shadow: var(--shadow-md);
}

.ba-slider.ba-dragging {
  cursor: grabbing;
}

/* After — sits behind, full width */
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-after img,
.ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Before — full size, clipped by clip-path (set by JS). Image never resizes. */
.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 50% 0 0); /* default 50/50 — JS updates this */
}

/* "Avant" / "Après" pills */
.ba-label {
  position: absolute;
  bottom: var(--space-4);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  pointer-events: none;
}

.ba-label--after {
  right: var(--space-4);
  background: var(--color-text);
  color: var(--color-text-on-dark);
}

.ba-label--before {
  left: var(--space-4);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

/* Handle */
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%; /* updated by JS */
  height: 100%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  z-index: 10;
  touch-action: none;
}

.ba-handle:focus {
  outline: none;
}

.ba-handle:focus-visible .ba-handle-circle {
  box-shadow: 0 0 0 3px var(--color-accent), var(--shadow-md);
}

.ba-handle-track {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ba-handle-circle {
  width: 44px;
  height: 44px;
  background: var(--color-bg);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  box-shadow: var(--shadow-md);
  color: var(--color-text);
  transition:
    transform var(--transition-fast) var(--ease-out),
    box-shadow var(--transition-fast) var(--ease-out);
  flex-shrink: 0;
}

.ba-slider:hover .ba-handle-circle,
.ba-slider.ba-dragging .ba-handle-circle {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.case-slider-hint {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  text-align: center;
  letter-spacing: var(--tracking-wide);
}


/* ── DISCLAIMER ────────────────────────────── */

.disclaimer-band {
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
}

.disclaimer-text {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
  line-height: var(--line-height-relaxed);
}
/* ============================================================
   BLOG ARTICLE — Reusable skeleton for all blog posts
   Clinique LaBeldent · 2026
   ============================================================ */


/* ── HERO ─────────────────────────────────── */

.ba-hero {
  padding: calc(var(--nav-height, 72px) + var(--space-12)) 0 var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

/* Hero with cover image */
.ba-hero--cover {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.ba-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ba-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
}
.ba-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(28, 25, 23, 0.92) 0%, rgba(28, 25, 23, 0.65) 50%, rgba(28, 25, 23, 0.2) 100%);
}
.ba-hero--cover .container {
  position: relative;
  z-index: 2;
  width: 100%;
}
.ba-hero--cover .ba-hero-inner {
  padding: var(--space-10) 0 var(--space-12);
}
.ba-hero--cover .ba-hero-title {
  color: #FFFFFF;
}
.ba-hero--cover .ba-hero-title em {
  color: #FFFFFF;
  opacity: 0.7;
}
.ba-hero--cover .ba-hero-sub {
  color: rgba(255, 255, 255, 0.8);
}
.ba-hero--cover .ba-hero-meta {
  color: rgba(255, 255, 255, 0.5);
}

/* Light breadcrumb + eyebrow on dark bg */
.breadcrumb--light a {
  color: rgba(255, 255, 255, 0.6);
}
.breadcrumb--light a:hover {
  color: #FFFFFF;
}
.breadcrumb--light span[aria-current] {
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb--light span[aria-hidden] {
  color: rgba(255, 255, 255, 0.3);
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .ba-hero--cover {
    min-height: 560px;
  }
}

.ba-hero-inner {
  max-width: 720px;
}

.ba-hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  margin-bottom: var(--space-4);
}

.ba-hero-meta .ba-readtime::before {
  content: '·';
  margin-right: var(--space-3);
}

.ba-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin-bottom: var(--space-5);
}

.ba-hero-title em {
  font-style: italic;
  font-weight: var(--font-weight-light);
}

@media (min-width: 768px) {
  .ba-hero-title {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 0;
  }
}

.ba-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 58ch;
}


/* ── ARTICLE BODY ─────────────────────────── */

.ba-body {
  padding: var(--space-16) 0;
}

.ba-content {
  max-width: 720px;
  margin: 0 auto;
}

/* ── FIGURES ── */
.ba-figure {
  margin: var(--space-8) 0;
}
.ba-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.ba-figure figcaption {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  margin-top: var(--space-3);
  line-height: var(--line-height-relaxed);
}


/* ── PROSE — All body text inside .ba-content ── */

.ba-content h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-snug);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 28, 'WONK' 0;
  margin: var(--space-16) 0 var(--space-6);
}

.ba-content h2:first-child {
  margin-top: 0;
}

@media (min-width: 768px) {
  .ba-content h2 {
    font-size: var(--text-3xl);
    font-variation-settings: 'opsz' 32, 'WONK' 0;
  }
}

.ba-content h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-snug);
  color: var(--color-text);
  font-variation-settings: 'opsz' 22, 'WONK' 0;
  margin: var(--space-10) 0 var(--space-4);
}

.ba-content p {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  max-width: 65ch;
  margin-bottom: var(--space-5);
}

.ba-content p.ba-lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 60ch;
}

.ba-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition-fast) var(--ease-out);
}

.ba-content a:hover {
  color: var(--color-accent-hover);
}

.ba-content ul,
.ba-content ol {
  padding-left: var(--space-6);
  margin-bottom: var(--space-5);
}

.ba-content li {
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-2);
}

.ba-content strong {
  font-weight: var(--font-weight-semibold);
}


/* ── COMPARISON TABLE ─────────────────────── */

.ba-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: var(--space-8) 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.ba-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.ba-table thead {
  background: var(--color-bg-alt);
}

.ba-table th {
  font-family: var(--font-body);
  font-weight: var(--font-weight-semibold);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  text-align: left;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  white-space: nowrap;
}

.ba-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: top;
}

.ba-table tbody tr:last-child td {
  border-bottom: none;
}

.ba-table .ba-highlight {
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
}


/* ── CALLOUT BOX ──────────────────────────── */

.ba-callout {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-accent);
  padding: var(--space-6) var(--space-8);
  margin: var(--space-8) 0;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.ba-callout p {
  margin-bottom: var(--space-2);
}

.ba-callout p:last-child {
  margin-bottom: 0;
}

.ba-callout-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-3);
}


/* ── CHECKLIST ────────────────────────────── */

.ba-checklist {
  list-style: none;
  padding-left: 0;
  margin: var(--space-6) 0;
}

.ba-checklist li {
  position: relative;
  padding-left: var(--space-8);
  margin-bottom: var(--space-4);
}

.ba-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-sm);
}


/* ── KEY FIGURE (inline stat) ─────────────── */

.ba-stat {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin: var(--space-6) 0;
}

.ba-stat-number {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: var(--color-accent);
  line-height: 1;
  font-variation-settings: 'opsz' 36, 'WONK' 0;
}

.ba-stat-label {
  font-size: var(--text-base);
  color: var(--color-text-muted);
}


/* ── FAQ ACCORDION ────────────────────────── */

.ba-faq {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}

.ba-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.ba-faq-list {
  margin-top: var(--space-10);
}

.ba-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.ba-faq-item:last-child {
  border-bottom: none;
}

.ba-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  transition: color var(--transition-fast) var(--ease-out);
}

.ba-faq-question:hover {
  color: var(--color-accent);
}

.ba-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--color-text-muted);
  transition: transform var(--transition-base) var(--ease-out);
}

.ba-faq-item[open] .ba-faq-icon {
  transform: rotate(45deg);
}

.ba-faq-answer {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  padding: 0 0 var(--space-6);
  max-width: 60ch;
}


/* ── AUTHOR BOX ───────────────────────────── */

.ba-author {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-8) 0;
  border-top: 1px solid var(--color-border);
  margin-top: var(--space-12);
}

.ba-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.ba-author-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}

.ba-author-title {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}


/* ── RELATED ARTICLES ─────────────────────── */

.ba-related {
  padding: var(--space-16) 0 var(--space-20);
  border-top: 1px solid var(--color-border);
}

.ba-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-top: var(--space-10);
}

@media (min-width: 640px) {
  .ba-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ba-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================
   BLOG — Page styles
   Page : /blog
   ============================================ */


/* ── HERO ──────────────────────────────────── */

.blog-hero {
  padding: calc(72px + var(--space-8)) 0 var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

.blog-hero-inner {
  max-width: 680px;
}

.blog-hero-title {
  font-size: var(--text-4xl);
  font-family: var(--font-display);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin-bottom: var(--space-5);
}

.blog-hero-title em {
  font-style: italic;
  font-weight: var(--font-weight-light);
}

@media (min-width: 768px) {
  .blog-hero-title {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 0;
  }
}

.blog-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 58ch;
}


/* ── GRID SECTION ──────────────────────────── */

.blog-grid-section {
  padding: var(--space-16) 0 var(--space-20);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
  }
}


/* ── CARD ──────────────────────────────────── */

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: box-shadow var(--transition-base) var(--ease-out),
              transform var(--transition-base) var(--ease-out);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}


/* ── CARD IMAGE ────────────────────────────── */

.blog-card-image-link {
  display: block;
  text-decoration: none;
}

.blog-card-image-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-alt);
}

.blog-card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow) var(--ease-out);
}

.blog-card:hover .blog-card-image-wrap img {
  transform: scale(1.04);
}

.blog-card-category {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
}


/* ── CARD BODY ─────────────────────────────── */

.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-6);
  gap: var(--space-3);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
}

.blog-card-readtime::before {
  content: '·';
  margin-right: var(--space-3);
}

.blog-card-title {
  font-size: var(--text-lg);
  font-family: var(--font-display);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-snug);
  letter-spacing: var(--tracking-tight);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
  color: var(--color-text);
  margin: 0;
}

.blog-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast) var(--ease-out);
}

.blog-card-title a:hover {
  color: var(--color-accent);
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  flex: 1;
}

.blog-card-link {
  display: inline-block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast) var(--ease-out);
}

.blog-card-link:hover {
  color: var(--color-accent-hover);
}
/* ============================================================
   COURONNE DENTAIRE — Page CSS
   Clinique LaBeldent · 2026
   Page-specific styles only. Global tokens from variables.css.
   ============================================================ */



/* ── Inline body link ── */
.service-inline-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast) var(--ease-out);
}
.service-inline-link:hover { color: var(--color-accent-hover); }


/* ============================================================
   S3 — QUAND UNE COURONNE EST-ELLE NÉCESSAIRE ?
   ============================================================ */
.couronne-quand {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}
.couronne-quand-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-12);
}
.couronne-quand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
}
@media (min-width: 640px) {
  .couronne-quand-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .couronne-quand-grid { grid-template-columns: repeat(3, 1fr); }
}
.couronne-quand-card {
  background: var(--color-bg);
  padding: var(--space-8);
  border-top: 3px solid transparent;
  transition: border-color var(--transition-base) var(--ease-out);
}
.couronne-quand-card:hover { border-top-color: var(--color-accent); }
.couronne-quand-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-light);
  font-variation-settings: 'opsz' 14;
  color: var(--color-accent);
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-4);
}
.couronne-quand-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  margin: 0 0 var(--space-3);
}
.couronne-quand-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   S4 — MATÉRIAUX
   ============================================================ */
.couronne-materiaux {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}
.couronne-materiaux-header {
  max-width: 680px;
  margin: 0 auto var(--space-12);
  text-align: center;
}
.couronne-materiaux-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: var(--space-5) 0 0;
}
.couronne-materiaux-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
}
@media (min-width: 768px) {
  .couronne-materiaux-grid { grid-template-columns: repeat(3, 1fr); }
}
.couronne-mat-card {
  padding: var(--space-8);
  border-left: 3px solid var(--color-border);
  transition: border-left-color var(--transition-base) var(--ease-out);
}
.couronne-mat-card:hover { border-left-color: var(--color-accent); }
.couronne-mat-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}
.couronne-mat-name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  margin: 0 0 var(--space-4);
}
.couronne-mat-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-5);
}
.couronne-mat-ideal {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.couronne-mat-ideal span {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}


/* ── S4 — Materiaux showcase (text left, video right) ── */
.couronne-materiaux-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: center;
  margin-top: var(--space-12);
}
@media (min-width: 900px) {
  .couronne-materiaux-showcase {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-14);
  }
}
.couronne-materiaux-showcase-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  margin: 0 0 var(--space-5);
}
.couronne-materiaux-showcase-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-4);
}
.couronne-materiaux-showcase-desc:last-of-type {
  margin-bottom: 0;
}
.couronne-materiaux-showcase-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
  background: var(--color-bg-alt);
}
.couronne-materiaux-showcase-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-m);
}


/* ============================================================
   S5 — DÉROULEMENT — dark background
   ============================================================ */
.couronne-process {
  padding: var(--space-16) 0;
  background: var(--color-text);
}
.couronne-process .eyebrow { color: var(--color-accent-on-dark); }
.couronne-process .service-section-title { color: #FFFFFF; }
.couronne-process-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  max-width: 600px;
  margin: var(--space-4) 0 var(--space-12);
}
/* ── Two-column layout: steps left, image right ── */
.couronne-process-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 900px) {
  .couronne-process-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}
.couronne-process-img {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-m);
}
.couronne-process-img video {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  border-radius: var(--radius-m);
  object-fit: cover;
}
@media (max-width: 899px) {
  .couronne-process-img video {
    min-height: 280px;
  }
}
@media (min-width: 900px) {
  .couronne-process-img {
    position: sticky;
    top: var(--space-8);
  }
}
@media (max-width: 899px) {
  .couronne-process-img {
    max-width: 400px;
    margin: 0 auto;
  }
}

.couronne-steps { display: flex; flex-direction: column; }
.couronne-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-6);
  padding-bottom: var(--space-8);
  position: relative;
}
.couronne-step:not(.couronne-step--last)::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 36px;
  bottom: 0;
  width: 1px;
  background: var(--color-border-dark);
}
.couronne-step-left { position: relative; z-index: 1; }
.couronne-step-num {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent-on-dark);
  background: var(--color-text);
}
.couronne-step-time {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted-dark);
  margin-bottom: var(--space-2);
}
.couronne-step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  color: #FFFFFF;
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  margin: 0 0 var(--space-3);
}
.couronne-step-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.couronne-step-desc strong { color: #FFFFFF; font-weight: var(--font-weight-medium); }
.couronne-process-callout {
  margin-top: var(--space-10);
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-border-dark);
  border-left: 3px solid var(--color-accent-on-dark);
}
.couronne-process-callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  font-variation-settings: 'opsz' 16;
  color: #FFFFFF;
  margin-bottom: var(--space-2);
}
.couronne-process-callout p {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   S6 — COURONNE OU FACETTE
   ============================================================ */
.couronne-vs-facette {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}
.couronne-vs-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto var(--space-12);
}
.couronne-vs-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: var(--space-4) 0 0;
}
.couronne-vs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .couronne-vs-grid { grid-template-columns: 1fr 1fr; }
}
.couronne-vs-card {
  padding: var(--space-8);
  background: var(--color-bg-alt);
}
.couronne-vs-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-text);
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: var(--space-4);
}
.couronne-vs-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  margin: 0 0 var(--space-4);
}
.couronne-vs-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-5);
}
.couronne-vs-when {
  font-size: var(--text-sm);
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-relaxed);
  margin: 0;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}
.couronne-vs-note {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 580px;
  margin: 0 auto;
}


/* ── Image placeholder — shared across page sections ── */
.img-placeholder {
  margin: 0;
  background: var(--color-bg-alt);
  border: 1.5px dashed #C8C3BE;
  border-radius: var(--radius-m);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  min-height: 260px;
  width: 100%;
  box-sizing: border-box;
}
.img-placeholder > span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 44ch;
  line-height: var(--line-height-relaxed);
}


/* ============================================================
   S7 — PRIX
   ============================================================ */
.couronne-prix {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}
.couronne-prix-header {
  max-width: 640px;
  margin: 0 0 var(--space-12);
}
.couronne-prix-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  align-items: start;
}
@media (min-width: 1024px) {
  .couronne-prix-layout { grid-template-columns: 1fr 380px; }
}
.couronne-prix-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}
.couronne-prix-card {
  background: var(--color-bg);
  padding: var(--space-6) var(--space-8);
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: var(--space-6);
  row-gap: var(--space-2);
  align-items: start;
}
.couronne-prix-card-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted);
  grid-column: 1;
  grid-row: 1;
}
.couronne-prix-card-price {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  font-variation-settings: 'opsz' 24;
  grid-column: 2;
  grid-row: 1 / 3;
  white-space: nowrap;
  align-self: center;
}
.couronne-prix-card-detail {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
  grid-column: 1;
  grid-row: 2;
}
@media (max-width: 600px) {
  .couronne-prix-card { grid-template-columns: 1fr; }
  .couronne-prix-card-price { grid-column: 1; grid-row: 2; font-size: var(--text-xl); }
  .couronne-prix-card-detail { grid-row: 3; }
}
.couronne-prix-note {
  background: var(--color-bg);
  padding: var(--space-8);
}
.couronne-prix-note-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  margin: 0 0 var(--space-5);
}
.couronne-prix-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-4);
}
.couronne-prix-note p:last-child { margin-bottom: 0; }
.couronne-prix-note a { color: var(--color-accent); font-weight: var(--font-weight-medium); text-decoration: none; }
.couronne-prix-note a:hover { text-decoration: underline; }


/* ============================================================
   S8 — CNOPS / AMO
   ============================================================ */
.couronne-cnops {
  padding: var(--space-12) 0;
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.couronne-cnops-inner { max-width: 720px; }
.couronne-cnops-inner h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  margin: 0 0 var(--space-5);
}
.couronne-cnops-inner p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-4);
}
.couronne-cnops-inner p:last-child { margin-bottom: 0; }
.couronne-cnops-inner a {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
/* ============================================================
   DENTISTERIE PÉDIATRIQUE — Page-specific styles
   Clinique LaBeldent · 2026
   ============================================================ */


/* ============================================================
   Overrides — force white backgrounds on shared components
   ============================================================ */
.service-creds { background: var(--color-bg); }
.service-faq  { background: var(--color-bg); }


/* ============================================================
   S3 — PREMIÈRE VISITE (dark background)
   ============================================================ */
.pedo-premiere-visite {
  padding: var(--space-16) 0;
  background: var(--color-text);
}
.pedo-premiere-visite .eyebrow { color: var(--color-accent-on-dark); }
.pedo-premiere-visite .service-section-title { color: #FFFFFF; }

.pedo-premiere-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 768px) {
  .pedo-premiere-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.pedo-premiere-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.pedo-premiere-body p {
  font-size: var(--text-base);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.pedo-premiere-body strong {
  color: #FFFFFF;
  font-weight: var(--font-weight-medium);
}

.pedo-premiere-callout {
  margin-top: var(--space-6);
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-border-dark);
  border-left: 3px solid var(--color-accent-on-dark);
}
.pedo-premiere-callout p {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.pedo-premiere-callout strong {
  display: block;
  color: #FFFFFF;
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
}

/* Age milestone cards */
.pedo-premiere-ages {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.pedo-age-card {
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-border-dark);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.pedo-age-value {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-accent-on-dark);
  line-height: 1;
  font-variation-settings: 'opsz' 24, 'WONK' 1;
}

.pedo-age-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
}


/* ============================================================
   S4 — SOINS ET PRÉVENTION
   ============================================================ */
.pedo-soins {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.pedo-soins-header {
  max-width: 640px;
  margin-bottom: var(--space-12);
}

.pedo-soins-intro {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: var(--space-4) 0 0;
}

.pedo-soins-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
@media (min-width: 640px) {
  .pedo-soins-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pedo-soins-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pedo-soin-card {
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  transition: border-color var(--transition-base) var(--ease-out);
}
.pedo-soin-card:hover {
  border-color: var(--color-text-muted);
}

.pedo-soin-icon {
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.pedo-soin-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  margin: 0 0 var(--space-3);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
}

.pedo-soin-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   S5 — DENTS DE LAIT
   ============================================================ */
.pedo-dents-lait {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.pedo-dents-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 768px) {
  .pedo-dents-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.pedo-dents-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pedo-dents-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin: var(--space-6) 0;
}
.pedo-dents-body p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.pedo-dents-fact {
  display: flex;
  align-items: baseline;
  gap: var(--space-4);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.pedo-dents-fact-number {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-light);
  color: var(--color-accent);
  line-height: 1;
  font-variation-settings: 'opsz' 48, 'WONK' 1;
  flex-shrink: 0;
}

.pedo-dents-fact-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
}
/* ============================================================
   DIGITAL SMILE DESIGN — Page CSS
   Clinique LaBeldent · 2026
   Page-specific styles only. Global tokens from variables.css.
   ============================================================ */
/* ============================================
   MENTIONS LÉGALES — Page-specific styles
   Page: mentions-legales.html
   ============================================ */


/* ---- HERO ---- */

.legal-hero {
  padding: var(--space-20) 0 var(--space-12);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.legal-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
  margin-top: var(--space-3);
}

.legal-hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

.legal-updated {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
}

@media (min-width: 768px) {
  .legal-hero-title {
    font-size: var(--text-5xl);
  }
}


/* ---- BREADCRUMB ---- */

.breadcrumb {
  margin-bottom: var(--space-6);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.breadcrumb li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--color-text-subtle);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text);
}


/* ---- LAYOUT — sidebar + content ---- */

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 220px 1fr;
    gap: var(--space-16);
  }
}


/* ---- SIDEBAR NAV ---- */

.legal-nav {
  display: none;
}

@media (min-width: 1024px) {
  .legal-nav {
    display: block;
    position: sticky;
    top: calc(var(--space-20) + 16px); /* below sticky nav */
  }
}

.legal-nav-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-4);
}

.legal-nav-list {
  list-style: none;
  counter-reset: legal-counter;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.legal-nav-list li {
  counter-increment: legal-counter;
}

.legal-nav-list a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-left: 2px solid var(--color-border);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: var(--line-height-snug);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.legal-nav-list a:hover {
  color: var(--color-text);
  border-left-color: var(--color-accent);
  background: var(--color-accent-light);
}


/* ---- LEGAL CONTENT ---- */

.legal-content {
  max-width: 720px;
}

.legal-section {
  padding-bottom: var(--space-12);
  margin-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-6);
  scroll-margin-top: 100px;
}

.legal-subsection-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.legal-section p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.legal-section a:hover {
  border-bottom-color: var(--color-accent);
}

.legal-section strong {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}


/* ---- TABLE ---- */

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
}

.legal-table th,
.legal-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  line-height: var(--line-height-snug);
  vertical-align: top;
}

.legal-table th {
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  white-space: nowrap;
  width: 40%;
}

.legal-table td {
  color: var(--color-text-muted);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table a {
  color: var(--color-accent);
  text-decoration: none;
}

@media (max-width: 600px) {
  .legal-table,
  .legal-table tbody,
  .legal-table tr {
    display: block;
  }

  .legal-table tr {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-border);
  }

  .legal-table tr:last-child {
    border-bottom: none;
  }

  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
    padding: var(--space-1) 0;
    border-bottom: none;
  }

  .legal-table th {
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin-bottom: var(--space-1);
  }
}


/* ---- LISTS ---- */

.legal-list {
  list-style: none;
  margin: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-list li {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  padding-left: var(--space-6);
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}

.legal-list strong {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}


/* ---- NOTICE BOX ---- */

.legal-notice {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-border);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-4);
}

.legal-notice p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}


/* ---- CONTACT ADDRESS ---- */

.legal-contact {
  font-style: normal;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}

.legal-contact strong {
  display: block;
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
}

.legal-contact a {
  color: var(--color-accent);
  text-decoration: none;
}
/* ============================================================
   NOTRE ÉQUIPE / À PROPOS — Page-specific styles
   Clinique LaBeldent · 2026
   ============================================================ */



/* ============================================================
   FOUNDER SECTION
   ============================================================ */
.founder-layout {
  max-width: 720px;
}

/* Ghost placeholder */
.founder-ghost {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  overflow: hidden;
}

.founder-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-accent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.founder-ghost-icon {
  color: var(--color-text-subtle);
  opacity: 0.6;
}

.founder-ghost-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-subtle);
}

/* Founder content */
.founder-role {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.founder-name {
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  margin-bottom: var(--space-8);
  font-variation-settings: 'opsz' 36;
}

.founder-bio {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.founder-bio p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 60ch;
}

.founder-divider {
  height: 1px;
  background: var(--color-border);
  margin-bottom: var(--space-8);
}

.founder-creds {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.founder-cred-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: var(--line-height-normal);
}

.founder-cred-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}


/* ============================================================
   PROTOCOL / VALUES SECTION
   ============================================================ */
.protocol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .protocol-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.protocol-card {
  padding: var(--space-8);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow var(--transition-base) var(--ease-brand);
}

.protocol-card:hover {
  box-shadow: var(--shadow-md);
}

.protocol-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
}

.protocol-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  margin-bottom: var(--space-3);
  font-variation-settings: 'opsz' 18;
}

.protocol-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}


/* ============================================================
   TECH SECTION
   ============================================================ */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  margin-top: var(--space-12);
}

@media (min-width: 768px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(3, 1fr); }
}

.tech-card {
  padding: var(--space-6) var(--space-8);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  border-left: 2px solid var(--color-border);
  transition: border-color var(--transition-base) var(--ease-out);
}

.tech-card:hover {
  border-left-color: var(--color-accent);
}

.tech-title {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  margin-bottom: var(--space-2);
  font-variation-settings: 'opsz' 16;
}

.tech-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}


/* ============================================================
   TEAM SECTION
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-12);
  justify-items: center;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  text-align: center;
}

.team-ghost {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  color: var(--color-text-subtle);
}

.team-role {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-1);
}

.team-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
}


/* ============================================================
   CTA BANNER (page-level override if needed)
   ============================================================ */
.cta-banner {
  padding: var(--space-20) 0;
  background: var(--color-text);
  text-align: center;
}

.cta-banner-inner {
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner-eyebrow {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-on-dark);
  margin-bottom: var(--space-4);
}

.cta-banner-title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-4xl));
  font-weight: var(--font-weight-light);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text-on-dark);
  margin-bottom: var(--space-4);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
}

.cta-banner-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}


/* ============================================================
   SECTION HEADER (centered variant)
   ============================================================ */
.section-header-centered {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-3xl));
  font-weight: var(--font-weight-normal);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  margin-bottom: var(--space-4);
  font-variation-settings: 'opsz' 28;
}

.section-lead {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 56ch;
  margin: 0 auto;
}


/* ============================================================
   ANIMATE ON ENTER
   ============================================================ */
.animate-enter {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity var(--transition-enter) var(--ease-enter),
    transform var(--transition-enter) var(--ease-enter);
}

.animate-enter.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Inline body link ── */
.service-inline-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast) var(--ease-out);
}
.service-inline-link:hover { color: var(--color-accent-hover); }

/* ── Orthodontie comparison section ── */
.ortho-compare {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}

.ortho-compare-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-12);
}

.ortho-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
  margin-bottom: var(--space-12);
}
@media (min-width: 768px) {
  .ortho-compare-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-1);
  }
}

.ortho-compare-item {
  background: var(--color-bg);
  padding: var(--space-8) var(--space-8);
  border-left: 3px solid transparent;
  transition: border-color var(--transition-base) var(--ease-out);
}
.ortho-compare-item:hover {
  border-left-color: var(--color-accent);
}

.ortho-compare-q {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  margin: 0 0 var(--space-4);
}

.ortho-compare-a {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* ── Path cards — brackets & aligners CTA ── */
.ortho-path-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 640px) {
  .ortho-path-grid { grid-template-columns: 1fr 1fr; }
}

.ortho-path-card {
  background: var(--color-text);
  color: var(--color-text-on-dark);
  padding: var(--space-8) var(--space-8) var(--space-10);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.ortho-path-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent-on-dark);
}

.ortho-path-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: #FFFFFF;
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  margin: 0;
}

.ortho-path-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
  flex: 1;
}

.ortho-path-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: #FFFFFF;
  text-decoration: none;
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-dark);
  margin-top: auto;
  transition: gap var(--transition-base) var(--ease-brand);
}
.ortho-path-cta:hover { gap: var(--space-4); }

.ortho-path-nudge {
  text-align: center;
  margin-top: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

/* ── Contention section — dark bg variant ── */
.service-contention {
  padding: var(--space-16) 0;
  background: var(--color-text);
}

.service-contention .eyebrow { color: var(--color-accent-on-dark); }

.service-contention .service-section-title {
  color: #FFFFFF;
}

.service-contention-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.service-contention-body p {
  font-size: var(--text-base);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-contention-body strong {
  color: #FFFFFF;
  font-weight: var(--font-weight-medium);
}

.service-contention-callout {
  margin-top: var(--space-8);
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-border-dark);
  border-left: 3px solid var(--color-accent-on-dark);
}

.service-contention-callout p {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.service-contention-callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  font-variation-settings: 'opsz' 16;
  color: #FFFFFF;
  margin-bottom: var(--space-2);
}

/* ── Process section video ── */
.service-process-img video {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

/* ── Avant/après — 2-col grid for orthodontie (2 cases) ── */
.ortho-avant-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}
@media (min-width: 768px) {
  .ortho-avant-grid { grid-template-columns: repeat(2, 1fr); }
}

.ortho-avant-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.ortho-avant-tag {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-bg);
  background: var(--color-text);
  padding: 3px 8px;
  border-radius: 2px;
}

.ortho-avant-duration {
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  letter-spacing: 0.03em;
}
/* ============================================
   POLITIQUE DE CONFIDENTIALITÉ — Page-specific styles
   Page: politique-confidentialite.html
   ============================================ */


/* ---- HERO ---- */

.legal-hero {
  padding: var(--space-20) 0 var(--space-12);
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.legal-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  margin-bottom: var(--space-4);
  margin-top: var(--space-3);
}

.legal-hero-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

.legal-updated {
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
}

@media (min-width: 768px) {
  .legal-hero-title {
    font-size: var(--text-5xl);
  }
}


/* ---- BREADCRUMB ---- */

.breadcrumb {
  margin-bottom: var(--space-6);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  align-items: center;
}

.breadcrumb li {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.breadcrumb li + li::before {
  content: '/';
  color: var(--color-text-subtle);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--color-text);
}


/* ---- LAYOUT — sidebar + content ---- */

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}

@media (min-width: 1024px) {
  .legal-layout {
    grid-template-columns: 220px 1fr;
    gap: var(--space-16);
  }
}


/* ---- SIDEBAR NAV ---- */

.legal-nav {
  display: none;
}

@media (min-width: 1024px) {
  .legal-nav {
    display: block;
    position: sticky;
    top: calc(var(--space-20) + 16px);
  }
}

.legal-nav-title {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-4);
}

.legal-nav-list {
  list-style: none;
  counter-reset: legal-counter;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.legal-nav-list li {
  counter-increment: legal-counter;
}

.legal-nav-list a {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  padding: var(--space-2) var(--space-3);
  border-left: 2px solid var(--color-border);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  line-height: var(--line-height-snug);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.legal-nav-list a:hover {
  color: var(--color-text);
  border-left-color: var(--color-accent);
  background: var(--color-accent-light);
}


/* ---- LEGAL CONTENT ---- */

.legal-content {
  max-width: 720px;
}

.legal-section {
  padding-bottom: var(--space-12);
  margin-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border);
}

.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-text);
  letter-spacing: var(--tracking-tight);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-6);
  scroll-margin-top: 100px;
}

.legal-subsection-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.legal-section p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-4);
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition-fast);
}

.legal-section a:hover {
  border-bottom-color: var(--color-accent);
}

.legal-section strong {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}


/* ---- TABLE ---- */

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
}

.legal-table th,
.legal-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
  line-height: var(--line-height-snug);
  vertical-align: top;
}

.legal-table th {
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  white-space: nowrap;
  width: 40%;
}

.legal-table td {
  color: var(--color-text-muted);
}

.legal-table tr:last-child th,
.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table a {
  color: var(--color-accent);
  text-decoration: none;
}

@media (max-width: 600px) {
  .legal-table,
  .legal-table tbody,
  .legal-table tr {
    display: block;
  }

  .legal-table tr {
    padding: var(--space-4) 0;
    border-bottom: 1px solid var(--color-border);
  }

  .legal-table tr:last-child {
    border-bottom: none;
  }

  .legal-table th,
  .legal-table td {
    display: block;
    width: 100%;
    padding: var(--space-1) 0;
    border-bottom: none;
  }

  .legal-table th {
    font-size: var(--text-xs);
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--color-text-subtle);
    margin-bottom: var(--space-1);
    white-space: normal;
  }
}


/* ---- LISTS ---- */

.legal-list {
  list-style: none;
  margin: var(--space-4) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-list li {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  padding-left: var(--space-6);
  position: relative;
}

.legal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.5;
}

.legal-list strong {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}


/* ---- NOTICE BOX ---- */

.legal-notice {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-border);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: var(--space-4) var(--space-5);
  margin-top: var(--space-4);
}

.legal-notice p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin: 0;
}


/* ---- CONTACT ADDRESS ---- */

.legal-contact {
  font-style: normal;
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-4);
  margin-bottom: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
}

.legal-contact strong {
  display: block;
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-2);
}

.legal-contact a {
  color: var(--color-accent);
  text-decoration: none;
}
/* ============================================================
   REMBOURSEMENT DENTAIRE — Page CSS
   Clinique LaBeldent · 2026
   Page-specific styles only. Global tokens from variables.css.
   ============================================================ */


/* ============================================================
   SCROLL TARGET OFFSET
   ============================================================ */
.remb-section[id],
.remb-hero[id],
.remb-faq[id],
.remb-dark[id],
.remb-cta[id] {
  scroll-margin-top: 80px;
}


/* ============================================================
   S1 — HERO
   ============================================================ */
.remb-hero {
  padding: calc(var(--nav-height, 72px) + var(--space-16)) 0 var(--space-10);
  background: var(--color-bg-alt);
  text-align: center;
}

.remb-hero-inner {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.remb-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-5xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  font-variation-settings: 'opsz' 72, 'WONK' 0;
  margin: var(--space-4) 0 var(--space-4);
}

.remb-hero-sub {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 55ch;
  margin: 0 auto;
}

.remb-hero-author {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-subtle);
  margin: var(--space-10) 0 0;
  text-align: center;
}


/* ============================================================
   S2 — CALCULATOR
   ============================================================ */
.remb-calc {
  padding: var(--space-12) 0 var(--space-20);
  background: var(--color-bg);
}

.remb-calc-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-8);
  align-items: start;
}

/* — Step labels — */
.remb-calc-step {
  margin-bottom: var(--space-8);
}

.remb-calc-step-label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

/* — Regime buttons — */
.remb-calc-regime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.remb-calc-regime-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-4) var(--space-5);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  cursor: pointer;
  transition:
    border-color var(--transition-base) var(--ease-out),
    background-color var(--transition-base) var(--ease-out);
}

.remb-calc-regime-btn:hover {
  border-color: var(--color-text-subtle);
}

.remb-calc-regime-btn.is-active {
  border-color: var(--color-text);
  background: var(--color-bg);
}

.remb-calc-regime-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  line-height: 1.3;
}

.remb-calc-regime-desc {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* — Mutuelle sub-panel — */
.remb-calc-mutuelle-panel {
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
  animation: remb-fade-in 0.25s var(--ease-out);
}

@keyframes remb-fade-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.remb-calc-mutuelle-label {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-subtle);
  margin-bottom: var(--space-3);
}

.remb-calc-mutuelle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.remb-calc-mutuelle-btn {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  cursor: pointer;
  transition:
    border-color var(--transition-fast) var(--ease-out),
    background-color var(--transition-fast) var(--ease-out);
}

.remb-calc-mutuelle-btn:hover {
  border-color: var(--color-text-subtle);
}

.remb-calc-mutuelle-btn.is-active {
  border-color: var(--color-accent);
  background: var(--color-accent-light);
}

.remb-calc-mutuelle-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  line-height: 1.3;
}

.remb-calc-mutuelle-detail {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.3;
}

.remb-calc-mutuelle-meta {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-text-subtle);
  margin-top: var(--space-1);
  line-height: 1.3;
}


/* — Treatment checkboxes — */
.remb-calc-treatments {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.remb-calc-treatment {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
  transition: background-color var(--transition-fast) var(--ease-out);
  user-select: none;
}

.remb-calc-treatment:first-child {
  border-top: 1px solid var(--color-border);
}

.remb-calc-treatment:hover {
  background: var(--color-bg-alt);
}

.remb-calc-treatment input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.remb-calc-treatment-check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color var(--transition-fast) var(--ease-out),
    background-color var(--transition-fast) var(--ease-out);
}

.remb-calc-treatment input:checked ~ .remb-calc-treatment-check {
  border-color: var(--color-accent);
  background: var(--color-accent);
}

.remb-calc-treatment input:checked ~ .remb-calc-treatment-check::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

.remb-calc-treatment-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.remb-calc-treatment-name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: 1.3;
}

.remb-calc-treatment-price {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

/* — Category labels in treatment list — */
.remb-calc-cat {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
  padding: var(--space-3) 0 var(--space-1);
  border-bottom: 1px solid var(--color-border);
  margin: 0;
}
.remb-calc-cat:first-child {
  padding-top: 0;
}

/* — Quantity controls — */
.remb-calc-treatment-qty {
  display: none;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.remb-calc-treatment input:checked ~ .remb-calc-treatment-qty {
  display: flex;
}

.remb-calc-qty-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  cursor: pointer;
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1;
  transition:
    border-color var(--transition-fast) var(--ease-out),
    background-color var(--transition-fast) var(--ease-out);
}

.remb-calc-qty-btn:hover {
  border-color: var(--color-text);
  background: var(--color-bg-alt);
}

.remb-calc-qty-val {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  min-width: 20px;
  text-align: center;
}

/* — Results card (sticky) — */
.remb-calc-results {
  position: sticky;
  top: calc(var(--nav-height, 72px) + var(--space-6));
}

.remb-calc-results-card {
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  background: var(--color-bg);
}

.remb-calc-results-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin-bottom: var(--space-6);
}

.remb-calc-empty p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* — Breakdown lines — */
.remb-calc-lines {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-6);
}

.remb-calc-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-sm);
}

.remb-calc-line:last-child {
  border-bottom: none;
}

.remb-calc-line-name {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
  line-height: 1.3;
}

.remb-calc-line-name small {
  font-weight: var(--font-weight-normal);
  color: var(--color-text-muted);
  margin-left: var(--space-1);
}

.remb-calc-line-basis {
  display: block;
  font-size: 11px;
  font-weight: var(--font-weight-normal);
  color: var(--color-text-subtle);
  line-height: 1.4;
  margin-top: 1px;
}

.remb-calc-line-values {
  display: flex;
  gap: var(--space-4);
  text-align: right;
  flex-shrink: 0;
}

.remb-calc-line-cost {
  color: var(--color-text-muted);
  min-width: 80px;
}

.remb-calc-line-remb {
  color: var(--color-success);
  font-weight: var(--font-weight-medium);
  min-width: 80px;
}

.remb-calc-line-tag {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1px 6px;
  line-height: 1.5;
}

.remb-calc-line-tag--exclu {
  background: #FEF2F2;
  color: var(--color-error);
}

/* — Totals — */
.remb-calc-totals {
  border-top: 2px solid var(--color-text);
  padding-top: var(--space-4);
  margin-bottom: var(--space-5);
}

.remb-calc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: var(--space-1) 0;
}

.remb-calc-total-row--final {
  padding-top: var(--space-3);
  margin-top: var(--space-2);
  border-top: 1px solid var(--color-border);
}

.remb-calc-total-value {
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
}

.remb-calc-total-value--green {
  color: var(--color-success);
}

.remb-calc-total-value--accent {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-normal);
  color: var(--color-accent);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
}

/* — Coverage bar — */
.remb-calc-coverage {
  margin-top: var(--space-4);
}

.remb-calc-coverage-label {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-bottom: var(--space-1);
}

.remb-calc-coverage-bar {
  height: 6px;
  background: var(--color-border);
  overflow: hidden;
}

.remb-calc-coverage-fill {
  height: 100%;
  background: var(--color-success);
  transition: width var(--transition-slow) var(--ease-brand);
}

/* — Notes — */
.remb-calc-notes {
  margin-bottom: var(--space-6);
}

.remb-calc-note {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  padding: var(--space-3) var(--space-4);
  background: var(--color-bg-alt);
  border-left: 2px solid var(--color-warning);
  margin-bottom: var(--space-2);
}

.remb-calc-note:last-child {
  margin-bottom: 0;
}

/* — CTA button — */
.remb-calc-cta {
  width: 100%;
  text-align: center;
  margin-bottom: var(--space-4);
}

/* — Disclaimer — */
.remb-calc-disclaimer {
  font-size: 11px;
  color: var(--color-text-subtle);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   SECTION SPACING & HEADERS
   ============================================================ */
.remb-section {
  padding: var(--space-20) 0;
}

.remb-section--alt {
  background: var(--color-bg-alt);
}

.remb-section--compact {
  padding: var(--space-12) 0;
}

.remb-section-header {
  margin-bottom: var(--space-10);
}

.remb-section-header h2,
.remb-section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.remb-section-header p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 55ch;
  margin: 0;
}


/* ============================================================
   BODY TEXT, HEADINGS & LISTS
   ============================================================ */
.remb-body {
  max-width: 65ch;
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
  margin-bottom: var(--space-8);
}

.remb-body--no-mb {
  margin-bottom: 0;
}

.remb-body--mt {
  margin-top: var(--space-8);
}

.remb-h3 {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.remb-h4 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-top: var(--space-10);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.remb-body--sm {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}


/* ============================================================
   FIGURES / IMAGES
   ============================================================ */
.remb-figure {
  margin: var(--space-8) 0;
  max-width: 720px;
}
.remb-figure img {
  width: 100%;
  height: auto;
  display: block;
}
.remb-figure figcaption {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-subtle);
  margin-top: var(--space-3);
  line-height: var(--line-height-relaxed);
}

.remb-steps--compact {
  margin-bottom: var(--space-4);
}
.remb-steps--compact .remb-step {
  margin-bottom: var(--space-2);
}

.remb-list {
  max-width: 65ch;
  line-height: 1.8;
  color: var(--color-text);
  padding-left: var(--space-5);
}


/* ============================================================
   KEY FACTS BOX
   ============================================================ */
.remb-key-facts {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  margin-bottom: var(--space-8);
  max-width: 640px;
}

.remb-key-facts--white {
  background: var(--color-bg);
}

.remb-key-facts-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.remb-key-facts-item {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
}

.remb-key-facts-item--bordered {
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
}

.remb-key-facts-label {
  color: var(--color-text-muted);
}

.remb-key-facts-value {
  color: var(--color-text);
}


/* ============================================================
   TABLES (shared)
   ============================================================ */
.remb-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: var(--space-8);
}

.remb-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: var(--text-sm);
}

.remb-table th {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-align: left;
  padding: var(--space-3);
  border-bottom: 2px solid var(--color-text);
  color: var(--color-text);
  white-space: nowrap;
}

.remb-table td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  vertical-align: top;
  color: var(--color-text-muted);
  line-height: var(--line-height-normal);
}

.remb-table td strong {
  color: var(--color-text);
}

.remb-table td a {
  color: var(--color-accent);
  text-decoration: none;
}
.remb-table td a:hover {
  text-decoration: underline;
}

.remb-table tr:last-child td {
  border-bottom: none;
}

.remb-table .not-covered {
  color: var(--color-error);
  font-weight: var(--font-weight-semibold);
}

.remb-table .covered {
  color: var(--color-success);
  font-weight: var(--font-weight-semibold);
}

.remb-table .highlight-row {
  background: var(--color-accent-light);
}

.remb-table-footnote {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-10);
}


/* ============================================================
   S4 — DARK SECTION (cost gap)
   ============================================================ */
.remb-dark {
  background: var(--color-text);
  color: var(--color-text-on-dark);
  padding: var(--space-20) 0;
}

.remb-dark .eyebrow {
  color: var(--color-accent-on-dark);
}

.remb-dark h2,
.remb-dark .remb-section-title {
  color: var(--color-text-on-dark);
}

.remb-dark p,
.remb-dark .remb-body {
  color: rgba(255, 255, 255, 0.8);
}

.remb-dark .remb-table th {
  color: var(--color-text-on-dark);
  border-bottom-color: rgba(255, 255, 255, 0.3);
}

.remb-dark .remb-table td {
  color: rgba(255, 255, 255, 0.7);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.remb-dark .remb-table td strong {
  color: var(--color-text-on-dark);
}

.remb-dark .highlight-value {
  color: var(--color-accent-on-dark);
  font-weight: var(--font-weight-semibold);
}


/* ============================================================
   CALLOUT BOX
   ============================================================ */
.remb-callout {
  border-left: 3px solid var(--color-accent);
  padding: var(--space-5) var(--space-6);
  background: var(--color-accent-light);
  margin: var(--space-10) 0;
  max-width: 65ch;
}

.remb-callout p {
  margin: 0;
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

.remb-callout strong {
  color: var(--color-text);
}

.remb-callout--dark {
  border-left-color: var(--color-accent-on-dark);
  background: rgba(255, 255, 255, 0.05);
}

.remb-callout--dark p {
  color: rgba(255, 255, 255, 0.9);
}

.remb-callout--warning {
  border-left-color: var(--color-warning);
  background: var(--color-bg);
  margin-bottom: var(--space-10);
}

.remb-callout--warning p {
  font-size: var(--text-sm);
  color: var(--color-text);
}


/* ============================================================
   TAGS / BADGES
   ============================================================ */
.remb-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  line-height: 1.5;
}

.remb-tag--exclu {
  background: #FEF2F2;
  color: var(--color-error);
}

.remb-tag--couvert {
  background: #F0FDF4;
  color: var(--color-success);
}

.remb-tag--partiel {
  background: #FFFBEB;
  color: var(--color-warning);
}


/* ============================================================
   S5 — TREATMENT CARDS
   ============================================================ */
.remb-treatments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}

.remb-treatment-card {
  border: 1px solid var(--color-border);
  padding: var(--space-6);
  background: var(--color-bg);
}

.remb-treatment-card .remb-tag {
  margin-bottom: var(--space-3);
}

.remb-treatment-name {
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  margin-bottom: var(--space-2);
}

.remb-treatment-price {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.remb-treatment-detail {
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-5);
}

.remb-treatment-detail + .remb-treatment-detail {
  margin-top: var(--space-1);
}

.remb-treatment-link {
  font-family: var(--font-body);
  font-weight: var(--font-weight-medium);
  font-size: var(--text-sm);
  color: var(--color-accent);
  text-decoration: none;
}

.remb-treatment-link:hover {
  text-decoration: underline;
}


/* ============================================================
   SCENARIO CARDS (MRE section)
   ============================================================ */
.remb-scenarios {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  max-width: 700px;
}

.remb-scenario-card {
  border: 1px solid var(--color-border);
  padding: var(--space-8);
  background: var(--color-bg);
}

.remb-scenario-card .remb-tag {
  margin-bottom: var(--space-4);
}

.remb-scenario-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.remb-scenario-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.remb-scenario-link {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}
.remb-scenario-link a {
  color: var(--color-accent);
  text-decoration: none;
}
.remb-scenario-link a:hover {
  text-decoration: underline;
}


/* ============================================================
   OPTION CARDS (Sans assurance section)
   ============================================================ */
.remb-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-5);
  max-width: 900px;
}

.remb-option-card {
  padding: var(--space-8);
  border: 1px solid var(--color-border);
}

.remb-option-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.remb-option-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   S7 — STEPS (claims process)
   ============================================================ */
.remb-steps {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.remb-step {
  display: flex;
  flex-direction: row;
  gap: var(--space-5);
  align-items: flex-start;
}

.remb-step + .remb-step {
  border-top: 1px solid var(--color-border);
  padding-top: var(--space-5);
  margin-top: var(--space-5);
}

.remb-step-num {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-normal);
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  line-height: 1;
  font-variation-settings: 'opsz' 36, 'WONK' 0;
}

.remb-step-content {
  flex: 1;
}

.remb-step-title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.remb-step-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   S10 — FAQ
   ============================================================ */
.remb-faq {
  background: var(--color-bg-alt);
  padding: var(--space-20) 0;
}

.remb-faq .remb-section-title {
  margin-bottom: var(--space-10);
}

.remb-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.remb-faq-item {
  border-bottom: 1px solid var(--color-border);
}

.remb-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  text-align: left;
  gap: var(--space-4);
  line-height: var(--line-height-snug);
}

.remb-faq-question:hover {
  color: var(--color-accent);
}

.remb-faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  transition: transform var(--transition-base) var(--ease-out);
}

.remb-faq-item.is-open .remb-faq-icon {
  transform: rotate(180deg);
}

.remb-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.remb-faq-answer p {
  padding: 0 0 var(--space-5) 0;
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: var(--line-height-relaxed);
  max-width: 65ch;
  margin: 0;
}

.remb-faq-item.is-open .remb-faq-answer {
  /* max-height set by JS */
}


/* ============================================================
   S11 — CTA SECTION
   ============================================================ */
.remb-cta {
  text-align: center;
  background: var(--color-bg-alt);
  padding: var(--space-20) 0;
}

.remb-cta-inner {
  max-width: 600px;
}

.remb-cta h2 {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin-bottom: var(--space-3);
}

.remb-cta p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 50ch;
  margin: 0 auto var(--space-8);
}

.remb-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}


/* ============================================================
   RESPONSIVE — Tablet (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {

  .remb-calc-layout {
    grid-template-columns: 1fr 360px;
    gap: var(--space-6);
  }

  .remb-calc-regime-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .remb-calc-mutuelle-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .remb-treatments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   RESPONSIVE — Mobile (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {

  /* Hero */
  .remb-hero {
    padding: calc(var(--nav-height, 72px) + var(--space-10)) 0 var(--space-8);
  }

  .remb-hero-title {
    font-size: var(--text-4xl);
  }

  .remb-hero-sub {
    font-size: var(--text-base);
  }

  /* Calculator */
  .remb-calc {
    padding: var(--space-8) 0 var(--space-14);
  }

  .remb-calc-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .remb-calc-regime-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .remb-calc-mutuelle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .remb-calc-results {
    position: static;
  }

  .remb-calc-results-card {
    padding: var(--space-6);
  }

  .remb-calc-line-values {
    gap: var(--space-3);
  }

  .remb-calc-line-cost,
  .remb-calc-line-remb {
    min-width: 60px;
    font-size: var(--text-xs);
  }

  /* Tables */
  .remb-table {
    font-size: var(--text-xs);
    min-width: 600px;
  }

  /* Treatment grid */
  .remb-treatments-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .remb-step-num {
    width: 2rem;
    height: 2rem;
    font-size: var(--text-base);
  }

  /* Section spacing */
  .remb-section {
    padding: var(--space-14) 0;
  }

  .remb-section--compact {
    padding: var(--space-10) 0;
  }

  .remb-dark {
    padding: var(--space-14) 0;
  }

  .remb-faq {
    padding: var(--space-14) 0;
  }

  .remb-cta {
    padding: var(--space-14) 0;
  }

  /* Section headers */
  .remb-section-header h2,
  .remb-section-title {
    font-size: var(--text-2xl);
  }

  .remb-section-header {
    margin-bottom: var(--space-8);
  }

  .remb-cta h2 {
    font-size: var(--text-2xl);
  }

  /* Key facts */
  .remb-key-facts {
    padding: var(--space-5);
  }

  .remb-key-facts-item {
    flex-direction: column;
    gap: var(--space-1);
  }

  /* Options grid */
  .remb-options-grid {
    grid-template-columns: 1fr;
  }
}
/* ================================================================
   SERVICES HUB — /services/
   Page-specific styles only. Globals handled by style.min.css.
================================================================ */

/* --------------------------------
   HERO
-------------------------------- */
.services-hub-hero {
  padding: calc(72px + var(--space-12)) 0 var(--space-12);
  background: var(--color-bg);
}

@media (min-width: 768px) {
  .services-hub-hero {
    padding: calc(72px + var(--space-20)) 0 var(--space-16);
  }
}

.services-hub-hero-inner {
  max-width: 720px;
}

.services-hub-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 30, 'WONK' 0;
  margin-bottom: var(--space-5);
}

.services-hub-title em {
  font-style: italic;
  font-weight: var(--font-weight-light);
}

@media (min-width: 480px) {
  .services-hub-title { font-size: var(--text-4xl); }
}

@media (min-width: 768px) {
  .services-hub-title {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 0;
  }
}

.services-hub-sub {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 56ch;
}

@media (min-width: 768px) {
  .services-hub-sub { font-size: var(--text-xl); }
}


/* --------------------------------
   SERVICES GRID
-------------------------------- */
.services-hub-grid-section {
  padding-top: 0;
  padding-bottom: var(--space-20);
}

.services-hub-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

@media (min-width: 640px) {
  .services-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
  }
}

@media (min-width: 1024px) {
  .services-hub-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
  }
}

/* Card */
.shub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: border-color var(--transition-fast) var(--ease-out),
              box-shadow var(--transition-base) var(--ease-out),
              transform var(--transition-fast) var(--ease-out);
}

.shub-card:hover {
  border-color: var(--color-text-subtle);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Card image */
.shub-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--color-bg-alt);
}

.shub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-brand);
}

.shub-card:hover .shub-card-img img {
  transform: scale(1.03);
}

/* Card body */
.shub-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.shub-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 24, 'WONK' 0;
  margin-bottom: var(--space-2);
}

@media (min-width: 768px) {
  .shub-card-title { font-size: var(--text-2xl); }
}

.shub-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  flex: 1;
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .shub-card-desc { font-size: var(--text-base); }
}

.shub-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-accent);
  transition: gap var(--transition-fast) var(--ease-out);
}

.shub-card:hover .shub-card-link {
  gap: var(--space-3);
}


/* --------------------------------
   URGENCE BANNER
-------------------------------- */
.services-hub-urgence {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}

.shub-urgence-inner {
  max-width: 720px;
}

.shub-urgence-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 30, 'WONK' 0;
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .shub-urgence-title { font-size: var(--text-3xl); }
}

.shub-urgence-desc {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 56ch;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .shub-urgence-desc { font-size: var(--text-lg); }
}

.shub-urgence-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

@media (min-width: 480px) {
  .shub-urgence-actions {
    flex-direction: row;
    gap: var(--space-4);
  }
}


/* --------------------------------
   APPROACH
-------------------------------- */
.shub-approach-header {
  margin-bottom: var(--space-12);
  max-width: 560px;
}

.shub-approach-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 30, 'WONK' 0;
}

@media (min-width: 768px) {
  .shub-approach-title { font-size: var(--text-3xl); }
}

.shub-approach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .shub-approach-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10);
  }
}

.shub-approach-card {
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
}

.shub-approach-num {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.shub-approach-card-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  margin-bottom: var(--space-3);
}

@media (min-width: 768px) {
  .shub-approach-card-title { font-size: var(--text-xl); }
}

.shub-approach-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

@media (min-width: 768px) {
  .shub-approach-card-desc { font-size: var(--text-base); }
}
/* ============================================================
   SOINS DENTAIRES — Page-specific styles
   Clinique LaBeldent · 2026
   ============================================================ */


/* ── Inline body link ── */
.service-inline-link {
  color: var(--color-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast) var(--ease-out);
}
.service-inline-link:hover { color: var(--color-accent-hover); }


/* ============================================================
   S3 — PREVENTIVE FRAMING (dark background)
   ============================================================ */
.soins-preventif {
  padding: var(--space-16) 0;
  background: var(--color-text);
}
.soins-preventif .eyebrow { color: var(--color-accent-on-dark); }
.soins-preventif .service-section-title { color: #FFFFFF; }

.soins-preventif-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 768px) {
  .soins-preventif-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.soins-preventif-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.soins-preventif-body p {
  font-size: var(--text-base);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.soins-preventif-body strong {
  color: #FFFFFF;
  font-weight: var(--font-weight-medium);
}

.soins-preventif-callout {
  margin-top: var(--space-6);
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-border-dark);
  border-left: 3px solid var(--color-accent-on-dark);
}
.soins-preventif-callout p {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.soins-preventif-callout strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  font-variation-settings: 'opsz' 16;
  color: #FFFFFF;
  margin-bottom: var(--space-2);
}

.soins-preventif-stats {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.soins-preventif-stat {
  padding: var(--space-6) var(--space-8);
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid transparent;
  transition: border-color var(--transition-base) var(--ease-out);
}
.soins-preventif-stat:hover { border-left-color: var(--color-accent-on-dark); }

.soins-preventif-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: #FFFFFF;
  line-height: 1;
  font-variation-settings: 'opsz' 36;
  margin-bottom: var(--space-2);
}

.soins-preventif-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
}


/* ============================================================
   S4 — TREATMENT CARDS GRID
   ============================================================ */
.soins-traitements {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.soins-traitements-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-12);
}
.soins-traitements-header p {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: var(--space-4) 0 0;
}

.soins-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-1);
}
@media (min-width: 640px) {
  .soins-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .soins-cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.soins-card {
  background: var(--color-bg-alt);
  padding: var(--space-8);
  border-left: 3px solid transparent;
  transition: border-color var(--transition-base) var(--ease-out);
}
.soins-card:hover { border-left-color: var(--color-accent); }

.soins-card-num {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.soins-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  margin: 0 0 var(--space-4);
}

.soins-card-body {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   S5 — DÉVITALISATION SECTION
   ============================================================ */
.soins-devitalisation {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}

.soins-devitalisation-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
}
@media (min-width: 768px) {
  .soins-devitalisation-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: start;
  }
}

.soins-devitalisation-intro {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.soins-devitalisation-intro p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}
.soins-devitalisation-intro strong {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

.soins-devital-reassurance {
  margin-top: var(--space-2);
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  background: var(--color-bg);
}
.soins-devital-reassurance strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  font-variation-settings: 'opsz' 16;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}
.soins-devital-reassurance p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.soins-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.soins-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: var(--space-5);
  align-items: start;
  background: var(--color-bg);
  padding: var(--space-6);
}

.soins-step-num {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-light);
  color: var(--color-accent);
  line-height: 1;
  font-variation-settings: 'opsz' 24;
  padding-top: 2px;
}

.soins-step-content h3 {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text);
  margin: 0 0 var(--space-2);
  line-height: var(--line-height-snug);
}
.soins-step-content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   S6 — PRICING & INSURANCE
   ============================================================ */
.soins-prix {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.service-prix-header {
  max-width: 640px;
  margin: 0 0 var(--space-12);
}
.service-prix-header .service-body {
  margin-top: var(--space-4);
  color: var(--color-text-muted);
}

.soins-prix-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 768px) {
  .soins-prix-layout {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
  }
}

.soins-prix-table {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.soins-prix-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--space-6);
  padding: var(--space-5) var(--space-6);
  background: var(--color-bg-alt);
}

/* ── Image placeholder — shared across page sections ── */
.img-placeholder {
  margin: 0;
  background: #F5F3F0;
  border: 1.5px dashed #C8C3BE;
  border-radius: var(--radius-m);
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  min-height: 260px;
  width: 100%;
  box-sizing: border-box;
}
.img-placeholder > span {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  max-width: 44ch;
  line-height: var(--line-height-relaxed);
}


.soins-prix-row-label {
  font-size: var(--text-base);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: var(--line-height-snug);
}

.soins-prix-row-sub {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-normal);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
}

.soins-prix-row-price {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-light);
  color: var(--color-accent);
  white-space: nowrap;
  font-variation-settings: 'opsz' 18;
}

.soins-prix-note-box {
  margin-top: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--color-border);
}
.soins-prix-note-box p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.soins-assurance {
  padding: var(--space-8);
  background: var(--color-bg-alt);
}
.soins-assurance h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
  margin: 0 0 var(--space-5);
}
.soins-assurance p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-4);
}
.soins-assurance p:last-child { margin-bottom: 0; }

.soins-assurance-note {
  margin-top: var(--space-6);
  padding: var(--space-5) var(--space-6);
  border: 1px solid var(--color-border);
}
.soins-assurance-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   S7 — RETURN TO CARE
   ============================================================ */
.soins-retour {
  padding: var(--space-16) 0;
  background: var(--color-bg-alt);
}

.soins-retour-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 768px) {
  .soins-retour-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
  }
}

.soins-retour-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-m);
}

.soins-retour-content .service-section-title {
  margin-bottom: var(--space-5);
}

.soins-retour-content p {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-4);
}
.soins-retour-content p:last-of-type { margin-bottom: 0; }
.soins-retour-content strong {
  color: var(--color-text);
  font-weight: var(--font-weight-medium);
}

.soins-retour-actions {
  margin-top: var(--space-8);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}


/* ============================================================
   S9 — LOCAL CTA FINAL (dark)
   ============================================================ */
.soins-cta-local {
  padding: var(--space-16) 0;
  background: var(--color-text);
}

.soins-cta-local .eyebrow { color: var(--color-accent-on-dark); }

.soins-cta-local-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
}
@media (min-width: 768px) {
  .soins-cta-local-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: var(--space-16);
  }
}

.soins-cta-local-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: #FFFFFF;
  line-height: var(--line-height-tight);
  font-variation-settings: 'opsz' 36, 'WONK' 0;
  margin: var(--space-3) 0 var(--space-5);
  letter-spacing: var(--tracking-tight);
}
@media (min-width: 768px) {
  .soins-cta-local-title {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 0;
  }
}

.soins-cta-local-sub {
  font-size: var(--text-base);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-8);
}

.soins-cta-local-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.soins-address-block {
  padding: var(--space-8);
  border: 1px solid var(--color-border-dark);
}
.soins-address-block h3 {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-accent-on-dark);
  margin: 0 0 var(--space-6);
}

.soins-address-detail {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.soins-address-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.soins-address-label {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-muted-dark);
}

.soins-address-value {
  font-size: var(--text-base);
  color: #FFFFFF;
  line-height: var(--line-height-snug);
  text-decoration: none;
}
a.soins-address-value:hover {
  color: var(--color-accent-on-dark);
  transition: color var(--transition-fast) var(--ease-out);
}

.soins-address-divider {
  height: 1px;
  background: var(--color-border-dark);
  border: none;
}
/* ============================================================
   URGENCE DENTAIRE — Page-specific styles
   Clinique LaBeldent · 2026
   ============================================================ */


/* ============================================================
   S1 — HERO URGENCE
   ============================================================ */
.urgence-hero {
  padding: calc(var(--nav-height, 72px) + var(--space-16)) 0 var(--space-16);
  background: var(--color-bg);
}

/* Split layout: text + image */
.urgence-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: center;
}
@media (min-width: 1024px) {
  .urgence-hero-layout {
    grid-template-columns: 1fr 420px;
    gap: var(--space-16);
  }
}

.urgence-hero-inner {
  max-width: 620px;
}
@media (min-width: 1024px) {
  .urgence-hero-inner {
    max-width: none;
  }
}

.urgence-hero-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin: 0;
  background: var(--color-surface-alt, #f5f5f4);
}

.urgence-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.urgence-hero-title {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: var(--font-weight-light);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  margin: var(--space-4) 0 var(--space-5);
  font-variation-settings: 'opsz' 40, 'WONK' 1;
}
@media (min-width: 768px) {
  .urgence-hero-title {
    font-size: var(--text-5xl);
    font-variation-settings: 'opsz' 48, 'WONK' 1;
  }
}

.urgence-hero-sub {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-8);
  max-width: 600px;
}

/* Call to action block */
.urgence-hero-cta-block {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  margin-bottom: var(--space-8);
}

.urgence-call-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--color-text);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-medium);
  padding: var(--space-4) var(--space-8);
  text-decoration: none;
  transition: background var(--transition-fast) var(--ease-out);
  letter-spacing: -0.01em;
}
.urgence-call-btn:hover {
  background: #000000;
}
.urgence-call-btn svg {
  flex-shrink: 0;
}

.urgence-hero-horaires {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.urgence-hero-trust {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.01em;
  margin: 0;
}


/* ============================================================
   S2 — SITUATIONS D'URGENCE (dark background)
   ============================================================ */
.urgence-situations {
  padding: var(--space-16) 0;
  background: var(--color-text);
}
.urgence-situations .eyebrow { color: var(--color-accent-on-dark); }
.urgence-situations .service-section-title { color: #FFFFFF; }

.urgence-situations-header {
  max-width: 640px;
  margin-bottom: var(--space-10);
}

.urgence-situations-intro {
  font-size: var(--text-base);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: var(--space-4) 0 0;
}

.urgence-situations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
@media (min-width: 768px) {
  .urgence-situations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.urgence-situation {
  padding: var(--space-8);
  border: 1px solid var(--color-border-dark);
}

.urgence-situation--urgent {
  border-left: 3px solid var(--color-accent-on-dark);
}

.urgence-situation--priority {
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.urgence-situation-badge {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-on-dark);
  margin-bottom: var(--space-4);
}

.urgence-situation-badge--priority {
  color: rgba(255, 255, 255, 0.5);
}

.urgence-situation-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: #FFFFFF;
  line-height: var(--line-height-snug);
  margin: 0 0 var(--space-5);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
}

.urgence-situation-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.urgence-situation-list li {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  padding-left: var(--space-5);
  position: relative;
}
.urgence-situation-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent-on-dark);
  border-radius: 50%;
  flex-shrink: 0;
}
.urgence-situation--priority .urgence-situation-list li::before {
  background: rgba(255, 255, 255, 0.3);
}

.urgence-situations-note {
  margin-top: var(--space-8);
  padding: var(--space-6) var(--space-8);
  border: 1px solid var(--color-border-dark);
  border-left: 3px solid rgba(255, 255, 255, 0.2);
}
.urgence-situations-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}


/* ============================================================
   S3 — PROCESS STEPS
   ============================================================ */
.urgence-process {
  padding: var(--space-16) 0;
  background: var(--color-bg);
}

.urgence-process-header {
  max-width: 540px;
  margin-bottom: var(--space-12);
}

.urgence-process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--color-border);
}

.urgence-step {
  display: grid;
  grid-template-columns: var(--space-16) 1fr;
  gap: var(--space-6);
  padding: var(--space-8) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}
@media (min-width: 768px) {
  .urgence-step {
    grid-template-columns: var(--space-20) 1fr;
    gap: var(--space-8);
  }
}

.urgence-step-number {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-light);
  color: var(--color-border);
  line-height: 1;
  font-variation-settings: 'opsz' 30, 'WONK' 1;
  padding-top: 2px;
}

.urgence-step-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  margin: 0 0 var(--space-3);
  font-variation-settings: 'opsz' 20, 'WONK' 0;
}

.urgence-step-desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.urgence-process-visual {
  margin: var(--space-12) 0 0;
  aspect-ratio: 21/8;
  overflow: hidden;
  border-radius: var(--radius-lg, 12px);
  background: var(--color-surface-alt, #f5f5f4);
}

.urgence-process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ============================================================
   S4 — PREMIERS GESTES
   ============================================================ */
.urgence-gestes {
  padding: var(--space-16) 0;
  background: var(--color-surface);
}

.urgence-gestes-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}
@media (min-width: 1024px) {
  .urgence-gestes-layout {
    grid-template-columns: 1fr 380px;
    gap: var(--space-16);
  }
}

.urgence-gestes-content > .eyebrow { margin-bottom: var(--space-2); }

.urgence-geste-item {
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}
.urgence-geste-item:first-of-type {
  margin-top: var(--space-6);
}

.urgence-geste-title {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text);
  line-height: var(--line-height-snug);
  margin: 0 0 var(--space-3);
  font-variation-settings: 'opsz' 18, 'WONK' 0;
}

.urgence-geste-item p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

/* Contact card */
.urgence-contact-card {
  padding: var(--space-8);
  background: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.urgence-contact-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-medium);
  color: #FFFFFF;
  line-height: var(--line-height-snug);
  margin: 0;
  font-variation-settings: 'opsz' 20, 'WONK' 0;
}

.urgence-contact-desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted-dark);
  line-height: var(--line-height-relaxed);
  margin: 0;
}

.urgence-call-btn-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  background: #FFFFFF;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  padding: var(--space-4) var(--space-6);
  text-decoration: none;
  transition: background var(--transition-fast) var(--ease-out), color var(--transition-fast) var(--ease-out);
}
.urgence-call-btn-card:hover {
  background: var(--color-accent-on-dark);
  color: #FFFFFF;
}

.urgence-wa-btn {
  justify-content: center;
  width: 100%;
}

.urgence-contact-hours {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin: 0;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border-dark);
}
