@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-400i.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url("../fonts/satoshi-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url("../fonts/satoshi-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Satoshi;
  src: url("../fonts/satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Poppins;
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --terracotta: #c56242;
  --terracotta-dark: #a34c31;
  --navy: #27495e;
  --gold: #f2c27c;
  --mauve: #c9a3b6;
  --violet: #9c75f6;
  --plum: #7a4564;
  --cream: #fef5e7;
  --white: #ffffff;
  --ink: #1c2b33;
  --muted: #4d5d66;
  --line: rgba(39, 73, 94, 0.12);
  --shadow: 0 18px 40px rgba(39, 73, 94, 0.12);
  --radius: 10px;
  --wrap: 72rem;
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: Satoshi, system-ui, sans-serif;
  --font-btn: Poppins, Satoshi, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}

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

img {
  width: 100%;
}

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--terracotta);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--terracotta);
}

p {
  margin: 0 0 1rem;
}

.wrap {
  width: min(100% - 1.5rem, var(--wrap));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 1.5rem, 42rem);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0.8rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
  color: var(--white);
}

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

.eyebrow {
  font-family: var(--font-btn);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.eyebrow.light {
  color: var(--gold);
}

.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 40rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-family: var(--font-btn);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--plum);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--plum);
}

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--white);
}

.btn-secondary,
.btn-pop {
  background: var(--white);
  color: var(--navy);
}

.btn-secondary:hover,
.btn-pop:hover {
  background: var(--cream);
  color: var(--navy);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  box-shadow: 5px 5px 0 var(--plum);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-on-dark {
  background: var(--white);
  color: var(--navy);
}

.btn-on-dark:hover {
  background: var(--cream);
  color: var(--navy);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(254, 245, 231, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--navy);
}

.logo:hover {
  color: var(--terracotta);
}

.logo-mark {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: var(--terracotta);
  color: var(--white);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.85rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  font-family: var(--font-serif);
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
}

.btn-nav {
  margin: 0;
}

.hero,
.page-hero,
.section {
  padding: 3.5rem 0;
}

.hero {
  background:
    radial-gradient(circle at 82% 8%, rgba(201, 163, 182, 0.55), transparent 42%),
    radial-gradient(circle at 12% 88%, rgba(156, 117, 246, 0.18), transparent 36%),
    radial-gradient(circle at 80% 10%, rgba(242, 194, 124, 0.28), transparent 40%),
    var(--cream);
}

.hero-grid,
.split,
.foundatrice,
.contact-grid,
.why-grid,
.footer-grid {
  display: grid;
  gap: 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.4rem 0 1rem;
}

.micro-proof {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}

.hero-photo img,
.media-frame img,
.rounded-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.cards-3,
.cards-2,
.cards-4 {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.card,
.stat-card,
.panel-mauve {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card {
  border: 1px solid rgba(122, 69, 100, 0.14);
  box-shadow: 5px 5px 0 var(--plum);
}

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.card-num {
  font-family: var(--font-serif);
  color: var(--terracotta);
  font-size: 1.4rem;
}

.section-cream {
  background: var(--cream);
}

.section-mauve {
  background: var(--mauve);
}

.section-mauve h2,
.section-mauve .lede {
  color: var(--navy);
}

.section-terracotta {
  background: var(--terracotta);
  color: var(--cream);
}

.section-terracotta h2,
.section-terracotta h3,
.section-terracotta p {
  color: var(--cream);
}

.quote-list,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.quote-list li,
.check-list li {
  padding: 0.7rem 0 0.7rem 1.2rem;
  position: relative;
}

.check-list li {
  border-bottom: 1px solid var(--line);
}

.quote-list li::before,
.check-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--violet);
}

.overlap {
  position: relative;
}

.overlap-photo {
  position: relative;
}

.overlap-photo picture,
.overlap-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.overlap-photo img {
  aspect-ratio: 1;
  object-fit: cover;
}

.overlap-card {
  position: relative;
  z-index: 3;
  background: var(--white);
  padding: 1.6rem 1.45rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: -2.75rem 0 0 1.1rem;
}

.overlap-card h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin-bottom: 0.35rem;
}

.thoughts {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
}

.thoughts li {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--navy);
  padding: 0.5rem 0 0.5rem 1.15rem;
  position: relative;
}

.thoughts li::before {
  content: "«";
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: var(--violet);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1;
}

.founder {
  position: relative;
}

.founder-photo img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
}

.founder-card {
  position: relative;
  z-index: 2;
  background: var(--mauve);
  padding: 1.7rem 1.5rem 1.6rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: -3.25rem 0 0 1.25rem;
}

.founder-card .founder-title {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--cream);
  margin: 0 0 1rem;
}

.founder-card p {
  color: var(--navy);
  margin-bottom: 0.85rem;
}

.founder-card p:last-of-type {
  margin-bottom: 1.2rem;
}

.founder-card em {
  font-family: var(--font-serif);
  font-style: italic;
}

.why-layout {
  display: grid;
  gap: 2rem;
}

.why-intro {
  max-width: none;
}

.why-intro h2 {
  margin: 0;
  max-width: 22ch;
  color: var(--cream);
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.5vw, 1.95rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.why-duo {
  display: grid;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.why-item p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.65;
}

.section-terracotta .why-label {
  margin: 0 0 0.45rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--gold);
}

.quote-card p {
  font-size: 1.02rem;
  color: var(--ink);
  font-style: normal;
}

.quote-card .quote-resume {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.quote-card footer {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

#temoignages {
  background: var(--white);
}

.reviews-intro {
  margin-bottom: 2rem;
}

.reviews {
  display: grid;
  gap: 1rem;
}

.review {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.25rem;
  border: 1px solid rgba(122, 69, 100, 0.14);
  box-shadow: 5px 5px 0 var(--plum);
}

.review-feature {
  background: var(--mauve);
  padding: 1.7rem 1.6rem 1.5rem;
}

.review-feature .review-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.4vw, 1.7rem);
  line-height: 1.35;
  color: var(--navy);
}

.review-kicker {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy);
  margin: 0 0 0.65rem;
}

.review-quote {
  margin: 0 0 1rem;
  color: var(--ink);
}

.review footer {
  font-weight: 600;
  color: var(--terracotta);
}

.review-feature footer {
  color: var(--cream);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}


.cta-band {
  background: var(--navy);
  color: var(--cream);
  padding: 3rem 0;
}

.cta-band h2,
.cta-band .lede {
  color: var(--cream);
}

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

.cta-band-inner,
.cta-actions {
  display: grid;
  gap: 1.25rem;
}

.panel-mauve {
  background: var(--mauve);
}

.panel-mauve h2,
.panel-mauve p,
.panel-mauve .eyebrow {
  color: var(--navy);
}

.stats-grid {
  display: grid;
  gap: 1rem;
}

.stat {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--terracotta);
  margin: 0;
  line-height: 1;
}

.contact-form p {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-form label {
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--terracotta);
  outline-offset: 2px;
}

.hp {
  position: absolute;
  left: -9999px;
  height: 0;
  overflow: hidden;
}

.field-error {
  color: #9b2c2c;
  font-size: 0.88rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.alert {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.alert-ok {
  background: #e8f4ee;
}

.alert-error {
  background: #fdecea;
}

.legal h2 {
  margin-top: 2rem;
}

.page-error {
  min-height: 50vh;
  padding: 4rem 0;
  background: var(--cream);
}

.site-footer {
  background: #1b3342;
  color: #d7e0e6;
  padding: 3rem 0 1.5rem;
}

.site-footer a {
  color: var(--gold);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--cream);
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0.35rem 0;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--cream);
}

.footer-title {
  font-family: var(--font-btn);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--gold);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(254, 245, 231, 0.12);
  font-size: 0.88rem;
}

@media (min-width: 760px) {
  .wrap {
    width: min(100% - 2.5rem, var(--wrap));
  }

  .btn-nav {
    min-height: 2.6rem;
    padding: 0.45rem 1rem;
  }

  .hero-grid,
  .split,
  .foundatrice,
  .contact-grid,
  .why-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .why-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 4rem;
    align-items: start;
  }

  .why-duo {
    gap: 2rem;
    padding-left: 2.5rem;
    border-left: 1px solid rgba(254, 245, 231, 0.28);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid .review:nth-child(2) {
    transform: translateY(1.25rem);
  }


  .overlap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .overlap-photo {
    grid-column: 1;
    grid-row: 1;
    width: 92%;
  }

  .overlap-card {
    grid-column: 2;
    grid-row: 1;
    margin: 18% 0 0 -22%;
  }

  .founder {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

  .founder-photo {
    grid-column: 1;
    grid-row: 1;
    width: 90%;
  }

  .founder-card {
    grid-column: 2;
    grid-row: 1;
    margin: 22% 0 0 -24%;
  }

  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-2,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .cta-band-inner {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .hero,
  .page-hero,
  .section {
    padding: 5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
    box-shadow: 5px 5px 0 var(--plum);
  }

  .reviews-grid .review:nth-child(2) {
    transform: none;
  }
}
