/* ============================================
   IMPORTS & VARIABLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=Source+Sans+3:wght@300;400;600&family=Dancing+Script:wght@400;700&family=Quicksand:wght@400;500;600&display=swap') layer(fonts);

:root {
  /* Couleurs principales - Palette épurée */
  --color-sage: #9caf88;
  --color-sage-dark: #7a9570;
  --color-sage-light: #b8d4a8;
  
  --color-blue: #7fa3b8;
  --color-blue-dark: #637f71;
  --color-blue-light: #a0c0d4;
  
  /* Couleurs supplémentaires */
  --color-rose: #e8b4a0;
  --color-rose-dark: #d49a82;
  --color-terracota: #c97d5f;
  --color-violet: #9b8fb8;
  --color-violet-dark: #7a6a95;
  
  /* Couleurs de base */
  --color-background: #faf8f6;
  --color-text: #2b2b2b;
  --color-text-light: #555;
  
  /* Couleurs sémantiques */
  --color-primary: var(--color-sage);
  --color-primary-dark: var(--color-sage-dark);
  --color-secondary: var(--color-blue);
  --color-accent: var(--color-blue-dark);
  --color-accent-soft: var(--color-rose);
  --color-accent-warm: var(--color-terracota);
  --color-accent-deep: var(--color-violet);
  
  /* Layout */
  --max-width: 1100px;
  --spacing-xs: 0.375rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 0.75rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 20px rgba(0, 0, 0, 0.15);
  
  /* Border radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.5rem;
  --radius-full: 999px;
}

/* ============================================
   RESET & BASE
   ============================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
  background: #1e1e1e;
  scrollbar-gutter: stable;
  overscroll-behavior-y: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--color-background);
  color: var(--color-text);
  line-height: 26px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overscroll-behavior-y: none;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

main {
  flex: 1 0 auto;
  padding: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
  min-height: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 4px;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition-normal);
  width: 100%;
  box-sizing: border-box;
  height: auto;
  min-height: 90px; /* Hauteur réduite */
}

section[id] {
  scroll-margin-top: 140px;
}

header.scrolled {
  box-shadow: var(--shadow-sm);
  /* On s'assure que ça ne rétrécit pas */
  min-height: 90px; 
}

.nav-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.8rem 12px; /* Padding réduit */
  width: 100%;
  box-sizing: border-box;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.logo-item {
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: transform var(--transition-normal);
}

.logo-item:hover {
  transform: scale(1.05);
}

.logo-item img {
  height: clamp(100px, 12vw, 150px);
  width: auto;
  display: block;
  transition: transform var(--transition-normal);
}

.logo-item a::before {
  display: none;
}

.logo-item a:focus-visible {
  outline: none;
}

nav a {
  font-weight: 600;
  font-size: 18px;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  transition: all var(--transition-normal);
  position: relative;
}

nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--color-primary);
  transition: transform var(--transition-normal);
}

nav a:hover::before,
nav a.active::before {
  transform: translateX(-50%) scaleX(1);
}

nav a:hover,
nav a.active {
  transform: translateY(-1px);
}

nav a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  padding: 1.5rem 12px;
  background: linear-gradient(135deg, #f5ede8 0%, #f0ebe5 30%, #ede8f0 70%, #f0ebe5 100%);
  color: #2f2f2f;
  text-align: center;
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 4vw, 64px);
  line-height: clamp(48px, 4.8vw, 77px);
  margin-bottom: 0.75rem;
  color: var(--color-blue-dark);
  animation: fadeInUp 0.8s ease-out;
}

.hero p {
  font-size: 18px;
  margin-bottom: 0.75rem;
  color: #2f2f2f;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero .btn {
  margin-top: 0.75rem;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-blue-dark);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  min-height: 3rem;
  max-height: 3rem;
  padding: 0 2rem;
  line-height: 16px;
  font-family: inherit;
  font-size: 16px;
  text-decoration: none;
  text-align: center;
  border-radius: 999px;
  border: none;
  background: var(--color-rose); /* Rose par défaut */
  color: #fff; /* Texte blanc */
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 10px rgba(232, 180, 160, 0.4);
  white-space: nowrap;
  box-sizing: border-box;
}

.card-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.card-actions-inline {
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-rose);
  color: var(--color-rose);
}

.btn-secondary:hover {
  background: var(--color-rose);
  color: #fff;
  border-color: var(--color-rose);
}

.text-center {
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--color-rose-dark); /* Rose plus foncé au survol */
  color: #fff;
  box-shadow: 0 6px 15px rgba(232, 180, 160, 0.6);
}

.btn:active {
  transform: translateY(0);
}

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

form.contact-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.875rem;
  margin-top: 1rem;
}

form.contact-form label {
  display: flex !important;
  flex-direction: column !important;
  width: 100%;
  gap: 0.375rem;
  font-weight: 600;
  color: #333;
  font-size: 16px;
}

form.contact-form input,
form.contact-form textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(156, 175, 136, 0.3);
  background: #fff;
  color: #222;
  font: inherit;
  display: block;
}

form.contact-form textarea {
  resize: vertical;
  min-height: 8.75rem;
}

form.contact-form .btn {
  width: 100%;
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem 12px;
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
  width: 100%;
  box-sizing: border-box;
  will-change: opacity, transform;
  contain: layout style;
}

.section:last-of-type {
  padding-bottom: 2rem;
  margin-bottom: 0;
}

.section.visible {
  will-change: auto;
}

.section > *:first-child {
  margin-top: 0;
}

.section > *:last-child {
  margin-bottom: 0;
}

.section p,
.section ul {
  color: var(--color-text);
  line-height: 28px;
  margin: 0 0 var(--spacing-md);
}

.section ul {
  padding-left: 1.25rem;
}

.section li {
  margin-bottom: var(--spacing-xs);
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 42px);
  line-height: clamp(34px, 4.2vw, 50px);
  color: var(--color-blue-dark);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
  text-align: center;
}

/* ============================================
   GRID & CARDS
   ============================================ */

.grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}

.grid-2 {
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
}

/* Sur mobile, forcer une seule colonne */
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr !important;
  }
  
  .card-span-2 {
    grid-column: 1 !important;
  }
}

.card {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  padding: 1.5rem;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-normal);
  opacity: 0;
  transform: translateY(1.25rem);
  border: 1px solid rgba(156, 175, 136, 0.1);
  width: 100%;
  box-sizing: border-box;
  will-change: opacity, transform;
  contain: layout style;
}

.card > *:first-child {
  margin-top: 0;
}

.card > *:last-child {
  margin-bottom: 0;
}

.card-span-2 {
  grid-column: span 2;
}

.card.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(232, 180, 160, 0.12);
  border-color: rgba(232, 180, 160, 0.25);
  background: linear-gradient(135deg, #fff 0%, #faf8f6 50%, #f8f6f4 100%);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 21px;
  color: var(--color-blue-dark);
  transition: color var(--transition-fast);
  font-weight: 600;
}

.card:hover h3 {
  color: var(--color-sage-dark);
}

.card p,
.card ul {
  margin: 0 0 0.625rem;
  color: var(--color-text);
  line-height: 27px;
}

.card ul {
  padding-left: 1.25rem;
}

.card li {
  margin-bottom: var(--spacing-xs);
}

.card a:not(.btn) {
  color: var(--color-secondary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.card a:not(.btn):hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================
   PRICING CARDS (Desktop)
   ============================================ */

.pricing-card .pricing-price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--color-sage-dark);
}

/* ============================================
   LEGAL INFO / MENTIONS LÉGALES
   ============================================ */

.legal-info {
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(156, 175, 136, 0.1);
  margin-top: 1rem;
}

.legal-info h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 20px;
  color: var(--color-blue-dark);
  font-weight: 600;
}

.legal-info p {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-info strong {
  color: var(--color-text);
  font-weight: 600;
}

/* Liens dans les sections de mentions légales (sauf les boutons) */
.section a:not(.btn) {
  color: var(--color-sage-dark);
  font-weight: 600;
  text-decoration: underline;
  transition: color var(--transition-fast);
}

.section a:not(.btn):hover {
  color: var(--color-primary);
  text-decoration: underline;
}

/* ============================================
   TARIFS BUBBLES
   ============================================ */

.tarifs-bubbles-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.bubbles-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.tarif-bubble {
  border: 1px solid var(--color-text);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 140px;
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.tarif-bubble:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.tarif-bubble h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin: 0 0 0.5rem 0;
  color: var(--color-terracota);
}

.tarif-bubble .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--color-blue-dark);
}

.tarif-bubble .duration {
  font-size: 0.9rem;
  color: #666;
}

.tarif-bubble-large {
  width: 240px;
  height: 160px;
  background-color: #f9f9f9;
}

.forfaits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.forfait-bubble {
  border: 1px solid var(--color-text);
  border-radius: 50%;
  width: 220px;
  height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-normal);
}

.forfait-bubble:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.forfait-bubble h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin: 0 0 0.5rem 0;
  color: var(--color-terracota);
}

.forfait-bubble .hours {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.forfait-bubble .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--color-blue-dark);
}

/* ============================================
   ACCOMPAGNEMENT PHOTOS
   ============================================ */

.photo-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  padding: 1rem;
}

.photo-carousel-container {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  overflow: visible;
  border-radius: 0;
  box-shadow: none;
  border: none;
  padding: 1.5rem;
}

.photo-carousel-container.organic-style {
  overflow: visible;
  border: none;
  background: transparent;
  box-shadow: none;
}

.carousel-backdrop {
  position: absolute;
  top: 0;
  left: 10%;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, #e0f2fe 0%, #dbeafe 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  transform: rotate(-3deg);
  opacity: 0.6;
  transition: all 5s ease-in-out;
  animation: morphing 8s infinite alternate;
}

@keyframes morphing {
  0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(-3deg) scale(1); }
  50% { border-radius: 60% 40% 30% 70% / 60% 40% 60% 40%; transform: rotate(2deg) scale(1.02); }
  100% { border-radius: 40% 60% 50% 50% / 40% 60% 40% 60%; transform: rotate(-1deg) scale(1); }
}

.photo-carousel-track {
  width: 90%;
  height: 90%;
  position: relative;
  /* On enlève overflow hidden pour laisser dépasser les cartes */
  overflow: visible;
  z-index: 1;
  margin-top: 5%;
  margin-left: 5%;
}

.photo-carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0; /* Caché par défaut */
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), opacity 0.8s ease-in-out;
  border-radius: 2rem;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transform-origin: 50% 120%; /* Point de pivot en bas pour l'effet éventail */
}

/* Slide active (au dessus) */
.photo-carousel-slide.active {
  z-index: 10;
  opacity: 1;
  transform: rotate(0deg) translate(0, 0) scale(1);
}

/* Slide suivante (carte de droite - pile serrée) */
.photo-carousel-slide.next {
  z-index: 5;
  opacity: 1;
  transform: rotate(3deg) translate(10px, 5px) scale(0.98);
}

/* Slide d'après (carte encore plus à droite - pile serrée) */
.photo-carousel-slide.next-2 {
  z-index: 1;
  opacity: 1;
  transform: rotate(6deg) translate(20px, 10px) scale(0.96);
}

/* Sur mobile, on s'assure que toutes les slides sont visibles ou au moins accessibles */
@media (max-width: 768px) {
  .photo-carousel-container {
    max-width: 300px;
    margin-top: 2rem;
  }
  
  .photo-carousel-slide.next {
    transform: rotate(3deg) translate(5px, 5px) scale(0.98);
  }
  
  .photo-carousel-slide.next-2 {
    transform: rotate(6deg) translate(10px, 10px) scale(0.96);
    /* On force l'opacité à 1 pour être sûr */
    opacity: 1 !important; 
    z-index: 2 !important;
  }
}

/* Slide sortante (animation de sortie vers la gauche) */
.photo-carousel-slide.exit {
  z-index: 15;
  opacity: 0;
  transform: rotate(-15deg) translate(-80px, 20px);
}

.carousel-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Styles pour les cartes flottantes - Supprimés car non désirés */
.floating-info {
  display: none;
}

.photo-carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.photo-carousel-indicators .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.photo-carousel-indicators .indicator.active {
  background: #fff;
  transform: scale(1.2);
}

.photo-moi-container {
  float: left;
  margin-right: 2rem;
  margin-bottom: 1rem;
  max-width: 45%;
}

.accompagnement-photo-main {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 4px solid #fff;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.accompagnement-photo-main:hover {
  transform: rotate(0deg) scale(1.02);
}

@media (max-width: 768px) {
  .photo-moi-container {
    float: none;
    margin-right: 0;
    margin-bottom: 1.5rem;
    max-width: 100%;
    text-align: center;
  }
  
  .accompagnement-photo-main {
    max-width: 280px;
  }
}

.highlight-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--color-sage-dark);
  display: block;
  margin-top: 0.5rem;
}

/* ============================================
   KEYWORD BUBBLES (Problèmes rencontrés)
   ============================================ */

.keyword-bubbles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-content: center;
  margin-top: 0;
  max-width: 100%;
  padding: 1rem;
}

.left-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 1rem;
}

.right-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  height: 100%;
}

.keyword-bubbles .bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  font-size: 16px;
  font-weight: 600;
  color: #fff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-blue) 100%);
  border: none;
  box-shadow: 2px 4px 10px rgba(156, 175, 136, 0.25);
  transition: all var(--transition-normal);
  text-align: center;
  min-width: 100px;
}

/* Force styles for all link states with maximum specificity */
body .keyword-bubbles a.bubble,
body .keyword-bubbles a.bubble:visited,
body .keyword-bubbles a.bubble:hover,
body .keyword-bubbles a.bubble:active,
body .keyword-bubbles a.bubble:focus {
  color: #ffffff !important;
  text-decoration: none !important;
  border-bottom: none !important;
  outline: none !important;
}

.keyword-bubbles .bubble:nth-child(odd) {
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 60%;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-sage) 100%);
  transform: translateY(5px);
}

.keyword-bubbles .bubble:nth-child(3n) {
  border-radius: 40% 60% 60% 40% / 60% 50% 50% 40%;
  background: linear-gradient(135deg, var(--color-violet) 0%, var(--color-rose) 100%);
  color: #fff;
}

.keyword-bubbles .bubble:nth-child(3n+1) {
  background: linear-gradient(135deg, var(--color-sage-dark) 0%, var(--color-sage) 100%);
}

.keyword-bubbles .bubble:hover {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-blue) 100%);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1) rotate(2deg);
  box-shadow: 0 8px 20px rgba(156, 175, 136, 0.3);
  z-index: 5;
}

/* Photo cabinet */
.cabinet-composition {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.cabinet-photo-main {
  width: 80%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border: 4px solid #fff;
  transition: transform 0.4s ease, z-index 0s;
}

.cabinet-photo-secondary {
  width: 80%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: absolute;
  bottom: 0;
  right: -10%;
  z-index: 2;
  border: 4px solid #fff;
  transition: transform 0.4s ease, z-index 0s;
}

.cabinet-photo-main:hover {
  transform: scale(1.05);
  z-index: 10;
}

.cabinet-photo-secondary:hover {
  transform: scale(1.05);
  z-index: 10;
}

@media (max-width: 768px) {
  .cabinet-composition {
    margin-top: 2rem;
  }
}

/* ============================================
   SPACE ITEMS (Liste avec icônes)
   ============================================ */

.space-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.space-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-sage-light) 0%, #e0f2fe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 1.5rem;
  color: var(--color-sage-dark);
  box-shadow: 0 4px 10px rgba(156, 175, 136, 0.2);
}

.space-details h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  color: var(--color-blue-dark);
}

.space-details p {
  margin: 0;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ============================================
   PHOTOS QUI SUIS-JE
   ============================================ */

.photo-simple-rounded {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.simple-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  transition: all 0.5s ease;
  border: 4px solid #fff;
}

.simple-photo:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ============================================
   BADGES
   ============================================ */

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  justify-content: center;
  margin-top: 0.75rem;
}

.badge {
  background: linear-gradient(135deg, rgba(156, 175, 136, 0.15) 0%, rgba(155, 143, 184, 0.1) 50%, rgba(127, 163, 184, 0.15) 100%);
  border: 1px solid rgba(156, 175, 136, 0.3);
  border-radius: 999px;
  padding: 0.5rem 1.1875rem;
  font-size: 14px;
  color: var(--color-sage-dark);
  font-weight: 600;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.badge:hover {
  background: linear-gradient(135deg, var(--color-sage) 0%, var(--color-violet) 50%, var(--color-blue) 100%);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(156, 175, 136, 0.3);
  border-color: transparent;
}

/* ============================================
   BRAND FONT
   ============================================ */

.brand-font {
  font-family: 'Quicksand', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

.tagline {
  font-size: 18px;
  color: var(--color-accent);
  font-weight: 600;
}

.highlight {
  border-left: 4px solid;
  border-image: linear-gradient(135deg, var(--color-sage), var(--color-rose), var(--color-blue)) 1;
  margin: 0.75rem 0;
  transition: all var(--transition-fast);
  background: linear-gradient(90deg, rgba(156, 175, 136, 0.08) 0%, rgba(232, 180, 160, 0.05) 50%, rgba(127, 163, 184, 0.05) 100%);
  padding: 0.875rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.highlight:hover {
  background: linear-gradient(90deg, rgba(156, 175, 136, 0.12) 0%, rgba(232, 180, 160, 0.08) 50%, rgba(127, 163, 184, 0.1) 100%);
  transform: translateX(4px);
}

.note {
  background: linear-gradient(135deg, rgba(156, 175, 136, 0.12) 0%, rgba(127, 163, 184, 0.08) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 0.875rem 1.125rem;
  border-radius: 0.8125rem;
  margin-top: 1rem;
  color: #444;
  font-size: 15px;
  transition: all var(--transition-normal);
}

.note:hover {
  box-shadow: var(--shadow-sm);
}

/* ============================================
   EMPREINTES BLOCKS
   ============================================ */

.empreintes-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.empreinte-block {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  position: relative;
  border: 1px solid transparent;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 768px) {
  .empreinte-block {
    flex-direction: column;
    text-align: center;
  }
  
  .empreinte-block .photo-placeholder-small {
    margin-left: auto;
    margin-right: auto;
  }
}

.empreinte-block-green {
  background: linear-gradient(135deg, rgba(156, 175, 136, 0.4) 0%, rgba(156, 175, 136, 0.2) 100%);
  border-color: rgba(156, 175, 136, 0.8);
}

.empreinte-block-blue {
  background: linear-gradient(135deg, rgba(160, 192, 212, 0.4) 0%, rgba(160, 192, 212, 0.2) 100%);
  border-color: rgba(160, 192, 212, 0.8);
}

.empreinte-block-gray {
  background: linear-gradient(135deg, rgba(232, 180, 160, 0.4) 0%, rgba(232, 180, 160, 0.2) 100%);
  border-color: rgba(232, 180, 160, 0.8);
}

.empreinte-content {
  flex: 1;
}

.empreinte-content h3 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.empreinte-content p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.photo-container-small {
  width: 150px;
  height: 150px;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex-shrink: 0;
  transform: rotate(3deg);
  transition: transform var(--transition-normal);
  border: 4px solid #fff;
  box-shadow: var(--shadow-sm);
}

.photo-container-small:hover {
  transform: rotate(0deg);
  box-shadow: var(--shadow-hover);
}

.photo-container-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cabinet-photo-container {
  width: 100%;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 1rem 0;
  border: 1px solid rgba(156, 175, 136, 0.2);
}

.cabinet-photo-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.cabinet-photo-container:hover img {
  transform: scale(1.05);
}

/* ============================================
   FORMATIONS BLOCK
   ============================================ */

.formations-block {
  background: linear-gradient(135deg, rgba(156, 175, 136, 0.15) 0%, rgba(155, 143, 184, 0.1) 50%, rgba(127, 163, 184, 0.15) 100%);
  border: 1px solid rgba(156, 175, 136, 0.3);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1rem;
  max-width: 500px;
}

.formations-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.formations-list li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed rgba(156, 175, 136, 0.3);
  color: var(--color-text);
}

.formations-list li:first-child {
  padding-top: 0;
  color: var(--color-blue-dark);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid rgba(156, 175, 136, 0.4);
}

.formations-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.photo-placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 125%; /* Ratio 4:5 for portrait */
  background: linear-gradient(135deg, #f0ebe5 0%, #ede8f0 100%);
  border-radius: var(--radius-lg);
  border: 2px dashed rgba(156, 175, 136, 0.4);
  position: relative;
  margin-top: 2rem;
  transform: rotate(2deg);
  transition: transform var(--transition-normal);
}

.photo-placeholder:hover {
  transform: rotate(0deg);
}

.placeholder-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--color-sage-dark);
  text-align: center;
  width: 100%;
}

@media (max-width: 768px) {
  .photo-placeholder {
    max-width: 300px;
    margin: 2rem auto 0;
  }
}

.carousel-container {
  position: relative;
  height: 300px; /* Valeur par défaut, sera ajustée par JS */
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  transition: height 0.3s ease;
}

.carousel-track-container {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
  border: 1px solid rgba(156, 175, 136, 0.2);
}

.carousel-track {
  padding: 0 !important;
  margin: 0;
  list-style: none;
  position: relative;
  height: 100%;
  transition: transform 500ms ease-in-out;
  display: flex;
  width: 100%;
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card {
  padding: 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto; /* Ensure centering */
}

.testimonial-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-blue-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  gap: 10px;
  margin-top: 1rem;
}

.carousel-indicator {
  border: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(156, 175, 136, 0.3);
  cursor: pointer;
  transition: background var(--transition-normal);
}

.carousel-indicator.current-slide {
  background: var(--color-sage-dark);
}

.carousel-indicator:hover {
  background: var(--color-sage);
}

@media (max-width: 768px) {
  .carousel-prev,
  .carousel-next {
    display: none;
  }
  
  .carousel-container {
    height: 350px;
  }
  
  .testimonial-card blockquote {
    font-size: 1.25rem;
  }
}

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

.cta {
  background: transparent;
  color: var(--color-text);
  text-align: center;
  position: relative;
  transition: all var(--transition-normal);
  padding: 3rem 2rem;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  right: 12px;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(156, 175, 136, 0.12);
  pointer-events: none;
  z-index: 0;
}

.cta > * {
  position: relative;
  z-index: 1;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta:hover::before {
  box-shadow: 0 20px 50px rgba(232, 180, 160, 0.12);
  border-color: rgba(232, 180, 160, 0.25);
}

.cta h2 {
  color: var(--color-blue-dark);
  font-weight: 600;
  max-width: 32ch;
  margin-left: auto;
  margin-right: auto;
}

.cta p {
  color: #333;
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

footer {
  background: var(--color-blue-dark) !important; /* Force le vert sauge foncé / sapin */
  color: #fff;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  clear: both;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Force le footer à rester en bas */
body > footer {
  margin-top: auto;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 12px 0;
  margin-bottom: 0;
}

.footer-inner > div:first-child {
  text-align: left;
}

.footer-inner > div:nth-child(2) {
  text-align: center;
}

.footer-inner > div:nth-child(3) {
  text-align: right;
}

.footer-inner h4 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-family: 'Playfair Display', serif;
  color: #fff;
}

.footer-inner p {
  margin: 0.1875rem 0;
  line-height: 22px;
}

.footer-inner a {
  color: #ddd;
  transition: color var(--transition-fast);
}

.footer-inner a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-inner a:focus-visible {
  color: #fff;
  outline-color: #fff;
}

.footer-credits {
  text-align: center;
  margin: 0.5rem auto 0;
  padding: 0 12px 0.75rem;
  font-size: 14px;
  color: #aaa;
  max-width: var(--max-width);
  box-sizing: border-box;
  display: block;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}




/* ============================================
   ACCESSIBILITY & PREFERENCES
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
  
  .section,
  .card {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  /* Support futur pour le mode sombre si nécessaire */
}

/* ============================================
   MENU HAMBURGER (MOBILE)
   ============================================ */

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
  gap: 0.375rem;
}

/* Logo mobile - complètement caché sur desktop */
.mobile-logo {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--color-sage-dark);
  border-radius: 3px;
  transition: all var(--transition-normal);
  transform-origin: center;
  display: block;
  position: relative;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ============================================
   MEDIA QUERIES - MOBILE & TABLET
   ============================================ */

/* Tablettes et petits écrans */
@media (max-width: 968px) {
  .grid-2 {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .card-span-2 {
    grid-column: 1 !important;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center !important;
  }
  
  .footer-inner > div:first-child,
  .footer-inner > div:nth-child(2),
  .footer-inner > div:nth-child(3) {
    text-align: center !important;
  }
  
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile - Petits écrans */
@media (max-width: 768px) {
  /* Navigation mobile */
  .menu-toggle {
    display: flex;
    position: fixed;
    right: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom));
    z-index: 1101; /* Au-dessus du nav */
    width: 3rem;
    height: 3rem;
    padding: 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(156, 175, 136, 0.25);
    backdrop-filter: blur(10px);
  }

  /* Bande blanche en haut avec logo centré */
  header {
    position: static;
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  
  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    position: relative;
    min-height: 70px;
    background: #fff;
  }
  
  /* Logo mobile centré dans la bande blanche */
  .mobile-logo {
    display: block !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
  }
  
  .mobile-logo img {
    height: 50px;
    width: auto;
    display: block;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Support pour les navigateurs modernes */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    z-index: 1000; /* Plus élevé que le header pour être toujours au-dessus */
    overflow-y: auto; /* IMPORTANT : Le menu scroll indépendamment */
    overflow-x: hidden;
    padding-top: 0;
    -webkit-overflow-scrolling: touch; /* Smooth scroll sur iOS */
    overscroll-behavior: contain; /* Empêche le scroll du body quand on atteint les limites */
  }
  
  nav[aria-hidden="false"] {
    transform: translateX(0);
  }
  
  /* Bloquer le scroll du body quand le menu est ouvert */
  body.menu-open {
    overflow: hidden;
    position: relative; /* PAS fixed - juste pour empêcher le scroll */
  }
  
  nav ul {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.5rem;
    align-items: flex-start;
  }
  
  nav li {
    width: 100%;
  }
  
  nav a {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 18px;
    width: 100%;
    border-radius: var(--radius-md);
  }
  
  nav a::before {
    display: none;
  }
  
  nav a:hover,
  nav a.active {
    background: rgba(156, 175, 136, 0.1);
    transform: none;
  }
  
  .logo-item {
    order: -1;
    width: 100%;
    padding: 0.75rem 0 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
  }
  
  .logo-item img {
    height: 100px;
    margin: 0 auto;
  }
  
  /* Hero section */
  .hero {
    padding: 2rem 1rem;
  }
  
  .hero h1 {
    font-size: clamp(28px, 8vw, 40px);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  /* Sections */
  .section {
    padding: 2rem 1rem;
  }
  
  /* Sections avec grille de tarifs */
  .section.grid {
    padding: 2.5rem 1rem;
  }
  
  .section h2 {
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  
  .section p {
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* Cards */
  .card {
    padding: 2rem;
    margin-bottom: 0;
  }
  
  .grid .card {
    margin-bottom: 0;
  }
  
  .card h3 {
    font-size: 24px;
    margin-bottom: 1.25rem;
  }
  
  /* Styles spécifiques pour les cartes de tarifs */
  .pricing-card {
    display: flex;
    flex-direction: column;
    min-height: 280px;
    padding: 2.5rem 2rem;
  }
  
  .pricing-card .pricing-details {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-weight: 500;
  }
  
  /* Mise en valeur du prix */
  .pricing-card .pricing-price {
    font-size: 42px;
    font-weight: 700;
    color: var(--color-sage-dark);
    margin: 1rem 0 1.5rem 0;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
  }
  
  .pricing-card .pricing-description {
    font-size: 16px;
    line-height: 1.7;
    margin-top: auto;
    color: var(--color-text);
    flex-grow: 1;
  }
  
  /* Carte qui span 2 colonnes sur desktop */
  .card-span-2 {
    margin-top: 0.5rem;
  }
  
  /* Buttons */
  .btn {
    width: 100%;
    max-width: 100%;
    padding: 0 1.5rem;
    font-size: 16px;
    min-height: 2.75rem;
    height: 2.75rem;
  }
  
  .card-actions {
    margin-top: 1.25rem;
  }
  
  /* Badges */
  .badge-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .badge {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 14px;
  }

  /* Keyword bubbles */
  .keyword-bubbles {
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .keyword-bubbles .bubble {
    padding: 0.4rem 0.875rem;
    font-size: 13px;
  }

  .card-actions-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .cabinet-placeholder {
    min-height: 160px;
    font-size: 0.9375rem;
  }
  
  /* Footer */
  .footer-inner {
    padding: 1.5rem 1rem 0;
    gap: 2rem;
  }
  
  .footer-inner h4 {
    font-size: 20px;
    margin-bottom: 0.75rem;
  }
  
  .footer-inner p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .footer-credits {
    padding: 1rem;
    font-size: 13px;
  }
  
  /* Testimonials */
  .testimonial-grid {
    gap: 1rem;
  }
  
  .testimonial {
    padding: 1.25rem;
    font-size: 16px;
  }
  
  /* Note */
  .note {
    padding: 1rem;
    font-size: 14px;
  }
  
  /* Scroll padding adjustment */
  html {
    scroll-padding-top: 60px;
  }
  
  section[id] {
    scroll-margin-top: 60px;
  }
}

/* Très petits écrans */
@media (max-width: 480px) {
  .hero {
    padding: 1.5rem 0.75rem;
  }
  
  .hero h1 {
    font-size: 24px;
  }
  
  .hero p {
    font-size: 15px;
  }
  
  .section {
    padding: 1.25rem 0.75rem;
  }
  
  .section h2 {
    font-size: 22px;
  }
  
  .card {
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
  }
  
  /* Amélioration des cartes de tarifs sur très petits écrans */
  .pricing-card {
    padding: 2rem 1.5rem;
    min-height: 260px;
  }
  
  .pricing-card h3 {
    font-size: 22px;
    margin-bottom: 1rem;
  }
  
  .pricing-card .pricing-details {
    font-size: 15px;
    margin-bottom: 0.875rem;
  }
  
  .pricing-card .pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-sage-dark);
    margin: 0.875rem 0 1.25rem 0;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
  }
  
  .pricing-card .pricing-description {
    font-size: 15px;
    margin-top: 0.875rem;
  }
  
  .btn {
    font-size: 15px;
    padding: 0 1.25rem;
  }
  
  nav ul {
    padding: 1.5rem 1rem;
  }
  
  nav a {
    font-size: 16px;
    padding: 0.625rem 0.875rem;
  }
}
