/* ============================================================
   MON AMIE COMPTABLE — Gestion CLV
   Charte de marque V3 — Avril 2026

   Palette Sauge & Crème :
   - Forêt:        #1C2A20
   - Sauge profond:#384A36
   - Sauge:        #5C7356
   - Sauge claire: #93A689
   - Crème:        #F4EDE0
   - Ivoire:       #EBE4D6
   - Sable:        #D9CCB4

   Typographie :
   - Titres:  Fraunces (variable, opsz)
   - Corps:   Inter
   ============================================================ */

/* -------------------- VARIABLES -------------------- */
:root {
  --foret:        #1C2A20;
  --sauge-deep:   #384A36;
  --sauge:        #5C7356;
  --sauge-soft:   #93A689;
  --cream:        #F4EDE0;
  --ivoire:       #EBE4D6;
  --sable:        #D9CCB4;
  --serif:        'Fraunces', Georgia, serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--foret);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* -------------------- UTILITIES -------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Eyebrow label */
.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sauge);
  margin-bottom: 18px;
  display: block;
}
.eyebrow--sage  { color: var(--sauge-soft); }
.eyebrow--dark  { color: var(--sauge); }

/* Section title */
.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  color: var(--foret);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 72;
}
.section-title em {
  font-style: italic;
  color: var(--sauge);
}
.section-title--light {
  color: var(--cream);
}
.section-title--light em {
  color: var(--sauge-soft);
}

/* Thin rule divider */
.rule {
  width: 56px;
  height: 1px;
  background-color: rgba(92, 115, 86, 0.5);
  margin: 28px 0 40px;
}
.rule--light {
  background-color: rgba(147, 166, 137, 0.5);
}

/* -------------------- BUTTONS -------------------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 0;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  white-space: nowrap;
}

/* Solid dark (for light sections) */
.btn--dark {
  background-color: var(--foret);
  color: var(--cream);
  border-color: var(--foret);
}
.btn--dark:hover {
  background-color: var(--sauge-deep);
  border-color: var(--sauge-deep);
}

/* Solid light (for dark sections) */
.btn--light {
  background-color: var(--cream);
  color: var(--foret);
  border-color: var(--cream);
}
.btn--light:hover {
  background-color: var(--ivoire);
  border-color: var(--ivoire);
}

/* Outline for light sections */
.btn--outline {
  background-color: transparent;
  color: var(--foret);
  border-color: var(--foret);
}
.btn--outline:hover {
  background-color: var(--foret);
  color: var(--cream);
}

/* Ghost on dark (outlined, light color) */
.btn--ghost-light {
  background-color: transparent;
  color: var(--sauge-soft);
  border: none;
  padding-left: 0;
  padding-right: 0;
  letter-spacing: 0;
  font-size: 17px;
  text-transform: none;
  font-weight: 400;
}
.btn--ghost-light:hover {
  color: var(--cream);
}

/* Small variant */
.btn--sm {
  padding: 10px 20px;
  font-size: 11.5px;
}

/* -------------------- NAVIGATION -------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(244, 237, 224, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(92, 115, 86, 0.12);
  transition: all 0.3s ease;
}
.nav--scrolled {
  box-shadow: 0 2px 24px rgba(28, 42, 32, 0.07);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__clover {
  font-size: 22px;
  color: var(--sauge);
  line-height: 1;
  display: inline-block;
}
.nav__wordmark {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  color: var(--foret);
  letter-spacing: -0.3px;
  font-variation-settings: "opsz" 18;
}
.nav__wordmark em {
  font-style: italic;
  color: var(--sauge);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__menu a {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  color: var(--foret);
  transition: color 0.2s ease;
  position: relative;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--sauge);
  transition: width 0.25s ease;
}
.nav__menu a:hover { color: var(--sauge); }
.nav__menu a:hover::after { width: 100%; }
.nav__link-sub {
  display: block;
  line-height: 1.3;
}

.nav__cta {
  font-family: var(--sans) !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--foret);
  padding: 9px 20px;
  color: var(--foret) !important;
  transition: all 0.25s ease !important;
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background-color: var(--foret) !important;
  color: var(--cream) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--foret);
  transition: all 0.3s ease;
}

/* -------------------- HERO -------------------- */
.hero {
  background-color: var(--foret);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 68px;
  position: relative;
  overflow: hidden;
}

/* Large ghost clover in bg */
.hero__clover-bg {
  position: absolute;
  right: -80px;
  top: 20px;
  width: 640px;
  color: var(--sauge-soft);
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
}
.hero__clover-bg svg { width: 100%; height: auto; display: block; }

.hero__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--cream);
  margin-bottom: 0;
  font-variation-settings: "opsz" 96;
}
.hero__title em {
  font-style: italic;
  color: var(--sauge-soft);
}

.hero__rule {
  width: 72px;
  height: 1px;
  background: rgba(147, 166, 137, 0.45);
  margin: 40px 0 28px;
}

.hero__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(244, 237, 224, 0.75);
  max-width: 460px;
  margin-bottom: 44px;
  font-variation-settings: "opsz" 18;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

/* Portrait column */
.hero__portrait {
  position: relative;
}
.hero__portrait-inner {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}
.hero__portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__portrait-clover {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 28px;
  color: var(--sauge-soft);
  opacity: 0.6;
  font-family: Georgia, serif;
}

/* Floating identity card */
.hero__portrait-card {
  position: absolute;
  bottom: -28px;
  left: -28px;
  background: var(--sable);
  color: var(--foret);
  padding: 20px 24px;
  max-width: 210px;
}
.hero__card-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  line-height: 1.1;
  margin-top: 6px;
  font-variation-settings: "opsz" 22;
}
.hero__card-name em {
  font-style: italic;
  color: var(--sauge);
}
.hero__card-sub {
  font-size: 12.5px;
  margin-top: 6px;
  color: rgba(28, 42, 32, 0.65);
  line-height: 1.5;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__scroll span {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sauge-soft);
  opacity: 0.6;
}
.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(147,166,137,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* -------------------- PROMISE STRIP -------------------- */
.promise {
  background-color: var(--cream);
  border-bottom: 1px solid rgba(92, 115, 86, 0.1);
  padding: 72px 0;
}
.promise__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-left: 1px solid rgba(92, 115, 86, 0.12);
}
.promise__item {
  padding: 0 40px;
  border-right: 1px solid rgba(92, 115, 86, 0.12);
}
.promise__number {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--sauge);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 14;
}
.promise__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 24px;
  letter-spacing: -0.5px;
  color: var(--foret);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 24;
}
.promise__text {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(28, 42, 32, 0.65);
}

/* -------------------- ABOUT -------------------- */
.about {
  padding: 120px 0;
  background-color: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about__image-wrapper {
  position: relative;
}
.about__image {
  width: 100%;
  height: auto;
  display: block;
}
.about__text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: rgba(28, 42, 32, 0.8);
}
.about__text strong { color: var(--sauge-deep); }

/* -------------------- STATS -------------------- */
.stats {
  padding: 72px 0;
  background-color: var(--sauge-deep);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  border-left: 1px solid rgba(147, 166, 137, 0.2);
}
.stats__item {
  padding: 0 24px;
  border-right: 1px solid rgba(147, 166, 137, 0.2);
}
.stats__number {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 52px;
  color: var(--cream);
  margin-bottom: 8px;
  font-variation-settings: "opsz" 52;
}
.stats__desc {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--sauge-soft);
  letter-spacing: 0.3px;
}

/* -------------------- SERVICES -------------------- */
.services {
  padding: 120px 0;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}
.services__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 40px;
  flex-wrap: wrap;
}
.services__sub {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(28, 42, 32, 0.6);
  max-width: 400px;
}

/* Bordered grid */
.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(28, 42, 32, 0.12);
}
.service-card {
  padding: 48px 40px;
  border-right: 1px solid rgba(28, 42, 32, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--foret);
  background-color: var(--cream);
  transition: background-color 0.25s ease;
}
.service-card:last-child { border-right: none; }
.service-card:hover {
  background-color: var(--ivoire);
}
.service-card--featured {
  background-color: var(--foret);
  color: var(--cream);
  border-right-color: rgba(147, 166, 137, 0.2);
}
.service-card--featured:hover {
  background-color: var(--sauge-deep);
}

.service-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.service-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--sauge);
  font-variation-settings: "opsz" 14;
}
.service-card--featured .service-card__num {
  color: var(--sauge-soft);
}
.service-card__clover {
  font-size: 18px;
  color: var(--sauge);
  opacity: 0.5;
  font-family: Georgia, serif;
}
.service-card--featured .service-card__clover {
  color: var(--sauge-soft);
}
.service-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 26;
}
.service-card__price {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sauge);
  margin-bottom: 20px;
}
.service-card--featured .service-card__price {
  color: var(--sauge-soft);
}
.service-card__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(28, 42, 32, 0.65);
  flex-grow: 1;
  margin-bottom: 28px;
}
.service-card--featured .service-card__text {
  color: rgba(244, 237, 224, 0.65);
}
.service-card__link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--foret);
  transition: color 0.2s ease;
  margin-top: auto;
}
.service-card__link:hover { color: var(--sauge-soft); }
.service-card--featured .service-card__link { color: var(--sauge-soft); }
.service-card--featured .service-card__link:hover { color: var(--cream); }
.service-card__inclus-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sauge);
  margin-bottom: 10px;
}
.service-card__inclus {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-card__inclus li {
  font-family: var(--sans);
  font-size: 14px;
  color: rgba(28, 42, 32, 0.65);
  padding-left: 18px;
  position: relative;
}
.service-card__inclus li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--sauge);
}

/* -------------------- FAQ -------------------- */
.faq {
  padding: 120px 0;
  background-color: var(--sable);
}
.faq__layout {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  align-items: flex-start;
}
.faq__intro {
  flex: 0 0 300px;
}
.faq__list {
  flex: 1;
  border-top: 1px solid rgba(28, 42, 32, 0.12);
}
.faq__item {
  border-bottom: 1px solid rgba(28, 42, 32, 0.12);
}
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--foret);
  text-align: left;
  gap: 16px;
}
.faq__icon {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
  color: var(--sauge);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  padding-bottom: 20px;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(28, 42, 32, 0.65);
}

/* -------------------- EDITORIAL QUOTE -------------------- */
.editorial-quote {
  padding: 120px 0;
  background-color: var(--sable);
  background-image: url('../images/corinne-travail-1.jpg');
  background-size: cover;
  background-position: center 30%;
  position: relative;
}
.editorial-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(217, 204, 180, 0.90);
}
@media (min-width: 900px) {
  .editorial-quote {
    min-height: 660px;
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
  }
  .editorial-quote::before {
    background: linear-gradient(to right,
      rgba(217, 204, 180, 0.97) 35%,
      rgba(217, 204, 180, 0.70) 60%,
      rgba(217, 204, 180, 0.20) 100%);
  }
}
.editorial-quote .container {
  position: relative;
  z-index: 1;
}
.editorial-quote__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.editorial-quote__clover {
  display: block;
  font-size: 32px;
  color: var(--sauge);
  margin-bottom: 32px;
  font-family: Georgia, serif;
}
.editorial-quote__text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.25;
  letter-spacing: -1px;
  color: var(--foret);
  font-variation-settings: "opsz" 44;
}
.editorial-quote__attr {
  margin-top: 36px;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sauge);
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonials {
  padding: 120px 0;
  background-color: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(92, 115, 86, 0.15);
}
.testimonial-card {
  padding: 44px 36px;
  border-right: 1px solid rgba(92, 115, 86, 0.15);
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card__stars {
  color: var(--sauge);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.testimonial-card__quote {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.6;
  color: var(--foret);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 18;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(92, 115, 86, 0.12);
  padding-top: 20px;
}
.testimonial-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background-color: var(--sauge-deep);
  color: var(--sauge-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-card__author strong {
  display: block;
  font-size: 17px;
  font-weight: 500;
}
.testimonial-card__author span {
  display: block;
  font-size: 12.5px;
  color: var(--sauge);
  margin-top: 2px;
}

/* -------------------- RESOURCES -------------------- */
.resources {
  padding: 120px 0;
  background-color: var(--ivoire);
  position: relative;
  overflow: hidden;
}
.resources__intro {
  font-size: 17px;
  color: var(--sauge-deep);
  max-width: 480px;
  margin-bottom: 56px;
  line-height: 1.7;
}
.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(92, 115, 86, 0.15);
}
.resource-card {
  padding: 44px 36px;
  border-right: 1px solid rgba(92, 115, 86, 0.15);
  position: relative;
  text-align: center;
  transition: background-color 0.25s ease;
}
.resource-card:last-child { border-right: none; }
.resource-card:hover { background-color: rgba(92, 115, 86, 0.04); }
.resource-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  background-color: var(--sauge);
  color: var(--cream);
  padding: 4px 10px;
}
.resource-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 28px;
  color: var(--sauge);
}
.resource-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 22px;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--foret);
  font-variation-settings: "opsz" 22;
}
.resource-card__text {
  font-size: 15.5px;
  line-height: 1.65;
  color: rgba(28, 42, 32, 0.65);
  margin-bottom: 28px;
}

/* -------------------- INSTAGRAM -------------------- */
.instagram {
  padding: 120px 0;
  background-color: var(--sauge-deep);
}
.instagram__intro {
  font-size: 17px;
  color: rgba(147, 166, 137, 0.8);
  max-width: 480px;
  margin-bottom: 48px;
  line-height: 1.7;
}
.instagram__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(147, 166, 137, 0.15);
  margin-bottom: 44px;
}
.instagram__post {
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-right: 1px solid rgba(147, 166, 137, 0.15);
}
.instagram__post:last-child { border-right: none; }
.instagram__post::after {
  content: '↗ Voir sur Instagram';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background-color: rgba(28, 42, 32, 0.72);
  color: var(--cream);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram__post:hover::after { opacity: 1; }
.instagram__post:hover { opacity: 1; }

.instagram__post--foret  { background-color: var(--foret); }
.instagram__post--sable  { background-color: var(--sable); }
.instagram__post--sauge  { background-color: var(--sauge); }
.instagram__post--cream  { background-color: var(--cream); }

.instagram__post-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.instagram__post-label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.instagram__post-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 18px;
  line-height: 1.25;
  font-variation-settings: "opsz" 18;
}
.instagram__post-handle {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.7;
}

/* Color variants for post text */
.instagram__post--foret .instagram__post-label,
.instagram__post--foret .instagram__post-title,
.instagram__post--foret .instagram__post-handle { color: var(--sauge-soft); }
.instagram__post--foret .instagram__post-title  { color: var(--cream); font-style: italic; }

.instagram__post--sable .instagram__post-label,
.instagram__post--sable .instagram__post-title,
.instagram__post--sable .instagram__post-handle { color: var(--foret); }
.instagram__post--sable .instagram__post-title  { font-style: italic; }

.instagram__post--sauge .instagram__post-label,
.instagram__post--sauge .instagram__post-title,
.instagram__post--sauge .instagram__post-handle { color: var(--cream); }
.instagram__post--sauge .instagram__post-title  { font-style: italic; }

.instagram__post--cream .instagram__post-label,
.instagram__post--cream .instagram__post-handle { color: var(--sauge); }
.instagram__post--cream .instagram__post-title  { color: var(--foret); font-style: italic; }

.instagram__cta {
  display: flex;
  gap: 20px;
}

/* -------------------- NEWSLETTER -------------------- */
.newsletter {
  padding: 80px 0;
  background-color: var(--cream);
}
.newsletter__box {
  background-color: var(--ivoire);
  padding: 64px 72px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  border: 1px solid rgba(92, 115, 86, 0.1);
}
.newsletter__clover {
  display: block;
  font-size: 24px;
  color: var(--sauge);
  margin-bottom: 20px;
  font-family: Georgia, serif;
}
.newsletter__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 34px;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
  font-variation-settings: "opsz" 34;
}
.newsletter__text {
  font-size: 16px;
  color: rgba(28, 42, 32, 0.7);
  margin-bottom: 36px;
  line-height: 1.7;
}
.newsletter__form {
  display: flex;
  gap: 0;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter__input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid rgba(92, 115, 86, 0.3);
  border-right: none;
  background-color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  color: var(--foret);
  outline: none;
  border-radius: 0;
  transition: border-color 0.25s ease;
}
.newsletter__input::placeholder { color: rgba(92, 115, 86, 0.5); }
.newsletter__input:focus { border-color: var(--sauge); }

/* -------------------- CONTACT -------------------- */
/* -------------------- SECTION CLOVER BG (reusable) -------------------- */
.section-clover-bg {
  position: absolute;
  width: 520px;
  color: var(--sauge-soft);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}
.section-clover-bg svg { width: 100%; height: auto; display: block; }
.section-clover-bg--left  { left: -120px; bottom: -60px; }
.section-clover-bg--right { right: -120px; top: 20px; }

/* -------------------- CONTACT -------------------- */
.contact {
  padding: 100px 0;
  background-color: var(--ivoire);
  position: relative;
  overflow: hidden;
}
.contact__clover-bg {
  position: absolute;
  right: -120px;
  bottom: -80px;
  width: 580px;
  color: var(--sauge-soft);
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
}
.contact__clover-bg svg { width: 100%; height: auto; display: block; }
.contact__header {
  max-width: 600px;
  margin-bottom: 52px;
}
.contact__intro {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(28, 42, 32, 0.70);
}

/* Deux panneaux côte à côte */
.contact__panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--sable);
  margin-bottom: 40px;
}
.contact__panel {
  overflow: hidden;
}
.contact__panel:first-child {
  border-right: 1px solid var(--sable);
}
.contact__panel-eyebrow {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sauge);
  padding: 20px 28px;
  border-bottom: 1px solid var(--sable);
}
/* Formulaire intégré */
.contact__form-wrap {
  padding: 32px 28px 36px;
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact__form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.contact__form-label {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sauge);
}
.contact__form-input,
.contact__form-textarea {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--foret);
  background-color: var(--cream);
  border: 1px solid var(--sable);
  padding: 13px 16px;
  outline: none;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
.contact__form-input::placeholder,
.contact__form-textarea::placeholder { color: rgba(28,42,32,0.35); }
.contact__form-input:focus,
.contact__form-textarea:focus {
  border-color: var(--sauge);
  background-color: #fff;
}
.contact__form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.contact__form-submit {
  width: 100%;
  padding: 16px 24px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cream);
  background-color: var(--foret);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.contact__form-submit:hover { background-color: var(--sauge-deep); }
.contact__form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.contact__form-success {
  display: none;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  color: var(--sauge);
  text-align: center;
  padding: 8px 0;
  font-variation-settings: "opsz" 16;
}
.contact__form-success.visible { display: block; }

/* Coordonnées en bas */
.contact__details-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 36px;
  padding-top: 32px;
  border-top: 1px solid var(--sable);
}
.contact__detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  color: var(--sauge-deep);
}
.contact__detail svg { flex-shrink: 0; color: var(--sauge); }
.contact__social-link {
  color: var(--sauge-deep);
  transition: color 0.2s ease;
}
.contact__social-link:hover { color: var(--sauge); }

/* -------------------- FOOTER -------------------- */
.footer {
  background-color: var(--foret);
  padding: 80px 0 40px;
  color: var(--sauge-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(147, 166, 137, 0.12);
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer__clover {
  font-size: 24px;
  color: var(--sauge-soft);
  font-family: Georgia, serif;
  line-height: 1;
}
.footer__brand-name {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 20px;
  color: var(--cream);
  display: block;
  line-height: 1.1;
  font-variation-settings: "opsz" 20;
}
.footer__brand-name em {
  font-style: italic;
  color: var(--sauge-soft);
}
.footer__brand-sub {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sauge);
  display: block;
  margin-top: 2px;
}
.footer__tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 17px;
  color: rgba(244, 237, 224, 0.7);
  margin-bottom: 16px;
  font-variation-settings: "opsz" 17;
}
.footer__legal {
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(147, 166, 137, 0.5);
  max-width: 380px;
}
.footer__nav h4 {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sauge-soft);
  margin-bottom: 20px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__nav a {
  font-size: 15.5px;
  color: rgba(147, 166, 137, 0.75);
  transition: color 0.2s ease;
}
.footer__nav a:hover { color: var(--cream); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 11.5px;
  color: rgba(147, 166, 137, 0.4);
}

/* -------------------- ANIMATIONS -------------------- */
[data-parallax] { will-change: transform; }

[data-animate] {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
/* Titres de section : glissement plus ample */
.section-title[data-animate] {
  transform: translateY(48px);
}

/* -------------------- RESPONSIVE — tablet -------------------- */
@media (max-width: 1024px) {
  .container { padding: 0 28px; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(2n) { border-right: none; }
  .service-card:nth-child(n+3) { border-top: 1px solid rgba(28, 42, 32, 0.12); }

  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-top: 60px;
  }
  .hero__rule { margin: 32px auto 24px; }
  .hero__tagline { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__clover-bg { width: 400px; right: -40px; top: 30px; }
  .section-clover-bg { width: 380px; }
  .hero__portrait-card { left: -16px; bottom: -20px; }

  .promise__grid { grid-template-columns: repeat(2, 1fr); }
  .promise__item { padding: 28px 28px; border-bottom: 1px solid rgba(92,115,86,0.12); }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__image-wrapper { max-width: 420px; margin: 0 auto; }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__item { padding: 28px 24px; border-bottom: 1px solid rgba(147,166,137,0.15); }

  .services__header { flex-direction: column; align-items: flex-start; }
  .services__sub { max-width: 100%; }
  .services__grid { grid-template-columns: 1fr; border-bottom: none; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(147,166,137,0.2); }
  .service-card:last-child { border-bottom: none; }

  .faq__layout { flex-direction: column; gap: 48px; }
  .faq__intro { flex: none; }

  .testimonials__grid,
  .resources__grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card,
  .resource-card {
    border-right: none;
    border-bottom: 1px solid rgba(92,115,86,0.12);
  }
  .testimonial-card:last-child,
  .resource-card:last-child { border-bottom: none; }

  .instagram__grid { grid-template-columns: repeat(2, 1fr); }
  .instagram__post { border-bottom: 1px solid rgba(147,166,137,0.15); }

  .contact__panels { grid-template-columns: 1fr; }
  .contact__panel:first-child { border-right: none; border-bottom: 1px solid var(--sable); }
  .contact__form-row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* -------------------- RESPONSIVE — mobile -------------------- */
@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: rgba(244, 237, 224, 0.98);
    backdrop-filter: blur(14px);
    flex-direction: column;
    padding: 24px 28px;
    gap: 20px;
    border-bottom: 1px solid rgba(92, 115, 86, 0.12);
  }
  .nav__menu.active { display: flex; }
  .nav__toggle { display: flex; }
  .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  .hero__title { letter-spacing: -2px; }
  .hero__clover-bg { width: 240px; right: -20px; top: 80px; }
  .section-clover-bg { width: 220px; }
  .contact__clover-bg { width: 280px; }
  .hero__scroll { display: none; }

  .promise__grid { grid-template-columns: 1fr; }

  .newsletter__box { padding: 44px 24px; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { border-right: 1px solid rgba(92,115,86,0.3); border-bottom: none; }

  .instagram__grid { grid-template-columns: 1fr; }
  .instagram__cta { flex-direction: column; align-items: flex-start; }

  .hero__portrait-card { display: none; }
}

@media (max-width: 480px) {
  .stats__grid { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
}
