@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500;600&family=Instrument+Sans:wght@400;500;600&family=Instrument+Serif:ital@0;1&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --bg: #fff;
  --card: #ffee8c;
  --ink: #27314f;
  --ink-soft: #556089;
  --sage: #59c264;
  --sage-dark: #7ecf97;
  --sun-gold: #ffee8c;
  --sun-orange: #ffee8c;
  --sun-red: #ffee8c;
  --sun-violet: #8f5bab;
  --lavender: #d3d3ff;
  --violet: #7f7ff5;
  --rose: #e6cee8;
  --beige: #d8cfbe;
  --camel: #a8825d;
  --cacao: #5a2d1b;
  --paper: #fffdf2;
  --section-space: 6rem;
  --section-space-mobile: 4.5rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Instrument Sans", sans-serif;
  background: var(--bg);
  color: var(--ink);
}

.page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #e9e1ff 0%, #f5f0ff 58%, rgba(255, 255, 255, 0) 100%) top / 100% 760px no-repeat,
    var(--bg);
}

.topbar {
  max-width: 1300px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand__text {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  line-height: 1;
  font-style: italic;
  letter-spacing: -0.01em;
}

.brand__logo {
  display: block;
  height: 60px;
  width: auto;
}

.topnav {
  display: flex;
  gap: 34px;
}

.topnav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 16px;
}

.topactions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topactions__linkedin {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.topactions__linkedin img {
  width: 50px;
  height: 50px;
  display: block;
}

.topactions__linkedin::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.26s ease, opacity 0.2s ease;
}

.burger.is-open span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.burger.is-open span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-menu {
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.is-open {
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu__nav {
  display: grid;
  gap: 4px;
  padding: 0 24px 10px;
}

.mobile-menu__nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 17px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(37, 33, 28, 0.09);
}

.mobile-menu__actions {
  display: flex;
  gap: 10px;
  padding: 4px 24px 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  box-shadow: none;
  transition: all 0.24s ease;
  outline: none;
}

.btn--soft {
  background: var(--sage);
  color: #ffffff;
  outline: none;
}

.btn--dark {
  background: var(--violet);
  color: var(--paper);
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 120px;
}




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

.hero__eyebrow {
  letter-spacing: 0.28em;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 30px;
}

.hero__title {
  font-family: "Instrument Serif", serif;
  font-size: clamp(42px, 6.4vw, 72px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.015em;
  font-style: italic;
  margin-bottom: 30px;
}

.hero__line-static,
.hero__line-dynamic-wrap {
  display: block;
}

.hero__line-static {
  font-family: "Sentient", "Instrument Serif", serif;
  color: #2b2522;
}

.hero__line-dynamic {
  display: inline-block;
  min-height: 1.15em;
  margin-top: 0.08em;
  font-family: "Caveat", cursive;
  font-size: 0.92em;
  font-style: normal;
  color: var(--ink);
  letter-spacing: 0.01em;
  border-right: 2px solid rgba(211, 211, 255, 0.78);
  padding-right: 0.08em;
  animation: blink-caret 0.9s steps(1) infinite;
}

@keyframes blink-caret {
  0%, 49% {
    border-right-color: rgba(211, 211, 255, 0.78);
  }
  50%, 100% {
    border-right-color: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__line-dynamic {
    animation: none;
    border-right: none;
  }
}

.hero__subtitle {
  font-size: clamp(16px, 1.6vw, 17px);
  color: var(--ink-soft);
  line-height: 1.35;
  margin-bottom: 36px;
}

.hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 42px;
}

.btn--hero {
  min-width: 180px;
}

.hero .btn--soft {
  background: var(--sage);
  color: #ffffff;
}

.social-proof {
  display: grid;
  place-items: center;
  gap: 14px;
    margin-bottom: 1.5rem;
}

.avatars {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.avatars img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 50%;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.rating {
  font-size: 16px;
  color: var(--ink-soft);
}

.rating__star {
  color: var(--card);
  text-shadow: 0 1px 0 rgba(90, 45, 27, 0.25);
}

.marquee {
  width: 100%;
  overflow: hidden;
  margin-top: -5rem;
  padding: 34px 0 0;
}

.trust-logos {
  padding: 6px 0 12px;
}

.trust-logos__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trust-logos__inner .tag {
  margin: 0 auto 18px;
}

.trust-logos__carousel {
  position: relative;
  overflow: hidden;
}

.trust-logos__carousel::before,
.trust-logos__carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(24px, 5vw, 80px);
  z-index: 2;
  pointer-events: none;
}

.trust-logos__carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.trust-logos__carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, rgba(255, 255, 255, 0) 100%);
}

.trust-logos__track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: logos-scroll 36s linear infinite;
}

.trust-logos__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 178px;
  height: 74px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(37, 33, 28, 0.12);
  background: rgba(255, 255, 255, 0.78);
}

.trust-logos__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.trust-logos__fallback {
  display: none;
  color: #3e372d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.25;
}

.trust-logos--reviews {
  margin-top: 26px;
}

.trust-logos--reviews .trust-logos__item {
  width: 230px;
  height: 96px;
  padding: 8px 10px;
  border: none;
  border-radius: 0;
  background: transparent;
}

.trust-logos--reviews .trust-logos__img {
  max-height: 84px;
}

.trust-logos--reviews .trust-logos__track {
  animation-direction: reverse;
}

@keyframes logos-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 6px));
  }
}

.marquee__track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: slide 80s linear infinite;
}

.marquee__track img {
  width: 320px;
  height: 280px;
  aspect-ratio: 8 / 7;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 10px;
  display: block;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}


@media (max-width: 1100px) {
  .topbar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding-top: 40px;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 14px 16px;
    justify-content: space-between;
  }

  .topnav,
  .topactions {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .brand__text {
    font-size: 24px;
  }

  .brand__logo {
    height: 48px;
  }

  .mobile-menu__actions {
    flex-direction: column;
  }

  .hero__subtitle br {
    display: none;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn--hero {
    width: min(92vw, 320px);
  }

  .marquee__track img {
    width: 240px;
    height: 170px;
    aspect-ratio: 24 / 17;
  }

  .trust-logos__inner {
    padding: 0 16px;
  }

  .trust-logos__item {
    width: 154px;
    height: 68px;
    padding: 8px 12px;
  }

  .trust-logos--reviews .trust-logos__item {
    width: 190px;
    height: 84px;
    padding: 6px 8px;
  }

  .trust-logos--reviews .trust-logos__img {
    max-height: 72px;
  }
}

.about-story {
  margin-top: 36px;
  padding-top: 7rem;
  overflow: hidden;
}

.about-story__content {
  max-width: 1300px;
  margin: 0 auto;
  padding: 24px 46px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}


.about-story__text h2 {
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  color: #23342a;
  letter-spacing: -0.01em;
  line-height: 0.98;
  font-size: clamp(36px, 4.4vw, 68px);
  margin-bottom: 18px;
  max-width: 20ch;
}

.about-story__text h2 .word-violet {
  color: var(--violet);
}

.about-story__text p {
  color: #4b4b4b;
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.5;
  max-width: 64ch;
  margin-bottom: 18px;
}

.about-story__more {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-6px);
  transition: max-height 420ms ease, opacity 320ms ease, transform 320ms ease;
}

.about-story__more.is-open {
  opacity: 1;
  transform: translateY(0);
}

.about-story__toggle {
  border: none;
  background: transparent;
  color: var(--violet);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin: 2px 0 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.about-story__actions {
  margin-top: 10px;
}

.about-story__visual {
  position: relative;
  min-height: clamp(420px, 58vw, 840px);
}

.about-story__main-photo {
  width: min(80%, 420px);
  height: clamp(340px, 46vw, 520px);
  object-fit: cover;
  display: block;
  margin-left: auto;
  box-shadow: 0 26px 42px rgba(22, 18, 15, 0.18);
  transform: rotate(-4deg);
  border-radius: 10px;
}

.about-story__side-photo {
  position: absolute;
  right: -2%;
  bottom: 20%;
  width: min(50%, 350px);
  height: clamp(220px, 28vw, 390px);
  object-fit: cover;
  box-shadow: 0 22px 34px rgba(22, 18, 15, 0.14);
  transform: rotate(8deg);
  border-radius: 10px;
}

@media (max-width: 980px) {
  .about-story__content {
    grid-template-columns: 1fr;
  }

  .about-story__text h2 {
    max-width: 100%;
  }

  .about-story__visual {
    width: min(760px, 100%);
    margin: 0 auto;
    min-height: 520px;
  }

  .about-story__main-photo {
    margin: 0 auto;
    width: min(82%, 440px);
    transform: rotate(-2.5deg);
  }

  .about-story__side-photo {
    right: 4%;
    width: min(40%, 220px);
  }

}

@media (max-width: 640px) {
  .about-story__content {
    padding: 22px 16px 34px;
  }

  .about-story__main-photo {
    width: 100%;
    height: 450px;
    transform: none;
    box-shadow: none;
  }

  .about-story__side-photo {
    display: none;
  }
}

.quote-focus {
  padding: 6rem 20px;
  text-align: center;
}

.quote-focus__card {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 16px;
  isolation: isolate;
}

.quote-focus__card::before {
  content: "“";
  position: absolute;
  left: clamp(10px, 2vw, 22px);
  top: clamp(-26px, -2vw, -12px);
  font-family: "Instrument Serif", serif;
  font-size: clamp(120px, 18vw, 320px);
  line-height: 0.8;
  color: rgba(127, 127, 245, 0.24);
  z-index: -1;
  pointer-events: none;
}

.quote-focus__text {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.2;
  color: #2d2723;
  text-wrap: balance;
}

.quote-focus__author {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--violet);
}

@media (max-width: 640px) {
  .quote-focus {
    padding: 6rem 16px;
  }

  .quote-focus__card {
    padding: 18px 14px 16px;
  }
}

.parcours-band {
  margin-top: -3.5rem;
  margin-bottom: 7rem;
  padding: 12px 20px;
}

.parcours-band__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(37, 33, 28, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.parcours-item {
  min-height: 210px;
  padding: 30px 28px 26px;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.parcours-item + .parcours-item {
  border-left: 1px solid rgba(37, 33, 28, 0.1);
}

.parcours-item__num {
  margin: 0 0 14px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(32px, 2.9vw, 48px);
  line-height: 1;
  font-style: italic;
  color: #1f9f57;
  letter-spacing: -0.02em;
}

.parcours-item__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.58;
  color: #453d32;
}

@media (max-width: 980px) {
  .parcours-band__inner {
    grid-template-columns: 1fr;
  }

  .parcours-item + .parcours-item {
    border-left: 0;
    border-top: 1px solid rgba(37, 33, 28, 0.1);
  }
}

@media (max-width: 640px) {
  .parcours-band {
    margin-top: -2rem;
    margin-bottom: 5rem;
    padding: 10px 16px;
  }

  .parcours-item {
    min-height: 0;
  }
}

.scroll-writing {
  width: 100%;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  display: none;
}

.scroll-writing__text {
  margin: 0;
  min-height: 1.4em;
  font-family: "Caveat", cursive;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.01em;
  display: inline-block;
  padding-right: 0.08em;
  border-right: 2px solid rgba(211, 211, 255, 0.85);
  animation: typing-caret 0.85s steps(1) infinite;
}

@keyframes typing-caret {
  0%, 49% { border-right-color: rgba(211, 211, 255, 0.85); }
  50%, 100% { border-right-color: transparent; }
}


.services {
  padding: 7.5rem 20px 90px;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 0.96;
  font-weight: 400;
  text-align: center;
  font-style: italic;
  color: #2b2522;
  margin-bottom: 4rem;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.services__intro {
  margin: -2.6rem auto 2.4rem;
  max-width: 62ch;
  text-align: center;
  color: #534a3f;
  font-size: 16px;
  line-height: 1.5;
}

.services__tag {
  display: table;
  margin: 0 auto 2.2rem;
  padding: 10px 22px;
  background: #47b572;
  color: #f4fff8;
  border-radius: 999px;
  font-family: "Inter", "Instrument Sans", sans-serif;
  font-size: 14px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4rem;
}

.services__stack {
  display: grid;
  gap: 64px;
}

.service-panel {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 38px);
  padding-bottom: 14px;
}

.service-panel--reverse {
  flex-direction: row-reverse;
}

.service-panel__media {
  flex: 0 0 43%;
  display: flex;
  align-items: center;
  height: 360px;
  min-height: 360px;
  max-height: 360px;
}

.service-panel__media img {
  width: 100%;
  height: 100% !important;
  display: block;
  object-fit: cover;
  border-radius: 14px;
  transform: rotate(-1.5deg);
  transform-origin: center;
}

.service-panel--reverse .service-panel__media img {
  transform: rotate(1.5deg);
  margin: auto 0;
}

.service-panel__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(24px, 3.6vw, 46px);
}

.service-panel__audience {
  margin: 0 0 12px;
  font-family: "Inter", "Instrument Sans", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #47b572;
  font-weight: 600;
}

.service-panel h3 {
  margin: 0 0 14px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(30px, 3.2vw, 50px);
  line-height: 0.98;
  font-style: italic;
  font-weight: 400;
  color: #26211b;
}

.service-panel__text {
  margin: 0;
  color: #3f382f;
  line-height: 1.55;
  font-size: 17px;
}

.service-panel .btn {
  margin-top: 16px;
  width: fit-content;
}

@media (max-width: 980px) {
  .service-panel,
  .service-panel--reverse {
    flex-direction: column;
  }

  .services__stack {
    gap: 28px;
  }

  .service-panel__media {
    width: 100%;
    height: 280px;
    min-height: 280px;
    max-height: 280px;
  }

  .service-panel__media img {
    height: 100% !important;
    transform: none;
  }

  .service-panel--reverse .service-panel__media img {
    transform: none;
    height: 100% !important;
    margin-bottom: 0;
  }

  .service-panel {
    padding-bottom: 0;
  }
}

@media (max-width: 760px) {
  .services {
    padding: 5.5rem 16px 60px;
  }

  .services__intro {
    margin-top: -1.8rem;
  }

  .service-panel__content {
    padding: 20px 16px 20px;
  }
}

.method-section {
  padding: 60px 20px 90px;
}

.method-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.tag{
display: table;
  padding: 10px 20px;
  border-radius: 999px;
  background: #47b572;
  color: #f4fff8;
  font-family: "Inter", "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
    margin-bottom: 2rem;
  
}

.method-section__tag {
  display: table;
  margin: 0 auto 14px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #47b572;
  color: #f4fff8;
  font-family: "Inter", "Instrument Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.method-section h2 {
  margin: 0 auto;
  max-width: 24ch;
  text-align: center;
  font-family: "Instrument Serif", serif;
  font-size: clamp(34px, 4.8vw, 66px);
  line-height: 0.95;
  font-style: italic;
  font-weight: 400;
  color: #29231e;
}

.method-section__intro {
  margin: 18px auto 44px;
  max-width: 62ch;
  text-align: center;
  color: #50473c;
  line-height: 1.5;
}

.method-timeline {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 8px 0 8px;
}

.method-section__cta {
  margin: 26px 0 0;
  text-align: center;
}


.method-timeline__line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(211, 211, 255, 0.2);
}

.method-timeline__line-progress {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, #8f5bab 0%, #adebb3 100%);
  transform-origin: top center;
  transform: scaleY(0);
}

.method-step {
  position: relative;
  width: calc(50% - 42px);
  padding: 18px 20px;
  margin-bottom: 14px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(38, 33, 27, 0.08);
  border-radius: 12px;
}

.method-step:nth-of-type(odd) {
  margin-right: auto;
  transform: rotate(-1.2deg);
}

.method-step:nth-of-type(even) {
  margin-left: auto;
  transform: rotate(1.2deg);
}

.method-step__num {
  margin: 0 0 8px;
  font-family: "Inter", "Instrument Sans", sans-serif;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--violet);
}

.method-step__media {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  margin: 12px 0 0;
}

.method-step h3 {
  margin: 0 0 8px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 0.95;
  font-style: italic;
  font-weight: 400;
  color: #2c261f;
}

.method-step p {
  margin: 0;
  color: #4a4136;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .method-section {
    padding: 36px 16px 70px;
  }

  .method-timeline {
    padding-left: 0;
  }

  .method-timeline__line {
    display: none;
  }

  .method-step,
  .method-step:nth-of-type(odd),
  .method-step:nth-of-type(even) {
    width: 100%;
    margin: 0 0 12px;
    transform: none !important;
  }

}

.reviews-section {
  padding: 6rem 0;
}

.reviews-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.reviews-section h2 {
  margin: 0 auto 26px;
  max-width: 24ch;
  text-align: center;
  font-family: "Instrument Serif", serif;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 0.96;
  font-style: italic;
  font-weight: 400;
  color: #2b2522;
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 3rem;
}

.reviews-carousel::before,
.reviews-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(28px, 6vw, 92px);
  z-index: 3;
  pointer-events: none;
}

.reviews-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(255, 255, 227, 0) 100%);
}

.reviews-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg) 0%, rgba(255, 255, 227, 0) 100%);
}

.reviews-carousel__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: reviews-scroll 42s linear infinite;
}

.review-card {
  --review-card-bg: rgba(255, 255, 255, 0.72);
  width: min(76vw, 360px);
  background: var(--review-card-bg);
  border: 1px solid rgba(37, 33, 28, 0.1);
  border-radius: 14px;
  padding: 18px 18px 16px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card__text {
  margin: 0;
  color: #3f382f;
  line-height: 1.5;
  font-size: 16px;
}

.review-card__full[hidden] {
  display: none;
}

.review-card__toggle {
  margin-top: 10px;
  align-self: flex-start;
  border: none;
  background: transparent;
  color: var(--violet);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.review-card__footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--review-card-bg);
  color: #2f2821;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(47, 40, 33, 0.14);
  flex-shrink: 0;
}

.review-card__author {
  margin: 0;
}

.review-card__name {
  margin: 0;
  font-family: "Instrument Serif", serif;
  font-size: 17px;
  line-height: 1;
  font-style: italic;
  color: #2f2821;
  font-weight: 400;
}

.review-card__role {
  margin: 2px 0 0;
  font-size: 12px;
  color: #5b5348;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel__track {
    animation: none;
  }
}

.faq-section {
  padding: 64px 20px 90px;
}

.faq-section__inner {
  max-width: 780px;
  margin: 0 auto;
}

.faq-section h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 0.96;
  font-weight: 400;
  text-align: center;
  font-style: italic;
  color: #2b2522;
  max-width: 30ch;
  margin-left: auto;
  margin-right: auto;
}

.faq-section__subtitle {
  margin: 30px 0 30px;
  text-align: center;
  font-size: 16px;
  color: #343129;
}

.faq-card {
  border-radius: 20px;
  background: #e9e5df;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-card.is-open {
  background: #f5f0de;
}

.faq-card__q {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  color: #2a2821;
  font-size: 18px;
  line-height: 1.2;
}

.faq-card.is-open .faq-card__q {
  color: var(--ink);
}

.faq-card__icon {
  font-size: 22px;
  line-height: 1;
  min-width: 24px;
  text-align: center;
  color: inherit;
}

.faq-card__a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.55s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.35s ease;
}

.faq-card.is-open .faq-card__a {
  opacity: 1;
}

.faq-card__a p {
  margin: 0;
  padding: 0 22px 22px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
  color: #3f3c34;
}

.faq-card__a ul {
  margin: 0;
  padding: 0 22px 18px 42px;
}

.faq-card__a li {
  margin-bottom: 8px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.35;
  color: #3f3c34;
}

.faq-card.is-open .faq-card__a p {
  color: var(--ink);
}

.cta-band {
  padding: 50px 20px 6rem;
}

.cta-band__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  border-radius: 16px;
  padding: clamp(24px, 4vw, 48px);
}


.cta-band h2 {
  margin: 0 auto 12px;
  max-width: 24ch;
  font-family: "Instrument Serif", serif;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 0.95;
  font-style: italic;
  font-weight: 400;
  color: #27211c;
}

.cta-band p {
  margin: 0 auto;
  max-width: 56ch;
  line-height: 1.45;
}

.cta-band .btn {
  margin-top: 18px;
}

.cta-band__photos {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-band__photos img {
  width: clamp(120px, 16vw, 190px);
  height: clamp(120px, 16vw, 280px);
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(24, 20, 16, 0.14);
}

.cta-band__photos img:nth-child(1) {
  transform: rotate(-11deg) translateX(12px);
}

.cta-band__photos img:nth-child(2) {
  transform: translateY(-8px);
  z-index: 2;
}

.cta-band__photos img:nth-child(3) {
  transform: rotate(11deg) translateX(-12px);
}

.footer-main {
  background: var(--bg);
  color: var(--ink);
  padding: 7rem 20px 50px;
}

.footer-main__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.footer-main__intro h2 {
  margin: 0 0 10px;
  font-family: "Instrument Serif", serif;
  font-size: clamp(32px, 4.4vw, 60px);
  line-height: 0.96;
  font-weight: 400;
  font-style: italic;
  color: #f4eee4;
  text-align: center;
}

.footer-main__intro p {
  margin: 0 0 18px;
  color: #d6cdbf;
  font-size: 15px;
  line-height: 1.5;
  max-width: 44ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contact-form__field {
  display: grid;
  gap: 6px;
}

.contact-form__field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  border: 1px solid rgba(211, 211, 255, 0.4);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  border-radius: 10px;
  padding: 12px 13px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 130px;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: rgba(211, 211, 255, 0.8);
}

.contact-form__submit {
  justify-self: center;
  margin-top: 4px;
  cursor: pointer;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.contact-form__submit:focus,
.contact-form__submit:active,
.contact-form__submit:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}

.contact-form__submit::-moz-focus-inner {
  border: 0;
}

.footer-main__meta {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-top: 6rem;
  text-align: center;
}

.footer-main__brand {
  font-family: "Instrument Serif", serif;
  font-size: 28px;
  font-style: italic;
  color: var(--ink);
}

.footer-main__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  justify-content: center;
}

.footer-main__links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
}

.footer-main__note {
  color: var(--ink-soft);
  font-size: 12px;
}

.footer-main__note a {
  color: var(--ink);
  text-decoration: none;
}

/* Palette harmonisee lavande/citron/violet/rose/beige/camel/cacao */
.brand__text,
.topnav a,
.mobile-menu__nav a,
.hero__line-static,
.hero__line-dynamic,
.hero__subtitle,
.rating,
.rating__star,
.about-story__text h2,
.about-story__text p,
.parcours-item__num,
.parcours-item__text,
.services h2,
.services__intro,
.service-panel__audience,
.service-panel h3,
.service-panel__text,
.method-section h2,
.method-section__intro,
.method-step h3,
.method-step p,
.reviews-section h2,
.review-card__text,
.review-card__name,
.review-card__role,
.faq-section h2,
.faq-section__subtitle,
.faq-card__q,
.faq-card__a p,
.cta-band h2,
.cta-band p,
.footer-main__intro h2,
.footer-main__intro p {
  color: var(--ink);
}

.topnav a:hover,
.mobile-menu__nav a:hover,
.footer-main__links a:hover {
  color: var(--violet);
}

.marquee__track img,
.about-story__main-photo,
.about-story__side-photo,
.method-step__media,
.cta-band__photos img {
  border: 1px solid rgba(168, 130, 93, 0.22);
}

.hero__line-dynamic {
  color: var(--violet);
  border-right-color: rgba(141, 78, 224, 0.72);
}

.services__tag,
.method-section__tag,
.tag {
  background: var(--sage);
  color: #ffffff;
  border: 1px solid rgba(126, 207, 151, 0.95);
}

.review-card,
.faq-card {
  background: rgba(255, 253, 242, 0.84);
  border-color: rgba(168, 130, 93, 0.22);
}

.faq-card {
  border: 1px solid rgba(38, 33, 27, 0.08);
}

.parcours-item,
.method-step {
  background: rgba(126, 207, 151, 0.1);
}

.parcours-item + .parcours-item {
  border-left: 1px solid rgba(126, 207, 151, 0.55);
}

@media (max-width: 980px) {
  .parcours-item + .parcours-item {
    border-top: 1px solid rgba(126, 207, 151, 0.55);
  }
}

.faq-card.is-open {
  background: rgba(122, 47, 242, 0.14);
  border-color: rgba(122, 47, 242, 0.5);
}

.faq-card__q {
  color: var(--ink);
}

.faq-card.is-open .faq-card__q {
  color: var(--violet);
}

.faq-card__icon {
  color: var(--violet);
}

.faq-card__a p {
  color: var(--ink-soft);
}

.faq-card__a li {
  color: var(--ink-soft);
}

.faq-card.is-open .faq-card__a p {
  color: var(--ink);
}

.faq-card.is-open .faq-card__a li {
  color: var(--ink);
}

.service-panel__content {
  background: transparent;
  border: none;
  border-radius: 0;
}

.parcours-item__num,
.service-panel__audience,
.method-step__num {
  color: var(--violet);
}

.review-card {
  box-shadow: 0 10px 26px rgba(90, 45, 27, 0.08);
}

.review-card:nth-child(3n + 1) {
  --review-card-bg: rgba(211, 211, 255, 0.36);
  background: var(--review-card-bg);
}

.review-card:nth-child(3n + 2) {
  --review-card-bg: rgba(216, 207, 190, 0.44);
  background: var(--review-card-bg);
}

.review-card:nth-child(3n) {
  --review-card-bg: rgba(230, 206, 232, 0.34);
  background: var(--review-card-bg);
}

.cta-band__inner {
  background: transparent;
  border: none;
}

.footer-main {
  background: linear-gradient(180deg, #ffffff 0%, #e9e1ff 100%);
  color: var(--ink);
}

.footer-main__intro h2,
.footer-main__brand {
  color: var(--violet);
}

.footer-main__intro p,
.footer-main__links a,
.footer-main__note,
.footer-main__note a,
.contact-form__field label {
  color: var(--ink);
}

.contact-form__field input,
.contact-form__field textarea {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(122, 47, 242, 0.25);
  color: var(--ink);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-color: rgba(122, 47, 242, 0.55);
}

.about-story,
.parcours-band,
.services,
.method-section,
.quote-focus,
.reviews-section,
.faq-section,
.cta-band {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.about-story,
.parcours-band {
  margin-top: 0;
  margin-bottom: 0;
}

.about-story {
  padding-bottom: 0;
}

.about-story + .parcours-band {
  padding-top: 0;
  padding-bottom: 6rem;
}

.quote-focus {
  padding-top: calc(var(--section-space) + 2rem);
}

@media (max-width: 640px) {
  .about-story,
  .parcours-band,
  .services,
  .method-section,
  .quote-focus,
  .reviews-section,
  .faq-section,
  .cta-band {
    padding-top: var(--section-space-mobile);
    padding-bottom: var(--section-space-mobile);
  }

  .about-story {
    padding-bottom: 0;
  }

  .about-story + .parcours-band {
    padding-top: 0;
    padding-bottom: 0;
  }

  .quote-focus {
    padding-top: calc(var(--section-space-mobile) + 1rem);
  }

  .cta-band__photos img:nth-child(1) {
    transform: rotate(-8deg) translateX(8px);
  }

  .cta-band__photos img:nth-child(3) {
    transform: rotate(8deg) translateX(-8px);
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__submit {
    justify-self: center;
  }
}
