/* Célébrason – feuille de style principale */
/* Palette : Noir profond #050505, Or champagne #C6A667, texte clair #f2f2f2 */

/* ========================================
   Reset & global
======================================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #050505;
  color: #f2f2f2;
  font-family: 'Lora', serif;
  line-height: 1.6;
  text-rendering: auto;
}

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

a {
  color: #f2f2f2;
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: #C6A667;
}

ul,
ol {
  padding-left: 1.2rem;
}

p {
  margin: 0 0 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75em;
  color: #C6A667;
  font-family: 'Lora', serif;
  font-weight: 600;
  line-height: 1.3;
}

/* Amélioration premium (titres moins tassés) */
h1, h2, h3 {
  line-height: 1.18;
  text-wrap: balance;
}

h1 { margin-bottom: 0.9rem; }
h2 { margin: 2.25rem 0 1rem; }
h3 { margin: 1.5rem 0 0.65rem; }

::selection {
  background: rgba(198, 166, 103, 0.2);
  color: #fefefe;
}

/* ========================================
   Confort de lecture (site-wide)
======================================== */
main p,
main li {
  max-width: 66ch;
}

main p {
  line-height: 1.7;
  margin: 0 0 0.95rem;
}

main ul,
main ol {
  margin: 0.25rem 0 1rem;
  padding-left: 1.1em;
}

main li {
  margin: 0 0 0.45rem;
}

/* Images : rendu premium global dans le contenu */
main img {
  border-radius: 14px;
}

/* ========================================
   Layout helpers
======================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

main section {
  padding: 4rem 0;
}

section + section {
  border-top: 1px solid rgba(198, 166, 103, 0.15);
}

.section-eyebrow {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: #C6A667;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.6rem, 2vw + 1rem, 2.4rem);
  margin-bottom: 0.75rem;
}

.section-intro {
  max-width: 720px;
  color: #dedede;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
/* Zones : éviter le bloc de texte compact (mobile uniquement) */
@media (max-width: 640px) {
  .section-zones .section-body {
    display: grid;
    gap: 1.1rem;
  }
}

.section-note {
  color: #c0c0c0;
  font-size: 0.95rem;
}

/* ========================================
   Boutons & CTA (sécurisés)
======================================== */
.btn-primary,
.btn-ghost {
  display: inline-flex;            /* tactile + alignement */
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;                /* WCAG tactile */
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  border: 1px solid #C6A667;
  white-space: nowrap;             /* desktop premium */
}

.btn-primary {
  background: #C6A667;
  color: #050505;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: transparent;
  color: #C6A667;
}

.btn-ghost {
  background: transparent;
  color: #f2f2f2;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(198, 166, 103, 0.12);
}

/* Sur très petits écrans, autoriser le retour à la ligne si nécessaire */
@media (max-width: 420px) {
  .btn-primary,
  .btn-ghost {
    white-space: normal;
  }
}

/* Filet de sécurité CTA : uniquement dans conteneurs d’action
   (ne touche PAS les liens de paragraphe) */
main .hero-cta a:not([class*="btn"]),
main .section-cta a:not([class*="btn"]),
main .section-cta-inline a:not([class*="btn"]),
main .contact-actions a:not([class*="btn"]),
main .contact-links a:not([class*="btn"]),
main .card-actions a:not([class*="btn"]) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.05rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 166, 103, 0.55);
  text-decoration: none;
  gap: 0.5rem;
  transition: transform 120ms ease, background-color 120ms ease, color 120ms ease, border-color 120ms ease;
}

main .hero-cta a:not([class*="btn"]):hover,
main .section-cta a:not([class*="btn"]):hover,
main .section-cta-inline a:not([class*="btn"]):hover,
main .contact-actions a:not([class*="btn"]):hover,
main .contact-links a:not([class*="btn"]):hover,
main .card-actions a:not([class*="btn"]):hover {
  transform: translateY(-1px);
  border-color: rgba(198, 166, 103, 0.75);
}

/* ========================================
   Pills / chips
======================================== */
.chip,
.contact-chip {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(198, 166, 103, 0.5);
  border-radius: 999px;
  font-size: 0.9rem;
  color: #f2f2f2;
  background: rgba(198, 166, 103, 0.08);
}

/* ========================================
   Cards & grids
======================================== */
.card,
.split-card,
.benefit-card,
.step-card,
.quote-card,
.hero-card,
.contact-card,
.meta-panel,
.list-card,
.grid-card,
.testimonial-card,
.faq-item,
.blog-card,
.partner-card,
.reference-card,
.gallery-card {
  background: #0c0c0c;
  border: 1px solid rgba(198, 166, 103, 0.18);
  border-radius: 16px;
  padding: 1.5rem;
}

.grid,
.benefits-grid,
.steps-grid,
.contact-grid,
.split-panel,
.gallery-grid,
.partner-grid,
.reference-grid,
.blog-grid,
.card-grid,
.meta-inner,
.two-column,
.list-grid {
  display: grid;
  gap: 1.5rem;
}

.two-column {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.split-panel,
.benefits-grid,
.steps-grid,
.contact-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.meta-inner {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.list-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

/* Flex helpers */
.hero-inner,
.contact-hero-inner,
.footer-inner,
.site-header-inner,
.social-proof,
.contact-panel {
  display: flex;
  gap: 1.5rem;
}

.hero-inner,
.contact-hero-inner,
.contact-panel {
  align-items: center;
  justify-content: space-between;
}

/* ========================================
   Meta panel
======================================== */
.meta-panel {
  padding: 3rem 0;
  background: linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  border: none;
}

.meta-group h3 {
  margin-bottom: 0.75rem;
}

.meta-links {
  color: #d8d8d8;
  margin: 0 0 0.75rem;
  list-style: none;
  padding: 0;
}

.meta-links li + li {
  margin-top: 0.35rem;
}

.meta-note {
  color: #9f9f9f;
  font-size: 0.9rem;
}

.meta-panel h3 {
  font-size: 1.1rem;
}

.meta-panel a {
  color: #f2f2f2;
  border-bottom: 1px solid transparent;
}

.meta-panel a:hover,
.meta-panel a:focus-visible {
  color: #C6A667;
  border-color: rgba(198, 166, 103, 0.5);
}

/* ========================================
   Accessibility helpers
======================================== */
.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  padding: 0.75rem 1.25rem;
  background: #C6A667;
  color: #050505;
  z-index: 1000;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus-visible {
  left: 1rem;
}

:focus-visible {
  outline: 2px solid #C6A667;
  outline-offset: 3px;
}

/* ========================================
   Header & Navigation
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #050505;
  backdrop-filter: none;
  border-bottom: 1px solid rgba(198, 166, 103, 0.2);
}

.site-header-inner {
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand img {
  height: 48px;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.main-nav a {
  font-weight: 500;
  color: #f2f2f2;
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  border-color: #C6A667;
  color: #C6A667;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.nav-toggle:checked ~ .main-nav {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-toggle-label {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(198, 166, 103, 0.4);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: #f2f2f2;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

.nav-toggle:checked + .nav-toggle-label span {
  transform: rotate(45deg);
}

.nav-toggle:checked + .nav-toggle-label span::before {
  transform: rotate(-90deg) translate(-6px, 0);
}

.nav-toggle:checked + .nav-toggle-label span::after {
  opacity: 0;
}

/* ========================================
   Hero (global)
======================================== */
.hero {
  padding-top: 5rem;
}

.hero-inner {
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 2vw + 1.6rem, 3rem);
}

.hero-lead {
  color: #dedede;
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hero-meta {
  color: #b5b5b5;
  font-size: 0.95rem;
}
/* Alléger le hero en mobile : éviter le doublon tagline + image plein format */
@media (max-width: 640px) {
  #hero.hero { padding-top: 3.25rem; }

  /* Tagline déjà aria-hidden dans le HTML : OK à masquer en mobile */
  #hero .hero-aside { display: none; }

  /* Cadrage stable 16/9 + hauteur limitée */
  #hero .hero-visual {
    margin-top: 0.25rem;
    aspect-ratio: 16 / 9;
    max-height: 260px;
  }

  #hero .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* Ancien “hero-side” conservé si utilisé ailleurs */
.hero-side {
  max-width: 420px;
  width: 100%;
}

/* Visuel hero */
.hero-visual {
  margin: 0 0 1rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(198, 166, 103, 0.2);
}

/* Hero cards */
.hero-card {
  padding: 1.25rem;
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  color: #f2f2f2;
}

.hero-card-title {
  font-family: 'Lora', serif;
  color: #C6A667;
  font-weight: 600;
}

.hero-card-badge {
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(198, 166, 103, 0.5);
  font-size: 0.85rem;
  color: #f2f2f2;
}

.hero-waveform {
  height: 6px;
  background: linear-gradient(90deg, rgba(198, 166, 103, 0.2), rgba(198, 166, 103, 0.8), rgba(198, 166, 103, 0.2));
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-status {
  display: flex;
  justify-content: space-between;
  color: #d0d0d0;
  font-size: 0.95rem;
}

.hero-status strong {
  color: #C6A667;
}

.hero-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  background: #C6A667;
  margin-right: 0.35rem;
  box-shadow: 0 0 0 6px rgba(198, 166, 103, 0.12);
}

/* ========================================
   HERO Accueil — Desktop premium (cible #hero uniquement)
======================================== */
@media (min-width: 1024px) {

  #hero.hero {
    padding-top: clamp(2.25rem, 2vw + 0.75rem, 3.25rem);
    padding-bottom: clamp(2.25rem, 2vw + 0.75rem, 3.25rem);
  }

  #hero .container.hero-inner {
    display: grid !important;
    grid-template-columns: minmax(520px, 1fr) minmax(520px, 640px);
    grid-template-areas:
      "content visual"
      "aside   visual";
    column-gap: clamp(2.25rem, 2vw + 1rem, 3.25rem);
    row-gap: 1rem;
    align-items: start;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
  }

  #hero .container.hero-inner > div:first-child {
    grid-area: content;
  }

  #hero .hero-cta {
    margin-top: 1.15rem;
  }

  /* Aside : contrainte + badge premium */
  #hero .hero-aside {
    grid-area: aside;
    width: 100%;
    max-width: 440px;
    justify-self: start;
    align-self: start;
    margin-top: 0.35rem;
  }

  #hero .hero-tagline {
    max-width: none;
    padding: 0.8rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(198, 166, 103, 0.26);
    background: rgba(255, 255, 255, 0.03);
  }

  #hero .hero-tagline span {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  #hero .hero-icon {
    color: #C6A667;
  }

  /* Visuel : cadrage + profondeur */
  #hero .hero-visual {
    grid-area: visual;
    align-self: center;
    justify-self: end;
    width: 100%;
    max-width: 640px;
    transform: translateY(-10px);
  }

  #hero .hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  }

  /* Lisibilité premium */
  #hero .hero-lead,
  #hero .hero-meta {
    max-width: 56ch;
  }

  #hero .hero-meta {
    opacity: 0.9;
  }
}

/* Grand écran : léger boost visuel */
@media (min-width: 1280px) {
  #hero .hero-visual {
    max-width: 680px;
  }
}

/* ========================================
   Section patterns
======================================== */
.split-card h3,
.benefit-title,
.step-title,
.contact-card-title,
.list-card h3,
.blog-card h3,
.partner-card h3,
.reference-card h3,
.gallery-card h3,
.testimonial-card h3 {
  color: #C6A667;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.split-card p,
.benefit-text,
.step-card p,
.contact-card-text,
.list-card p,
.blog-card p,
.partner-card p,
.reference-card p,
.gallery-card p,
.testimonial-card p,
.faq-item p {
  color: #dcdcdc;
}

.split-card ul,
.benefit-card ul {
  color: #cfcfcf;
  padding-left: 1.2rem;
}

.split-card ul li + li,
.benefit-card ul li + li {
  margin-top: 0.45rem;
}

.benefit-card,
.step-card,
.contact-card {
  padding: 1.75rem;
  min-height: 100%;
}

.benefit-label,
.step-index,
.contact-icon {
  display: inline-block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: #C6A667;
  letter-spacing: 0.03em;
}

.benefit-title,
.step-title,
.contact-card-title {
  margin-bottom: 0.35rem;
}
/* Méthode : aérer la liste numérotée (mobile uniquement) */
@media (max-width: 640px) {
  .steps-list {
    list-style: decimal;
    margin: 0 0 1.5rem;
    padding-left: 1.2rem;
    display: grid;
    gap: 0.85rem;
  }

  .steps-list h3 { margin-bottom: 0.35rem; }

  .steps-list p {
    margin: 0;
    color: #dcdcdc;
  }
}

.steps-grid {
  counter-reset: steps;
}

.step-card {
  position: relative;
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(198, 166, 103, 0.08);
  border-radius: 16px;
  pointer-events: none;
}

.contact-card-inner,
.list-card-inner,
.blog-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.75rem;
}

.contact-actions,
.card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-microcopy,
.rating-description,
.card-meta,
.blog-meta,
.reference-meta,
.partner-meta,
.gallery-meta {
  color: #a9a9a9;
  font-size: 0.95rem;
}

.contact-email-note {
  text-align: center;
  margin-top: 2rem;
  color: #d6d6d6;
}

.list-grid ul,
.meta-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-grid li + li {
  margin-top: 0.5rem;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(198, 166, 103, 0), rgba(198, 166, 103, 0.5), rgba(198, 166, 103, 0));
  margin: 2.5rem 0 1.5rem;
}

.social-proof {
  gap: 2rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(198, 166, 103, 0.3);
  border-radius: 14px;
  background: rgba(198, 166, 103, 0.08);
}

.rating-score {
  font-size: 1.8rem;
  font-weight: 600;
  color: #C6A667;
}

.rating-stars {
  letter-spacing: 0.08em;
}

.badge-since {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(198, 166, 103, 0.08);
  border: 1px solid rgba(198, 166, 103, 0.25);
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  color: #e5e5e5;
  margin-top: 1rem;
}

.quote-card {
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 12px;
  font-size: 4rem;
  color: rgba(198, 166, 103, 0.3);
}

.quote-text {
  font-style: italic;
  color: #f2f2f2;
  margin-bottom: 1rem;
}

.quote-author {
  font-weight: 600;
  color: #C6A667;
}

.quote-meta {
  color: #b5b5b5;
  font-size: 0.95rem;
}

.contact-panel {
  gap: 2rem;
  align-items: flex-start;
}

.contact-title {
  font-size: clamp(1.8rem, 2vw + 1.4rem, 2.6rem);
}

.contact-text {
  color: #dcdcdc;
  margin-bottom: 1rem;
}

.contact-links {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}

.contact-meta {
  color: #bcbcbc;
}

/* ========================================
   Footer
======================================== */
.site-footer {
  border-top: 1px solid rgba(198, 166, 103, 0.25);
  padding: 1.5rem 0 2rem;
  background: #040404;
}

.footer-inner {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #dcdcdc;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #C6A667;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social img {
  width: 26px;
  height: 26px;
}

/* ========================================
   Media & responsive
======================================== */
@media (max-width: 960px) {
  main section {
    padding: 3rem 0;
  }

  .site-header-inner {
    flex-wrap: wrap;
    position: relative;
  }

  .nav-toggle,
  .nav-toggle-label {
    display: inline-flex;
  }

  .nav-toggle {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #050505;
    border-top: 1px solid rgba(198, 166, 103, 0.2);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      transform 0.2s ease,
      opacity 0.2s ease,
      max-height 0.2s ease;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 0;
    margin: 0;
  }

  .main-nav li {
    width: 100%;
  }

  .main-nav a {
    display: block;
    width: 100%;
    padding: 0.6rem 1.5rem 0.6rem 0;
    border-bottom: 1px solid rgba(198, 166, 103, 0.15);
  }

  .nav-toggle:checked ~ .main-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 700px;
  }

  .hero-inner,
  .contact-hero-inner,
  .contact-panel,
  .social-proof {
    flex-direction: column;
  }

  .hero-side,
  .rating-badge {
    width: 100%;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.98rem;
  }

  .container {
    padding: 0 1.1rem;
  }

  .card,
  .split-card,
  .benefit-card,
  .step-card,
  .quote-card,
  .hero-card,
  .contact-card,
  .list-card,
  .grid-card,
  .testimonial-card,
  .faq-item,
  .blog-card,
  .partner-card,
  .reference-card,
  .gallery-card {
    padding: 1.25rem;
  }

  .meta-panel {
    padding: 2.5rem 0;
  }

  .hero-inner {
    gap: 1.5rem;
  }

  main {
    display: block;
    position: relative;
    z-index: 1;
    min-height: 100vh;
  }

  main section {
    display: block;
    padding: 3rem 0;
  }

  .overlay,
  .page-overlay,
  .menu-overlay,
  [class*="overlay"] {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body > div,
  body > section {
    position: static;
  }
}

/* Ajustements lisibilité par device */
@media (max-width: 480px) {
  main p, main li { max-width: 58ch; }
  h1 { font-size: clamp(1.65rem, 1.25rem + 2.2vw, 2.15rem); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  main p, main li { max-width: 64ch; }
}

@media (min-width: 1024px) {
  main p, main li { max-width: 70ch; }
}
/* Ajustement final Hero Accueil – densité premium */
@media (min-width: 1024px) {
  #hero.hero {
    padding-top: clamp(2rem, 1.6vw + 0.75rem, 2.75rem);
    padding-bottom: clamp(2rem, 1.6vw + 0.75rem, 2.75rem);
  }

  #hero .hero-lead {
    margin-bottom: 1.25rem;
  }

  #hero .hero-cta {
    margin-top: 0.9rem;
  }
}
/* ================================
   PATCH – Header desktop : supprimer le "vide" logo/menu
   (CSS only, sans impact mobile)
================================ */
@media (min-width: 1024px) {
  .site-header-inner {
    justify-content: flex-start; /* au lieu de space-between */
    gap: 3rem;                  /* ajustable : 2rem à 4rem */
  }
}
/* === À propos : stabilisation layout (léger, sans impact perf) === */
.about-wrapper { padding: 4rem 0; }
.about-card { align-items: start; }
.about-photo-wrapper { margin: 0; }
.about-photo { max-width: 520px; }
.about-text { max-width: none; }
/* ========================================
   UX PATCH — Mariages (Desktop uniquement)
   Scope strict : .page-mariages
   Objectif : grilles + CTA + rythme
======================================== */

@media (min-width: 1024px) {

  /* 1) Grilles réellement en 2 colonnes quand attendu */
  .page-mariages .grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .page-mariages .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .page-mariages .faq-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  /* Timeline : réduire la hauteur en desktop, sans changer le design global */
  .page-mariages .timeline {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  /* 2) CTA : conteneur propre (sans toucher aux boutons) */
  .page-mariages .section-cta,
  .page-mariages .section-cta-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 1rem;
  }

  /* 3) Rythme : réduire le "double padding" entre Prestations -> Méthode */
  .page-mariages section[aria-labelledby="wedding-services-title"] {
    padding-bottom: 2.5rem;
  }

  .page-mariages section[aria-labelledby="wedding-method-title"] {
    padding-top: 2.5rem;
  }
/* Mariages – Méthode : si nombre d’étapes impair, la dernière prend toute la largeur */
@media (min-width: 1024px) {
  .page-mariages .timeline > :nth-child(odd):last-child {
  grid-column: 1 / -1;
}
}
/* ========================================
   UX PATCH — Accueil (Desktop uniquement)
   Objectif : exploiter la largeur, casser le mur vertical,
   sans impacter SEO / perf / design global
   Scope STRICT : .home
======================================== */

@media (min-width: 1024px) {

  /* 1) Conteneur plus large UNIQUEMENT sur la home */
  .home .container {
    max-width: 1280px; /* sweet spot desktop */
  }

  /* 2) Confort de lecture : limiter la longueur des lignes */
  .home main p,
  .home main li {
    max-width: 72ch;
  }

  /* Les titres peuvent respirer */
  .home h2,
  .home h3 {
    max-width: none;
  }

  /* 3) Renforcer la perception desktop des grilles */
  .home .feature-grid,
  .home .cards-grid {
    gap: 1.5rem;
  }

  .home .section-body-split {
    gap: 2rem;
  }

  /* 4) Rythme vertical plus aéré (léger) */
  .home main section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
}
/* UX — CTA : espacement cohérent quand il est dans un hero */
.hero .section-cta {
  margin-top: 1.25rem;
}
/* UX — cartes avis entièrement cliquables */
.benefit-card .benefit-link{
  display:flex;
  flex-direction:column;
  height:100%;
  gap:0.75rem;
  color:inherit;
  text-decoration:none;
}

.benefit-card .benefit-cta{
  font-weight:600;
  color:#C6A667;
}

/* Focus clavier : propre + accessible */
.benefit-card .benefit-link:focus-visible{
  outline:3px solid #C6A667;
  outline-offset:4px;
  border-radius:12px;
}
