/*
Theme Name: The Finest Concierge
Theme URI: https://thefinest-concierge.com
Author: The Finest Concierge
Description: Theme sur-mesure pour The Finest Concierge, conciergerie privée VIP.
Version: 0.1.0
License: All Rights Reserved
Text Domain: finest-concierge
*/

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('assets/fonts/playfair-display-variable-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/playfair-display-italic-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/work-sans-variable-latin.woff2') format('woff2');
}
@font-face {
  font-family: 'Alex Brush';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/alex-brush-latin.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  --color-bg: #0A0A0A;
  --color-bg-alt: #141312;
  --color-ink: #0A0A0A;
  --color-text: #F2EEE4;
  --color-text-muted: #A8A8A8;
  --color-accent: #B0830C;
  --color-accent-dark: #8C6A0A;
  --color-gold-bright: #CCA600;
  --color-line: rgba(242, 238, 228, 0.14);
  --color-overlay: rgba(0, 0, 0, 0.55);

  --color-surface: #FBF9F4;
  --color-surface-alt: #F1ECDF;
  --color-surface-text: #17140F;
  --color-surface-line: #E4DCC8;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-script: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --container-max: 1200px;
  --space-section: 88px;
  --space-section-sm: 48px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: none; cursor: pointer; }
input, textarea { font: inherit; }

/* ---------- Base typography ---------- */
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.72;
  color: var(--color-text);
  background: var(--color-bg);
  font-weight: 300;
  letter-spacing: 0.012em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.004em;
}

h1 { font-size: clamp(2.1rem, 3.6vw, 3.2rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); font-weight: 600; }

p.lead {
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 300;
  color: var(--color-text-muted);
}

blockquote {
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

@media (min-width: 560px) {
  .eyebrow { font-size: 0.76rem; }
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
}

@media (min-width: 600px) {
  .container { padding-inline: 32px; }
}

.section {
  padding-block: var(--space-section-sm);
}

@media (min-width: 900px) {
  .section { padding-block: var(--space-section); }
}

.section-alt {
  background: var(--color-surface);
  color: var(--color-surface-text);
}

.section-alt .eyebrow { color: var(--color-accent-dark); }
.section-alt .card-service { border-top-color: var(--color-surface-line); }
.section-alt .card-service figure { background: var(--color-surface-alt); }
.section-alt .card-service .tagline { color: #5A5646; }
.section-alt .link-underline { border-color: var(--color-accent); }
.section-alt .link-underline:hover { border-color: var(--color-surface-text); }
.section-alt .btn-outline { color: var(--color-surface-text); }
.section-alt .form-row label { color: #5A5646; }
.section-alt .form-row input,
.section-alt .form-row select,
.section-alt .form-row textarea {
  color: var(--color-surface-text);
  border-bottom-color: var(--color-surface-line);
}
.section-alt .testimonial { border-top-color: var(--color-surface-line); }
.section-alt .entry-content { color: var(--color-surface-text); }

.section-header {
  max-width: 620px;
  margin-bottom: 2.2rem;
}

.section-header.center { margin-inline: auto; text-align: center; }

.grid {
  display: grid;
  gap: 1.8rem;
}

/* Sur mobile : 2 vignettes par ligne pour les grilles de photos. */
.grid-3 { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }

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

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

/* ---------- Links & buttons ---------- */
.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.link-underline:hover { border-color: var(--color-text); }

.btn-outline {
  display: inline-block;
  padding: 0.95rem 2.2rem;
  border: 1px solid var(--color-accent);
  color: var(--color-text);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-outline:hover {
  background: var(--color-accent);
  color: var(--color-ink);
}

.btn-outline.on-gold {
  border-color: var(--color-ink);
  color: var(--color-ink);
}

.btn-outline.on-gold:hover {
  background: var(--color-ink);
  color: var(--color-gold-bright);
  border-color: var(--color-ink);
}

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding-block: 10px;
  background: rgba(10, 10, 10, 0.26);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(242, 238, 228, 0.1);
  transition: padding 0.3s ease, background 0.3s ease;
}

.site-header.is-solid {
  padding-block: 6px;
  background: rgba(10, 10, 10, 0.72);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-branding { line-height: 1; }

.branding-lockup {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.branding-tag {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
  transition: font-size 0.3s ease;
}

.site-logo {
  flex: none;
  width: 58px;
  height: 58px;
  display: block;
  color: var(--color-accent);
  transition: width 0.3s ease, height 0.3s ease;
}

.is-solid .site-logo { width: 44px; height: 44px; }
.is-solid .branding-tag { font-size: 0.52rem; letter-spacing: 0.24em; }

/* Logo importé (image) : recadré en cercle, dans un médaillon doré. */
.site-logo--img {
  max-height: none;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-ink);
  border: 1px solid var(--color-accent);
  padding: 3px;
}

@media (min-width: 560px) {
  .site-logo { width: 68px; height: 68px; }
  .is-solid .site-logo { width: 50px; height: 50px; }
}

/* ---------- Logo « couronne » facettée or, animée ---------- */
.fc-crown { overflow: visible; }

.fc-crown-body {
  transform-box: view-box;
  transform-origin: 60px 60px;
  animation: fc-crown-float 4.8s ease-in-out infinite;
}
@keyframes fc-crown-float {
  0%   { transform: translateY(0)      rotate(-1.4deg) scale(1); }
  50%  { transform: translateY(-3.4px) rotate(1.4deg)  scale(1.035); }
  100% { transform: translateY(0)      rotate(-1.4deg) scale(1); }
}

/* halo doré qui respire */
.fc-crown { animation: fc-crown-glow 4.8s ease-in-out infinite; }
@keyframes fc-crown-glow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(201, 162, 75, 0.15)); }
  50%      { filter: drop-shadow(0 0 9px rgba(201, 162, 75, 0.5)); }
}

.fc-crown-sweep {
  transform-box: view-box;
  transform-origin: 0 0;
  animation: fc-crown-sweep 3.4s ease-in-out infinite;
}
@keyframes fc-crown-sweep {
  0%        { transform: skewX(-20deg) translateX(-10px); }
  60%, 100% { transform: skewX(-20deg) translateX(190px); }
}

.fc-spark {
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  animation: fc-spark 2.2s ease-in-out infinite;
}
.fc-spark--1 { animation-delay: 0s; }
.fc-spark--2 { animation-delay: 0.42s; }
.fc-spark--3 { animation-delay: 0.84s; }
.fc-spark--4 { animation-delay: 1.26s; }
.fc-spark--5 { animation-delay: 1.68s; }
@keyframes fc-spark {
  0%, 100% { opacity: 0; transform: scale(0.35); }
  45%      { opacity: 1; transform: scale(1.15); }
  70%      { opacity: 0.2; transform: scale(0.8); }
}

@media (prefers-reduced-motion: reduce) {
  .fc-crown,
  .fc-crown-body { animation: none; filter: none; }
  .fc-crown-sweep { display: none; }
  .fc-spark { animation: none; opacity: 0.55; transform: none; }
}

.main-navigation ul {
  display: flex;
  gap: 2.4rem;
}

.main-navigation a {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-navigation a:hover { color: var(--color-accent); }

.menu-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-text);
  background: rgba(10, 10, 10, 0.35);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

@media (max-width: 900px) {
  .main-navigation { display: none; }
  .menu-toggle { display: flex; }

  .main-navigation.is-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-line);
    padding: 1.5rem 32px 2.5rem;
    max-height: calc(100svh - 100%);
    overflow-y: auto;
  }

  .main-navigation.is-open ul { flex-direction: column; gap: 1.5rem; }
  .main-navigation.is-open a { font-size: 0.9rem; letter-spacing: 0.14em; }
}

/* ---------- Hero ---------- */
.hero-fullscreen {
  position: relative;
  min-height: clamp(500px, 74svh, 720px);
  display: flex;
  align-items: flex-end;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-size: cover;
  background-position: center;
}

/* ---------- Hero : traitement minimal ---------- */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.06);
}

/* Un seul dégradé, uniquement pour la lisibilité du titre en bas. */
.hero-fullscreen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0) 32%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 100%);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 32px;
  width: 1px;
  height: 46px;
  background: rgba(242, 238, 228, 0.5);
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--color-gold-bright);
  transform: translateX(-50%);
  animation: fc-scroll-cue 2.2s ease-in-out infinite;
}

@keyframes fc-scroll-cue {
  0% { top: 0; opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* ---------- Scroll reveal ---------- */
.fc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fc-reveal { opacity: 1; transform: none; transition: none; }
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.hero-content h1 { max-width: 820px; color: var(--color-text); }

.hero-content p.lead {
  color: rgba(250, 247, 242, 0.85);
  max-width: 520px;
  margin-top: 1.5rem;
}

.hero-actions { margin-top: 2.5rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Cards: services / editorial / testimonials ---------- */
.card-service {
  display: block;
  border-top: 1px solid var(--color-line);
  padding-top: 1.8rem;
}

.card-service figure {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-bottom: 1.6rem;
  background: var(--color-bg-alt);
}

.card-service-noimg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--color-bg-alt);
}

.card-service-noimg .service-icon {
  width: 48px;
  height: 48px;
  color: var(--color-accent);
  opacity: 0.5;
}

.card-service img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-service:hover img { transform: scale(1.04); }

.card-service h3 { margin-bottom: 0.6rem; }

.card-service .tagline { color: var(--color-text-muted); font-size: 0.95rem; }

.card-article { display: block; }

.card-article figure { aspect-ratio: 3 / 2; overflow: hidden; margin-bottom: 1.4rem; background: var(--color-bg-alt); }

.card-article img { width: 100%; height: 100%; object-fit: cover; }

.card-article .meta {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 0.6rem;
}

.testimonial {
  border-top: 1px solid var(--color-line);
  padding-top: 2rem;
}

.testimonial cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--color-accent);
  color: var(--color-ink);
  text-align: center;
}

.cta-band h2 { color: var(--color-ink); }

.cta-band .eyebrow { color: var(--color-ink); }

.cta-band p.lead { color: rgba(10,10,10,0.7); margin-inline: auto; }

/* ---------- Single service / page ---------- */
.page-hero {
  padding-top: 26px;
  padding-bottom: 1rem;
}

@media (min-width: 900px) {
  .page-hero { padding-top: 38px; padding-bottom: 1.2rem; }
}

.page-hero .eyebrow { color: var(--color-accent-dark); margin-bottom: 0.4rem; }
.page-hero h1 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); margin: 0; }
.page-hero .lead { margin-top: 0.6rem; }
.page-hero .entry-content { margin-top: 0.8rem !important; }

.entry-content { max-width: 720px; }

.entry-content > * + * { margin-top: 1.4rem; }

.entry-content h2, .entry-content h3 { margin-top: 2.4rem; }

.featured-media {
  margin-top: 3rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.featured-media img,
.featured-media video { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact form : carte claire flottante, champs bien visibles ---------- */
.contact-form {
  max-width: 540px;
  margin-inline: auto;
  background: var(--color-surface);
  color: var(--color-surface-text);
  border: 1px solid var(--color-surface-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3.5vw, 2.4rem);
  box-shadow: 0 40px 80px -34px rgba(0, 0, 0, 0.5);
}

.contact-form .form-row { margin-bottom: 1.1rem; }
.contact-form .form-row label {
  color: #5a5443;
  margin-bottom: 0.35rem;
}
.contact-form .form-row input,
.contact-form .form-row select,
.contact-form .form-row textarea {
  width: 100%;
  color: var(--color-surface-text);
  background: #ffffff;
  border: 1px solid var(--color-surface-line);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.9rem;
}
.contact-form .form-row select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23b0830c' stroke-width='1.6' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
}
.contact-form .form-row input::placeholder,
.contact-form .form-row textarea::placeholder { color: #9a927f; }
.contact-form .form-row input:focus,
.contact-form .form-row select:focus,
.contact-form .form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(176, 131, 12, 0.14);
}
.contact-form .btn-outline {
  color: var(--color-surface-text);
  border-color: var(--color-accent);
}
.contact-form .btn-outline:hover { background: var(--color-accent); color: var(--color-ink); }

/* Formulaires : bloc centré, non étalé */
.fc-form-wrap {
  max-width: 620px;
  margin-inline: auto;
}

.form-grid { display: grid; gap: 0; }
@media (min-width: 560px) {
  .form-grid { grid-template-columns: 1fr 1fr; gap: 0 1.4rem; }
}

.fc-contact-direct {
  margin-top: 2.2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.section-alt .fc-contact-direct { color: #5a5443; }
.fc-contact-direct a { border-bottom: 1px solid var(--color-accent); }

.fc-newsletter-form { max-width: 440px; }
@media (max-width: 899px) {
  .fc-newsletter { text-align: center; }
  .fc-newsletter-form { margin-inline: auto; justify-content: center; }
}

.form-row { margin-bottom: 1.6rem; }

.form-row label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--color-line);
  background: transparent;
  padding: 0.7rem 0;
  font-size: 1rem;
  color: var(--color-text);
}

.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.form-honeypot { position: absolute; left: -9999px; }

.form-notice {
  max-width: 540px;
  margin: 0 auto 1.6rem;
  padding: 1.3rem 1.5rem;
  border: 1px solid var(--color-surface-line);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  color: var(--color-surface-text);
  font-size: 0.92rem;
  box-shadow: 0 36px 70px -36px rgba(0, 0, 0, 0.45);
}

.form-notice.success { border-color: var(--color-accent); }
.form-notice a { color: var(--color-accent-dark); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-bg);
  color: rgba(242, 238, 228, 0.85);
  padding-block: 90px 40px;
  border-top: 1px solid var(--color-line);
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

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

.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 1.2rem;
}

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

.footer-grid li + li { margin-top: 0.6rem; }

.footer-bottom {
  border-top: 1px solid rgba(250,247,242,0.15);
  padding-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.55);
}

/* ---------- 404 ---------- */
.not-found { min-height: 60vh; display: flex; flex-direction: column; justify-content: center; }

/* ================================================================
 *  Cadres d'images — finition joaillière
 * ================================================================ */
@property --fc-corner {
  syntax: '<length>';
  inherits: false;
  initial-value: 20px;
}

.card-service figure,
.card-article figure,
.featured-media,
.fc-frame {
  position: relative;
  padding: 9px;
  background: linear-gradient(150deg, #17130B 0%, #0B0A07 55%, #171205 100%);
  border: 1px solid rgba(176, 131, 12, 0.30);
  box-shadow:
    0 30px 70px -34px rgba(0, 0, 0, 0.9),
    inset 0 0 0 1px rgba(0, 0, 0, 0.55);
}

/* Filet doré au ras de l'image */
.card-service figure::after,
.card-article figure::after,
.featured-media::after,
.fc-frame::after {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(204, 166, 0, 0.5);
  transition: inset 0.5s ease, border-color 0.5s ease;
}

/* Équerres dorées aux quatre angles */
.card-service figure::before,
.card-article figure::before,
.featured-media::before,
.fc-frame::before {
  content: "";
  position: absolute;
  inset: 9px;
  z-index: 3;
  pointer-events: none;
  --fc-corner: 20px;
  background:
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) left top / var(--fc-corner) 1px no-repeat,
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) left top / 1px var(--fc-corner) no-repeat,
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) right top / var(--fc-corner) 1px no-repeat,
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) right top / 1px var(--fc-corner) no-repeat,
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) left bottom / var(--fc-corner) 1px no-repeat,
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) left bottom / 1px var(--fc-corner) no-repeat,
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) right bottom / var(--fc-corner) 1px no-repeat,
    linear-gradient(var(--color-gold-bright), var(--color-gold-bright)) right bottom / 1px var(--fc-corner) no-repeat;
  transition: --fc-corner 0.5s ease, opacity 0.5s ease;
  opacity: 0.9;
}

.card-service:hover figure::after { inset: 13px; border-color: var(--color-gold-bright); }
.card-service:hover figure::before { --fc-corner: 30px; opacity: 1; }

/* Variante sur fond clair */
.section-alt .card-service figure,
.section-alt .fc-frame {
  background: linear-gradient(150deg, #FFFFFF 0%, #F4EFE2 60%, #EDE4CE 100%);
  border-color: var(--color-surface-line);
  box-shadow:
    0 26px 54px -30px rgba(23, 20, 15, 0.3),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.section-alt .card-service figure::after,
.section-alt .fc-frame::after { border-color: rgba(176, 131, 12, 0.55); }

/* Images dans le contenu éditorial */
.entry-content img {
  padding: 8px;
  background: #100D08;
  border: 1px solid rgba(176, 131, 12, 0.25);
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.85);
}
.section-alt .entry-content img {
  background: #FFFFFF;
  border-color: var(--color-surface-line);
}

@media (prefers-reduced-motion: reduce) {
  .card-service figure::after,
  .card-service figure::before { transition: none; }
}

/* ================================================================
 *  Sélecteur de langue FR / EN
 * ================================================================ */
.header-right {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--color-text-muted);
}

.lang-switch a {
  padding: 2px 1px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

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

.lang-switch a.is-active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.section-alt .lang-switch { color: #5A5646; }

@media (max-width: 900px) {
  .header-right { gap: 1.2rem; }
  .lang-switch { margin-left: auto; margin-right: 1rem; }
}

/* ================================================================
 *  Voile de transition entre les pages
 * ================================================================ */
.fc-page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(120% 120% at 50% 30%, #14110B 0%, var(--color-bg) 70%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.fc-page-loader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: none; /* le voile ne doit jamais bloquer un clic */
}

.fc-loader-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  overflow: hidden;
}

.fc-loader-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 38%;
  background: linear-gradient(90deg, transparent, var(--color-gold-bright), transparent);
  animation: fc-loader-bar 1.15s ease-in-out infinite;
}

@keyframes fc-loader-bar {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(360%); }
}

.fc-loader-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
  padding: clamp(2.4rem, 6vw, 3.6rem) clamp(3rem, 9vw, 5rem);
}

.fc-loader-frame::before,
.fc-loader-frame::after {
  content: "";
  position: absolute;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-accent);
}

.fc-loader-frame::before {
  top: 0;
  left: 0;
  border-right: 0;
  border-bottom: 0;
  animation: fc-loader-corner 2.6s ease-in-out infinite;
}

.fc-loader-frame::after {
  bottom: 0;
  right: 0;
  border-left: 0;
  border-top: 0;
  animation: fc-loader-corner 2.6s ease-in-out infinite 0.35s;
}

@keyframes fc-loader-corner {
  0%, 100% { width: 42px; height: 42px; opacity: 0.35; }
  50% { width: calc(100% - 3px); height: calc(100% - 3px); opacity: 1; }
}

.fc-loader-mark {
  position: relative;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--color-text);
}

.fc-loader-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  border-top-color: var(--color-accent);
  border-right-color: var(--color-accent);
  animation: fc-loader-spin 1.05s linear infinite;
}

@keyframes fc-loader-spin { to { transform: rotate(360deg); } }

.fc-loader-mark img { max-height: 60px; width: auto; }
.fc-loader-mark:has(img) { width: auto; height: auto; }
.fc-loader-mark:has(img)::before { display: none; }

/* Le logo « atome » a ses propres orbites : on retire l'anneau du voile
   et le nom en doublon (il figure déjà dans le logo). */
.fc-loader-mark:has(svg) { width: auto; height: auto; }
.fc-loader-mark:has(svg)::before { display: none; }

.fc-loader-logo {
  width: clamp(150px, 40vw, 220px);
  height: clamp(150px, 40vw, 220px);
  display: block;
  color: var(--color-accent);
}

.fc-loader-name { display: none; }

.fc-loader-name.fc-legacy {
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  color: var(--color-accent);
  line-height: 1;
}

.fc-loader-tag {
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .fc-page-loader { transition: opacity 0.2s ease, visibility 0.2s ease; }
  .fc-loader-bar::after,
  .fc-loader-mark::before { animation: none; }
  .fc-loader-frame::before,
  .fc-loader-frame::after {
    animation: none;
    width: calc(100% - 3px);
    height: calc(100% - 3px);
    opacity: 1;
  }
}

/* ================================================================
 *  Icônes de service
 * ================================================================ */
.service-icon {
  width: 22px;
  height: 22px;
  flex: none;
  color: var(--color-accent);
}

.card-service-title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}

.section-alt .card-service-title .service-icon { color: var(--color-accent-dark); }

.service-hero-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0.4rem 0 1rem;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: var(--color-accent);
}

.service-hero-icon .service-icon { width: 26px; height: 26px; }

/* ================================================================
 *  Carrousel de témoignages
 * ================================================================ */
.fc-carousel {
  max-width: 820px;
  margin: 0 auto;
}

.fc-carousel-viewport { overflow: hidden; }

.fc-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fc-carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0 0.5rem;
}

.testimonial--feature {
  border-top: none;
  padding-top: 0;
  text-align: center;
}

.testimonial--feature .testimonial-quote {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.1vw, 1.6rem);
  line-height: 1.55;
  color: var(--color-text);
}

.section-alt .testimonial--feature .testimonial-quote { color: var(--color-surface-text); }

.testimonial--feature .testimonial-quote::before {
  content: "\201C";
  display: block;
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--color-accent);
  margin-bottom: 0.8rem;
}

.testimonial--feature .testimonial-quote p { margin: 0; }

.testimonial--feature cite {
  margin-top: 1.6rem;
}

.fc-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-top: 2.4rem;
}

.fc-carousel-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  color: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.fc-carousel-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.section-alt .fc-carousel-btn { border-color: var(--color-surface-line); }

.fc-carousel-dots {
  display: flex;
  gap: 0.5rem;
}

.fc-carousel-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.28;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fc-carousel-dots button.is-active {
  opacity: 1;
  transform: scale(1.35);
  background: var(--color-accent);
}

@media (prefers-reduced-motion: reduce) {
  .fc-carousel-track { transition: none; }
}

/* ================================================================
 *  Bouton WhatsApp flottant
 * ================================================================ */
.fc-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fc-whatsapp svg { width: 30px; height: 30px; }

.fc-whatsapp:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 38px -8px rgba(0, 0, 0, 0.55);
}

.fc-whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fc-wa-pulse 2.4s ease-out infinite;
}

@keyframes fc-wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

@media (max-width: 600px) {
  .fc-whatsapp { width: 50px; height: 50px; right: 16px; bottom: 16px; }
  .fc-whatsapp svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  .fc-whatsapp::after { animation: none; }
}

/* ================================================================
 *  Bandeau cookies
 * ================================================================ */
.fc-cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 950;
  max-width: 560px;
  margin-inline: auto;
  padding: 1.2rem 1.4rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
  color: var(--color-text);
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  transform: translateY(140%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 82vh;
  overflow-y: auto;
}

.fc-cookie-banner.is-visible { transform: translateY(0); }

.fc-cookie-text {
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0 0 1rem;
  color: var(--color-text-muted);
}

.fc-cookie-text a {
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
}

.fc-cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.fc-cookie-prefs {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
}
.fc-cookie-cat {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  cursor: pointer;
}
.fc-cookie-cat.is-locked { cursor: default; opacity: 0.75; }
.fc-cookie-cat input { margin-top: 0.2rem; accent-color: var(--color-accent); }
.fc-cookie-cat strong { color: var(--color-text); }

.fc-cookie-actions .btn-outline {
  padding: 0.65rem 1.4rem;
  font-size: 0.72rem;
}

.fc-cookie-actions [data-consent="yes"] {
  background: var(--color-accent);
  color: var(--color-ink);
  border-color: var(--color-accent);
}

@media (prefers-reduced-motion: reduce) {
  .fc-cookie-banner { transition: none; }
}

/* Décale le bouton WhatsApp quand le bandeau cookies est visible (mobile). */
@media (max-width: 600px) {
  .fc-cookie-banner:not([hidden]) ~ .fc-whatsapp { bottom: 150px; }
}

/* ================================================================
 *  Suivi de demande — frise de statut
 * ================================================================ */
.fc-timeline {
  margin: 2.6rem 0 0;
  padding: 0;
  list-style: none;
}

.fc-timeline li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0 0 1.6rem 0;
}

.fc-timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 18px;
  bottom: -4px;
  width: 1px;
  background: var(--color-line);
}

.fc-timeline-dot {
  flex: none;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid var(--color-line);
  background: transparent;
  z-index: 1;
}

.fc-timeline-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.fc-timeline li.done .fc-timeline-dot { background: var(--color-accent); border-color: var(--color-accent); }
.fc-timeline li.done:not(:last-child)::before { background: var(--color-accent); }
.fc-timeline li.done .fc-timeline-label { color: var(--color-text); }

.fc-timeline li.current .fc-timeline-dot {
  background: var(--color-gold-bright);
  border-color: var(--color-gold-bright);
  box-shadow: 0 0 0 4px rgba(204, 166, 0, 0.18);
}

.fc-timeline li.current .fc-timeline-label {
  color: var(--color-text);
  font-weight: 500;
}

.section-alt .fc-timeline-dot { border-color: var(--color-surface-line); }
.section-alt .fc-timeline li:not(:last-child)::before { background: var(--color-surface-line); }

/* ================================================================
 *  Assistant IA — widget de chat
 * ================================================================ */
.fc-chat {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 940;
}

.fc-chat-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-ink);
  box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.fc-chat-toggle svg { width: 26px; height: 26px; }
.fc-chat-toggle:hover { transform: scale(1.06); }

.fc-chat-panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 14px);
  width: min(360px, calc(100vw - 44px));
  display: none;
  flex-direction: column;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
  box-shadow: 0 30px 70px -24px rgba(0, 0, 0, 0.75);
  overflow: hidden;
}

.fc-chat.is-open .fc-chat-panel { display: flex; }
.fc-chat-panel[hidden] { display: none; }

.fc-chat-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-bottom: 1px solid var(--color-line);
}

.fc-chat-title {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
}

.fc-chat-close {
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-text-muted);
}
.fc-chat-close:hover { color: var(--color-text); }

.fc-chat-log {
  flex: 1;
  min-height: 240px;
  max-height: min(52vh, 420px);
  overflow-y: auto;
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.fc-chat-msg {
  max-width: 84%;
  padding: 0.65rem 0.9rem;
  font-size: 0.92rem;
  line-height: 1.5;
  border-radius: 2px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

.fc-chat-msg--bot {
  align-self: flex-start;
  background: rgba(242, 238, 228, 0.06);
  border: 1px solid var(--color-line);
  color: var(--color-text);
}

.fc-chat-msg--user {
  align-self: flex-end;
  background: var(--color-accent);
  color: var(--color-ink);
}

.fc-chat-msg.is-typing { letter-spacing: 0.2em; opacity: 0.6; }

.fc-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-self: flex-start;
}

.fc-chat-actions .btn-outline {
  padding: 0.55rem 1rem;
  font-size: 0.68rem;
}

.fc-chat-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.8rem;
  border-top: 1px solid var(--color-line);
}

.fc-chat-input {
  flex: 1;
  background: transparent;
  border: 1px solid var(--color-line);
  color: var(--color-text);
  padding: 0.6rem 0.8rem;
  font-size: 0.92rem;
}
.fc-chat-input:focus { outline: none; border-color: var(--color-accent); }

.fc-chat-form button {
  width: 42px;
  flex: none;
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  font-size: 1.1rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.fc-chat-form button:hover { background: var(--color-accent); color: var(--color-ink); }

.fc-chat-note {
  margin: 0;
  padding: 0 1.1rem 0.9rem;
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

@media (max-width: 600px) {
  .fc-chat { left: 16px; bottom: 16px; }
  .fc-chat-toggle { width: 50px; height: 50px; }
}

/* Bandeau cookies visible : on remonte le widget chat (mobile). */
@media (max-width: 600px) {
  .fc-cookie-banner:not([hidden]) ~ .fc-chat { bottom: 150px; }
}

/* ================================================================
 *  Ajustements « quiet luxury » (Cormorant + Jost)
 * ================================================================ */
.btn-outline {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  padding: 0.95rem 2.1rem;
}

.link-underline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.entry-content { font-size: 1.02rem; }
.entry-content h2,
.entry-content h3 { letter-spacing: 0.01em; }

/* --- Section "Notre histoire" : très compacte --- */
.fc-intro { padding-block: clamp(22px, 3.5vw, 38px); }
.fc-intro .section-header { margin-bottom: 0; }
.fc-intro .eyebrow { margin-bottom: 0.5rem; }
.fc-intro .entry-content {
  max-width: 540px;
  margin: 0 auto;
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.45;
  color: var(--color-text);
}
.fc-intro .link-underline { margin-top: 1rem; }

/* ================================================================
 *  Témoignages : vrai cadre (plus de "beige")
 * ================================================================ */
.testimonial {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  padding: clamp(1.9rem, 4vw, 2.8rem);
  background: linear-gradient(160deg, rgba(176, 131, 12, 0.06), rgba(176, 131, 12, 0.01));
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0.1rem;
  left: 1.1rem;
  font-family: var(--font-display);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.55;
}
.testimonial p { margin: 0; }
.testimonial cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.section-alt .testimonial {
  border-color: var(--color-surface-line);
  background: #fff;
}

.testimonial--feature {
  text-align: center;
  border-top: 1px solid var(--color-line);
  padding: clamp(1.6rem, 4vw, 2.6rem);
}
.testimonial--feature::before { left: 50%; transform: translateX(-50%); }
.testimonial--feature .testimonial-quote {
  margin-top: 1.1rem;
  font-family: var(--font-script);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
  color: var(--color-text);
}
.testimonial--feature .testimonial-quote::before { display: none; }
.testimonial--feature .testimonial-quote p { margin: 0; }

.fc-carousel-slide { padding: 0.4rem 0.6rem; }

/* Page témoignages : plus de bouton « voir tout », la colonne défile */
.fc-tst-more-wrap { display: none; }

/* Mobile : grilles de photos 2 par ligne, titres resserrés */
@media (max-width: 560px) {
  .card-service-title {
    font-size: 0.92rem;
    gap: 0.4rem;
  }
  .card-service-title .service-icon { width: 16px; height: 16px; }
  .card-service .tagline { font-size: 0.78rem; }
  .card-article .meta { font-size: 0.7rem; }
  .card-article h3 { font-size: 1rem; }
}

/* ================================================================
 *  Diaporama d'images dans les cadres de service (fondu enchaîné)
 * ================================================================ */
.fc-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.fc-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: transform 0.6s ease;
  animation: fc-slideshow 18s ease-in-out infinite;
}

.fc-slideshow img:nth-child(1) { animation-delay: calc(var(--fc-delay, 0s) + 0s); }
.fc-slideshow img:nth-child(2) { animation-delay: calc(var(--fc-delay, 0s) + 6s); }
.fc-slideshow img:nth-child(3) { animation-delay: calc(var(--fc-delay, 0s) + 12s); }

.fc-slideshow[data-count="1"] img { animation: none; opacity: 1; }
.fc-slideshow[data-count="2"] img { animation-duration: 12s; }
.fc-slideshow[data-count="2"] img:nth-child(2) { animation-delay: calc(var(--fc-delay, 0s) + 6s); }

@keyframes fc-slideshow {
  0%   { opacity: 1; }
  28%  { opacity: 1; }
  34%  { opacity: 0; }
  95%  { opacity: 0; }
  100% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .fc-slideshow img { animation: none; opacity: 0; }
  .fc-slideshow img:nth-child(1) { opacity: 1; }
}

/* Le zoom au survol s'applique à toutes les images du diaporama. */
.card-service:hover .fc-slideshow img { transform: scale(1.04); }

/* ================================================================
 *  Style « Suzosky » — coins arrondis, transitions fluides
 * ================================================================ */

/* --- Boutons en pilule --- */
.btn-outline {
  border-radius: var(--radius-pill);
  padding: 0.9rem 2rem;
}

.link-underline { transition: color 0.2s ease, border-color 0.2s ease, gap 0.2s ease; }
.link-underline:hover { gap: 0.8em; }

/* --- Cadres & médias : coins arrondis --- */
.card-service figure,
.card-article figure,
.featured-media,
.fc-frame {
  border-radius: var(--radius-lg);
}

.card-service figure::after,
.card-article figure::after,
.featured-media::after,
.fc-frame::after {
  border-radius: calc(var(--radius-lg) - 8px);
}

/* Les équerres d'angle ne conviennent pas aux coins ronds : on les retire. */
.card-service figure::before,
.card-article figure::before,
.featured-media::before,
.fc-frame::before {
  background: none;
}

.entry-content img { border-radius: var(--radius); }

/* --- Cartes de service : petite carte surélevée --- */
.card-service {
  border-top: none;
  padding: 0;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease;
}
.card-service:hover { transform: translateY(-4px); }
.card-service figure { margin-bottom: 1.2rem; }

.card-service-title { padding-inline: 0.2rem; }
.card-service .tagline { padding-inline: 0.2rem; }

/* --- Formulaires : champs adoucis --- */
.contact-form input,
.contact-form select,
.contact-form textarea,
.fc-chat-input {
  border-radius: var(--radius-sm);
}

/* --- Surfaces flottantes --- */
.fc-chat-panel,
.fc-cookie-banner { border-radius: var(--radius-lg); }
.fc-chat-toggle,
.fc-whatsapp { border-radius: 50%; }
.fc-chat-actions .btn-outline,
.fc-cookie-actions .btn-outline { border-radius: var(--radius-pill); }

/* --- Bandeau CTA arrondi --- */
.cta-band .container {
  border-radius: var(--radius-lg);
}

/* --- Menu mobile arrondi --- */
@media (max-width: 900px) {
  .main-navigation.is-open {
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    border: 1px solid var(--color-line);
    border-top: none;
  }
}

/* ================================================================
 *  Transition de page — la nouvelle page entre en fondu-glissé
 * ================================================================ */
.fc-page {
  animation: fc-page-enter 0.55s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fc-page-enter {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Le voile de sortie glisse depuis le bas, puis se lève. */
.fc-page-loader {
  transform: translateY(6%);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.fc-page-loader.is-active { transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fc-page { animation: none; }
  .fc-page-loader { transform: none; }
}

/* ================================================================
 *  Page Services — liste + détail (galerie multi-formats)
 * ================================================================ */
.fc-explorer { display: block; }
.fc-explorer-row { display: block; }

.fc-explorer-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  text-align: left;
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--color-surface-line);
  border-radius: var(--radius);
  color: inherit;
  scroll-margin-top: 84px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.2s ease;
}

.fc-explorer-item .service-icon { width: 20px; height: 20px; color: var(--color-accent); }

.fc-explorer-name {
  flex: 1;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.fc-explorer-arrow {
  transition: transform 0.25s ease, color 0.2s ease;
  color: var(--color-accent);
}

.fc-explorer-item:hover {
  border-color: color-mix(in srgb, var(--color-accent) 45%, var(--color-surface-line));
}

.fc-explorer-item[aria-selected="true"] {
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  border-color: color-mix(in srgb, var(--color-accent) 45%, transparent);
}

.fc-explorer-panel {
  display: grid;
  gap: 1.6rem;
  animation: fc-panel-in 0.4s ease both;
}

@keyframes fc-panel-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fc-explorer-panel[hidden] { display: none; }

/* ---- Mobile : accordéon. Le détail apparaît sous le service cliqué. ---- */
@media (max-width: 899px) {
  .fc-explorer-row { margin-bottom: 0.5rem; }
  .fc-explorer-item[aria-selected="true"] .fc-explorer-arrow { transform: rotate(90deg); }
  .fc-explorer-panel {
    margin: 0.5rem 0 0.4rem;
    padding: 1.1rem;
    border-radius: var(--radius);
    background: rgba(23, 20, 15, 0.04);
    border: 1px solid var(--color-surface-line);
  }
  .fc-explorer-panel .fc-explorer-body h2 { font-size: 1.3rem; }
}

@media (min-width: 700px) and (max-width: 899px) {
  .fc-explorer-panel { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* ---- Desktop : liste à gauche, détail à droite ---- */
@media (min-width: 900px) {
  .fc-explorer {
    display: grid;
    grid-template-columns: 290px 1fr;
    column-gap: 3rem;
    row-gap: 0;
    align-items: start;
  }
  .fc-explorer-row { display: contents; }
  .fc-explorer-item { grid-column: 1; margin-bottom: 0.4rem; }
  .fc-explorer-item[aria-selected="true"] .fc-explorer-arrow { transform: translateX(3px); }
  .fc-explorer-panel {
    grid-column: 2;
    grid-row: 1 / span 60;
    align-self: start;
    grid-template-columns: 1.05fr 0.95fr;
  }
}

/* Galerie : mélange de formats (portrait / paysage / carré) */
.fc-explorer-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
  gap: 12px;
}

.fc-explorer-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-line);
}

.fc-explorer-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fc-explorer-gallery figure:hover img { transform: scale(1.05); }

.fc-explorer-gallery .g-portrait { grid-row: span 2; aspect-ratio: 3 / 4; }
.fc-explorer-gallery .g-landscape { aspect-ratio: 4 / 3; }
.fc-explorer-gallery .g-square { aspect-ratio: 1 / 1; }

.fc-explorer-gallery .g-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, var(--color-bg-alt), var(--color-bg));
  color: var(--color-accent);
}
.fc-explorer-gallery .g-empty .service-icon { width: 34px; height: 34px; }

.fc-explorer-body .eyebrow { margin-bottom: 0.4rem; }
.fc-explorer-body h2 { margin-bottom: 1rem; }
.fc-explorer-body .btn-outline { margin-top: 1.6rem; }

/* ================================================================
 *  Accueil — sections premium
 * ================================================================ */
.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ui-icon { width: 24px; height: 24px; flex: none; color: var(--color-accent); }

/* --- Bandeau de réassurance --- */
.fc-reassure {
  background: var(--color-bg-alt);
  border-block: 1px solid var(--color-line);
}
.fc-reassure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem 1.5rem;
  padding-block: 1.4rem;
}
@media (min-width: 800px) {
  .fc-reassure-grid { grid-template-columns: repeat(4, 1fr); }
}
.fc-reassure-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--color-text);
}

/* --- Chiffres clés --- */
.fc-figures-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem 3.2rem;
  text-align: center;
}
.fc-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 0 1 190px;
}
.fc-figure-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.fc-figure-label { font-size: 0.78rem; color: var(--color-text-muted); max-width: 200px; }

/* --- Profils / "Quel est votre besoin ?" --- */
.fc-profile {
  display: block;
  padding: 2rem 1.8rem;
  border: 1px solid var(--color-surface-line);
  border-radius: var(--radius-lg);
  background: var(--color-white, #fff);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fc-profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px -28px rgba(23, 20, 15, 0.3);
}
.fc-profile h3 { margin-bottom: 0.6rem; }
.fc-profile p { color: #5a5443; margin-bottom: 1.4rem; }

/* --- Notre méthode --- */
.fc-steps {
  display: grid;
  gap: 1.6rem;
  counter-reset: step;
}
@media (min-width: 800px) { .fc-steps { grid-template-columns: repeat(4, 1fr); } }
.fc-step {
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--color-surface-line);
  border-radius: var(--radius-lg);
  background: #fff;
}
.fc-step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-accent);
}
.fc-step h3 { margin: 0.6rem 0 0.5rem; font-size: 1.15rem; }
.fc-step p { font-size: 0.92rem; color: #5a5443; }
.fc-step-delay {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
}

/* --- Pourquoi nous choisir --- */
.fc-why { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .fc-why { grid-template-columns: 1fr 1.3fr; align-items: start; } }
.fc-why-list { display: grid; gap: 0; }
.fc-why-list li {
  padding: 1.1rem 0 1.1rem 2rem;
  border-top: 1px solid var(--color-surface-line);
  position: relative;
  color: var(--color-surface-text);
}
.fc-why-list li:last-child { border-bottom: 1px solid var(--color-surface-line); }
.fc-why-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.5rem;
  width: 12px; height: 7px;
  border-left: 1.5px solid var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
  transform: rotate(-45deg);
}

/* --- FAQ --- */
.fc-faq { display: grid; gap: 0; }
.fc-faq-item { border-top: 1px solid var(--color-line); }
.fc-faq-item:last-child { border-bottom: 1px solid var(--color-line); }
.fc-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.3rem 2.5rem 1.3rem 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}
.fc-faq-item summary::-webkit-details-marker { display: none; }
.fc-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 1.15rem;
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: transform 0.25s ease;
}
.fc-faq-item[open] summary::after { transform: rotate(45deg); }
.fc-faq-a { padding: 0 0 1.4rem; color: var(--color-text-muted); }
.section-alt .fc-faq-a { color: #5a5443; }

/* --- Newsletter --- */
.fc-newsletter { display: grid; gap: 2rem; }
@media (min-width: 900px) { .fc-newsletter { grid-template-columns: 1fr 1fr; align-items: center; } }
.fc-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: #ffffff;
  border: 1px solid var(--color-surface-line);
  border-radius: var(--radius-pill);
  box-shadow: 0 26px 55px -30px rgba(0, 0, 0, 0.45);
}
.fc-newsletter-form input {
  flex: 1;
  min-width: 180px;
  padding: 0.8rem 1.1rem;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--color-surface-text);
}
.fc-newsletter-form input::placeholder { color: #9a927f; }
.fc-newsletter-form input:focus { outline: none; }
.fc-newsletter-form .btn-outline { border-radius: var(--radius-pill); color: var(--color-surface-text); }
.fc-newsletter-form .btn-outline:hover { background: var(--color-accent); color: var(--color-ink); }
.fc-newsletter-msg { flex-basis: 100%; margin: 0.4rem 0 0; font-size: 0.88rem; color: #b8402f; }
.fc-newsletter-msg.is-ok { color: var(--color-accent-dark); }

/* ================================================================
 *  Bloc « texte à gauche / image à droite »
 * ================================================================ */
.fc-split { display: grid; gap: 2.5rem; }

@media (min-width: 900px) {
  .fc-split {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 3.5rem;
    align-items: start;
  }
}

.fc-split--solo { max-width: 760px; }

.fc-split-media { }

@media (min-width: 900px) {
  .fc-split-media { position: sticky; top: 110px; }
}

.fc-split-media figure {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}
.fc-split-media img,
.fc-split-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-split-aside {
  margin-top: 2.6rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--color-line);
}
.section-alt .fc-split-aside { border-color: var(--color-surface-line); }
.fc-split-aside h3 { margin-bottom: 1rem; font-size: 1.1rem; }

/* --- "Ce qui est inclus" (fiche service) --- */
.fc-included { margin-top: 1.2rem; }
.fc-included li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.8rem;
  border-top: 1px solid var(--color-line);
}
.fc-included li:last-child { border-bottom: 1px solid var(--color-line); }
.fc-included li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.25rem;
  width: 11px; height: 6px;
  border-left: 1.5px solid var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent);
  transform: rotate(-45deg);
}
.section-alt .fc-included li { border-color: var(--color-surface-line); }

/* --- CTA band : carte arrondie centrée --- */
.cta-band {
  background: transparent;
  color: var(--color-text);
}
.cta-band .container {
  background: var(--color-accent);
  color: var(--color-ink);
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 6vw, 4rem) 1.5rem;
  text-align: center;
}

/* ================================================================
 *  Formulaires additionnels : brochure, rappel, dépôt de témoignage
 * ================================================================ */

/* Le hero a maintenant jusqu'à 3 boutons : autoriser le retour à la ligne. */
.hero-actions { flex-wrap: wrap; }

/* --- Footer : 4 colonnes + bandeau newsletter --- */
@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}
.footer-callback .form-row { margin-bottom: 0.9rem; }
.footer-callback label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(242, 238, 228, 0.55);
  margin-bottom: 0.35rem;
}
.footer-callback input,
.footer-callback select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(250, 247, 242, 0.18);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  padding: 0.55rem 0.7rem;
  font: inherit;
  font-size: 0.9rem;
}
.footer-callback input:focus,
.footer-callback select:focus {
  outline: none;
  border-color: var(--color-accent);
}
.footer-callback .btn-outline { margin-top: 0.4rem; font-size: 0.82rem; }

.footer-newsletter {
  border-top: 1px solid rgba(250, 247, 242, 0.15);
  padding-top: 2rem;
  margin-bottom: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 2rem;
}
.footer-newsletter p {
  margin: 0;
  flex: 1 1 260px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--color-text);
}
.fc-newsletter-form.is-compact { flex: 1 1 320px; max-width: 460px; }
.fc-newsletter-form.is-compact .fc-newsletter-msg { flex-basis: 100%; }

/* --- Note en étoiles (dépôt de témoignage) --- */
.fc-rating-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5A5646;
  margin-bottom: 0.4rem;
}
.fc-rating {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 0.15rem;
  font-size: 1.7rem;
  line-height: 1;
}
.fc-rating input { position: absolute; opacity: 0; pointer-events: none; }
.fc-rating label {
  color: #cdbfa0;
  cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.fc-rating label:hover,
.fc-rating label:hover ~ label,
.fc-rating input:checked ~ label { color: var(--color-accent); }
.fc-rating input:focus-visible + label { outline: 2px solid var(--color-accent); outline-offset: 2px; }

.fc-form-hint { font-size: 0.82rem; color: #8a8271; margin-top: 0.8rem; }

/* --- Bloc rappel sur la page Contact --- */
.fc-callback-block {
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--color-surface-line);
}
.fc-callback-block h2 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.fc-callback-block > p { color: #5A5646; margin-bottom: 1.6rem; }
.fc-callback-form.is-compact .form-notice { font-size: 0.85rem; }

/* --- Citation Maya Angelou (bandeau, esprit brochure) --- */
.fc-quote {
  background: var(--color-bg);
  color: var(--color-text);
  padding-block: clamp(3.5rem, 9vw, 7rem);
  border-block: 1px solid var(--color-line);
}
.fc-quote .container { max-width: 900px; text-align: center; }
.fc-quote blockquote { margin: 0; }
.fc-quote blockquote p {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  color: var(--color-gold-bright, var(--color-accent));
  margin: 0 0 1.4rem;
  text-wrap: balance;
}
.fc-quote cite {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
}
.fc-quote cite span { color: var(--color-muted, rgba(242,238,228,0.55)); letter-spacing: 0.12em; }

/* --- Page Témoignages : formulaire à gauche, témoignages à droite --- */
.fc-tst-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (min-width: 960px) {
  .fc-tst-layout { grid-template-columns: minmax(0, 460px) 1fr; }
  .fc-tst-form-col { position: sticky; top: 96px; }
}
.fc-tst-form-col .section-header { margin-bottom: 1.6rem; text-align: left; }
.fc-tst-form-col .section-header .eyebrow { margin-inline: 0; }

/* le formulaire reprend la carte claire des autres formulaires, mais pleine largeur de sa colonne */
.fc-tst-form-col .contact-form { max-width: none; margin-inline: 0; }

/* colonne témoignages : une carte par ligne, zone qui défile pendant que
   le formulaire reste visible à gauche */
.fc-tst-list-col .grid {
  grid-template-columns: 1fr;
  gap: 1.4rem;
  max-height: 68vh;
  overflow-y: auto;
  padding-right: 0.7rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-accent) transparent;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22px, #000 calc(100% - 26px), transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0, #000 22px, #000 calc(100% - 26px), transparent 100%);
}
.fc-tst-list-col .grid::-webkit-scrollbar { width: 4px; }
.fc-tst-list-col .grid::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 999px; }
@media (min-width: 960px) {
  .fc-tst-list-col .grid { max-height: calc(100vh - 180px); }
}

/* la note en étoiles sur fond clair (carte du formulaire) */
.fc-tst-form-col .fc-rating-label { color: #5a5443; }
.fc-tst-form-col .fc-rating label { color: #d8c9a6; }
.fc-tst-form-col .fc-rating label:hover,
.fc-tst-form-col .fc-rating label:hover ~ label,
.fc-tst-form-col .fc-rating input:checked ~ label { color: var(--color-accent); }
.fc-tst-form-col .fc-form-hint { color: #8a8271; }

/* --- Boutons du hero : bordure plus marquée --- */
.hero-actions .btn-outline { border-width: 2px; }

/* --- Chat : indicateur « écrit… » à 3 points animés --- */
.fc-chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
}
.fc-chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.35;
  animation: fc-typing 1.15s ease-in-out infinite;
}
.fc-chat-typing span:nth-child(2) { animation-delay: 0.18s; }
.fc-chat-typing span:nth-child(3) { animation-delay: 0.36s; }
@keyframes fc-typing {
  0%, 80%, 100% { opacity: 0.3; transform: translateY(0) scale(0.85); }
  40%           { opacity: 1;   transform: translateY(-4px) scale(1); }
}

/* --- Voile de chargement : médaillon « The Finest » cursif, animé --- */
.fc-ring { overflow: visible; }
.fc-ring text { paint-order: stroke; }

.fc-ring-rotor {
  transform-box: view-box;
  transform-origin: 100px 100px;
  animation: fc-ring-spin 9s linear infinite;
}
@keyframes fc-ring-spin { to { transform: rotate(360deg); } }

.fc-ring-outer {
  transform-box: view-box;
  transform-origin: 100px 100px;
  stroke-dasharray: 591;
  animation: fc-ring-draw 2.6s ease-in-out infinite alternate, fc-ring-spin-slow 24s linear infinite;
}
@keyframes fc-ring-draw {
  from { stroke-dashoffset: 240; }
  to   { stroke-dashoffset: 0; }
}
@keyframes fc-ring-spin-slow { to { transform: rotate(-360deg); } }

.fc-ring-word {
  transform-box: view-box;
  transform-origin: 100px 108px;
  animation: fc-ring-breathe 3.2s ease-in-out infinite;
}
@keyframes fc-ring-breathe {
  0%, 100% { transform: scale(0.98); opacity: 0.9; }
  50%      { transform: scale(1.03); opacity: 1; }
}

.fc-ring-gem {
  transform-box: view-box;
  transform-origin: 100px 100px;
  animation: fc-ring-gem 2.4s ease-in-out infinite;
}
@keyframes fc-ring-gem {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 1; }
}

.fc-ring-sweep {
  transform-box: view-box;
  transform-origin: 0 0;
  animation: fc-ring-sweep 3.4s ease-in-out infinite;
}
@keyframes fc-ring-sweep {
  0%        { transform: skewX(-20deg) translateX(-20px); }
  60%, 100% { transform: skewX(-20deg) translateX(320px); }
}

@media (prefers-reduced-motion: reduce) {
  .fc-ring-rotor, .fc-ring-outer, .fc-ring-word, .fc-ring-gem { animation: none; }
  .fc-ring-outer { stroke-dashoffset: 0; }
  .fc-ring-word { transform: scale(1); opacity: 1; }
  .fc-ring-gem { opacity: 0.7; }
  .fc-ring-sweep { display: none; }
  .fc-chat-typing span { animation: none; opacity: 0.6; }
}

/* --- Abonnements --- */
.grid-4 { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.fc-plan {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--color-surface-line, rgba(0,0,0,.12));
  border-radius: var(--radius-lg, 18px);
  background: var(--color-surface, #fff);
  color: var(--color-surface-text, #1a1a1a);
}
.fc-plan.is-feature {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent), 0 30px 60px -30px rgba(0,0,0,.4);
}
.fc-plan-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0;
  color: var(--color-accent-dark, var(--color-accent));
}
.fc-plan-price { font-size: 0.95rem; margin: 0 0 0.4rem; color: #5a5443; }
.fc-plan-price span:first-child { font-size: 1.5rem; font-weight: 700; color: var(--color-surface-text, #1a1a1a); }
.fc-plan-per { color: #8a8271; }
.fc-plan ul { list-style: none; margin: 0.4rem 0 1.2rem; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.fc-plan li { position: relative; padding-left: 1.2rem; font-size: 0.88rem; line-height: 1.45; }
.fc-plan li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px; border-left: 1.5px solid var(--color-accent);
  border-bottom: 1.5px solid var(--color-accent); transform: rotate(-45deg);
}
.fc-plan .btn-outline { align-self: flex-start; color: var(--color-surface-text, #1a1a1a); border-color: var(--color-accent); border-width: 2px; }
.fc-plan .btn-outline:hover { background: var(--color-accent); color: var(--color-ink); }
.fc-plans-note { margin-top: 1.6rem; text-align: center; font-size: 0.85rem; color: var(--color-text-muted); }

/* ---------- Page Services : bloc « Et aussi » ---------- */
.fc-also {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid var(--color-line);
  text-align: center;
}
.fc-also h2 { margin: 0.4rem 0 0.8rem; }
.fc-also-lead {
  max-width: 620px;
  margin: 0 auto 2rem;
  color: var(--color-text-muted);
}
.fc-also-list {
  list-style: none;
  margin: 0 auto 2.2rem;
  padding: 0;
  max-width: 760px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}
.fc-also-list li {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-pill, 999px);
  padding: 0.5rem 1.1rem;
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-surface, transparent);
}

/* ---------- Page Services : tarifs « À la carte » ---------- */
.fc-alacarte {
  margin-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid var(--color-line);
  text-align: center;
}
.fc-alacarte h2 { margin: 0.4rem 0 0.8rem; }
.fc-alacarte-lead {
  max-width: 620px;
  margin: 0 auto 2.4rem;
  color: var(--color-text-muted);
}
.fc-alacarte-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
  text-align: left;
  margin-bottom: 2rem;
}
@media (max-width: 780px) {
  .fc-alacarte-grid { grid-template-columns: 1fr; }
}
.fc-alacarte-group {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg, 22px);
  padding: 1.6rem 1.8rem;
  background: var(--color-surface, transparent);
}
.fc-alacarte-group h3 {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent-dark, var(--color-accent));
}
.fc-alacarte-group ul { list-style: none; margin: 0; padding: 0; }
.fc-alacarte-group li { padding: 0.6rem 0; border-top: 1px dashed var(--color-line); }
.fc-alacarte-group li:first-child { border-top: 0; }
.fc-alacarte-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.fc-alacarte-label { flex: 0 1 auto; }
.fc-alacarte-dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted var(--color-line);
  transform: translateY(-3px);
  min-width: 1.5rem;
}
.fc-alacarte-price {
  flex: 0 0 auto;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-text);
}
.fc-alacarte-note {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
}
.fc-alacarte-foot {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 1.6rem;
}
