@charset "UTF-8";
/*!
Theme Name: Aesthé
Theme URI: https://aesthe.ma
Author: Majjane Agency
Author URI: https://majjane.ma
Description: Custom WordPress theme for Aesthé beauty clinic
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: aesthe
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

body {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 400;
  color: #2c1309;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #f7f3ef;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.site-header__info-bar {
  background: #c05036;
  width: 100%;
}

.site-header__info-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 8vw, 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 11px;
  padding-bottom: 11px;
  gap: clamp(8px, 1vw, 16px);
}

.site-header__info-promo {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(11px, 0.83vw, 12px);
  font-weight: 300;
  color: #fffcf9;
  letter-spacing: 0.08em;
}
.site-header__info-promo a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-header__info-item {
  display: none;
}

.site-header__nav {
  backdrop-filter: blur(49.95px);
  -webkit-backdrop-filter: blur(49.95px);
  background: rgba(213, 216, 220, 0.4);
  width: 100%;
  transition: background 0.3s ease;
}

.site-header.is-scrolled .site-header__nav {
  background: rgba(247, 243, 239, 0.95);
  box-shadow: 0 2px 24px rgba(44, 40, 37, 0.08);
}

.site-header__nav-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 8vw, 120px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 3vw, 40px);
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 194px;
  height: 90px;
}
.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-header__logo-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  font-style: italic;
  color: #2c2825;
}

.site-header__menu {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 26px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__menu li {
  position: relative;
}
.site-header__menu li > a,
.site-header__menu li > button {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.5vw, 8px);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(12px, 1vw, 14.5px);
  font-weight: 500;
  color: #767676;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.site-header__menu li > a:hover,
.site-header__menu li > button:hover {
  color: #c05036;
}
.site-header__menu li > a .site-header__chevron,
.site-header__menu li > button .site-header__chevron {
  width: 10px;
  height: auto;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.site-header__menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  margin: 0;
  padding: clamp(8px, 1vw, 16px) 0;
  list-style: none;
  background: #fffcf9;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 14px 36px rgba(44, 40, 37, 0.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  z-index: 50;
}
.site-header__menu .sub-menu li {
  position: relative;
}
.site-header__menu .sub-menu a {
  display: block;
  padding: clamp(6px, 0.6vw, 10px) clamp(16px, 1.5vw, 24px);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(12px, 0.95vw, 14px);
  font-weight: 400;
  color: #2c2825;
  white-space: nowrap;
  transition: color 0.3s ease, background 0.3s ease;
}
.site-header__menu .sub-menu a:hover {
  color: #c05036;
  background: rgba(192, 80, 54, 0.06);
}
.site-header__menu > li:hover > .sub-menu,
.site-header__menu > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header__menu > li:hover > a .site-header__chevron,
.site-header__menu > li:focus-within > a .site-header__chevron {
  transform: rotate(180deg);
}
@media (max-width: 1024px) {
  .site-header__menu {
    display: none;
  }
  .site-header__menu.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fffcf9;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 3vw, 40px);
    z-index: 99;
    overflow-y: auto;
  }
  .site-header__menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: clamp(4px, 0.5vw, 8px) 0 clamp(8px, 1vw, 16px);
    text-align: center;
  }
  .site-header__menu .sub-menu a {
    color: #8c8b8b;
  }
}

.site-header__cta {
  flex-shrink: 0;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 18px);
  font-weight: 500;
  color: #fffcf9;
  background: #c05036;
  padding: clamp(10px, 1.1vw, 16px) clamp(20px, 2.2vw, 32px);
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.site-header__cta:hover {
  background: #a8432c;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(192, 80, 54, 0.3);
}
@media (max-width: 1024px) {
  .site-header__cta {
    display: none;
  }
}

.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 101;
}
.site-header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #2c2825;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__burger[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header__burger[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
.site-header__burger[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 1024px) {
  .site-header__burger {
    display: flex;
  }
}

.header-spacer {
  height: clamp(100px, 9vw, 130px);
}

.site-footer__inner {
  background: #2c2825;
  border-radius: 20px;
  overflow: hidden;
  margin: 0 clamp(16px, 3.47vw, 50px) clamp(16px, 3.47vw, 50px);
}

.site-footer__display {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 5.5vw, 80px) clamp(24px, 5.5vw, 80px) clamp(24px, 4vw, 48px);
  overflow: hidden;
}

.site-footer__display-left {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.5vw, 24px);
}

.site-footer__display-right {
  text-align: right;
  margin-top: clamp(-48px, -2.8vw, -16px);
}
@media (max-width: 768px) {
  .site-footer__display-right {
    text-align: left;
    margin-top: clamp(8px, 1vw, 16px);
  }
}

.site-footer__display-text {
  font-size: clamp(40px, 8.9vw, 128px);
  line-height: 1.05;
  color: #ffeee2;
  margin: 0;
  white-space: nowrap;
}
.site-footer__display-text--italic {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-style: italic;
}
.site-footer__display-text--bold {
  font-family: "Lato", Arial, sans-serif;
  font-weight: 600;
  font-style: normal;
}
@media (max-width: 768px) {
  .site-footer__display-text {
    white-space: normal;
  }
}

.site-footer__tagline {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: #f6f6f6;
  line-height: 1.5;
  max-width: clamp(160px, 15.5vw, 223px);
  margin: 0;
}

.site-footer__scroll-up {
  position: absolute;
  right: clamp(24px, 5.5vw, 80px);
  top: clamp(40px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: #ffffff;
}
.site-footer__scroll-up span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 500;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.site-footer__scroll-up svg {
  flex-shrink: 0;
  width: clamp(13px, 1.1vw, 16px);
  height: auto;
  transition: transform 0.3s ease;
}
.site-footer__scroll-up:hover svg {
  transform: translateY(-4px);
}
@media (max-width: 768px) {
  .site-footer__scroll-up {
    display: none;
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  padding: clamp(24px, 4vw, 48px) clamp(24px, 5.5vw, 80px);
}
@media (max-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
    gap: clamp(40px, 5vw, 64px);
  }
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.5vw, 24px);
}

.site-footer__col-titre {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(16px, 1.53vw, 22px);
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  line-height: 1;
}
.site-footer__col-titre--lg {
  font-size: clamp(18px, 2vw, 29px);
}

.site-footer__newsletter-form .wpcf7-form {
  display: flex;
  align-items: center;
  background: #fdfbff;
  border-radius: 10px;
  padding: 6px 6px 6px 32px;
  gap: clamp(8px, 1vw, 16px);
}
.site-footer__newsletter-form .wpcf7-form input[type=email],
.site-footer__newsletter-form .wpcf7-form input[type=text] {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  color: #2c2825;
  outline: none;
}
.site-footer__newsletter-form .wpcf7-form input[type=email]::placeholder,
.site-footer__newsletter-form .wpcf7-form input[type=text]::placeholder {
  color: #8c8b8b;
}
.site-footer__newsletter-form .wpcf7-form input[type=submit],
.site-footer__newsletter-form .wpcf7-form .wpcf7-submit {
  flex-shrink: 0;
  background: #c05036;
  color: #fffcf9;
  border: none;
  border-radius: 10px;
  padding: clamp(10px, 1.1vw, 16px) clamp(20px, 2.2vw, 32px);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  width: clamp(140px, 14.6vw, 210px);
  text-align: center;
  transition: background 0.3s ease;
}
.site-footer__newsletter-form .wpcf7-form input[type=submit]:hover,
.site-footer__newsletter-form .wpcf7-form .wpcf7-submit:hover {
  background: #a8432c;
}

.site-footer__form-wrap {
  display: flex;
  align-items: center;
  background: #fdfbff;
  border-radius: 10px;
  padding: 6px 6px 6px 32px;
  gap: clamp(8px, 1vw, 16px);
}
.site-footer__form-wrap span {
  flex: 1;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  color: #8c8b8b;
}

.site-footer__form-btn {
  flex-shrink: 0;
  background: #c05036;
  color: #fffcf9;
  border: none;
  border-radius: 10px;
  padding: clamp(10px, 1.1vw, 16px) clamp(20px, 2.2vw, 32px);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  width: clamp(140px, 14.6vw, 210px);
  text-align: center;
  transition: background 0.3s ease;
}
.site-footer__form-btn:hover {
  background: #a8432c;
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: clamp(6px, 0.65vw, 9.3px);
}

.site-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.site-footer__social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-footer__social-link:hover {
  opacity: 0.8;
}

.site-footer__quicklinks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4px, 0.5vw, 8px) clamp(12px, 2vw, 32px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__quicklinks li a {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: #fffcf9;
  text-decoration: none;
  line-height: 1.5;
  display: block;
  transition: color 0.3s ease;
}
.site-footer__quicklinks li a:hover {
  color: #c05036;
}

.site-footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.1vw, 16px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.7vw, 10px);
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: #fffcf9;
  line-height: 1.5;
}
.site-footer__contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__contact-item a:hover {
  color: #c05036;
}

.site-footer__contact-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.site-footer__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(24px, 5.5vw, 80px);
  flex-wrap: wrap;
  gap: clamp(16px, 1.5vw, 24px);
  min-height: 80px;
}
.site-footer__bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(24px, 5.5vw, 80px);
  right: clamp(24px, 5.5vw, 80px);
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 480px) {
  .site-footer__bar {
    flex-direction: column;
    align-items: flex-start;
    padding-top: clamp(16px, 1.5vw, 24px);
    padding-bottom: clamp(16px, 1.5vw, 24px);
  }
}

.site-footer__copyright {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 500;
  color: #ffffff;
}

.site-footer__privacy {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer__privacy:hover {
  color: #ffeee2;
}

.hero {
  position: relative;
  width: 100%;
  min-height: clamp(400px, 48.6vw, 700px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero__slide.is-active {
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  mix-blend-mode: hard-light;
  z-index: 1;
}

.hero__overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.84) 47.64%, rgba(255, 255, 255, 0) 100%);
  mix-blend-mode: hard-light;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: clamp(300px, 46.8vw, 674px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(8px, 0.7vw, 10px);
  padding-top: clamp(60px, 12.57vw, 181px);
  padding-bottom: clamp(60px, 12.57vw, 181px);
  padding-left: clamp(20px, 4vw, 40px);
  padding-right: clamp(20px, 4vw, 40px);
}

.hero__label {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: 600;
  color: #2c2825;
  line-height: 1.4;
}

.hero__titre {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(28px, 4.3vw, 62px);
  font-weight: 600;
  font-style: normal;
  color: #2c2825;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

.hero__description {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: #a4a4a4;
  line-height: 1.5;
  max-width: clamp(260px, 38vw, 547px);
  margin: 0;
  text-align: center;
}

.hero__ctas {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.76vw, 11px);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: clamp(10px, 1vw, 16px);
}

.hero__ctas .btn--primary {
  background: #c05036;
  color: #fffcf9;
  min-width: clamp(160px, 14.5vw, 210px);
  justify-content: center;
  border-radius: 10px;
  padding: clamp(12px, 1.1vw, 16px) clamp(20px, 2.2vw, 32px);
}
.hero__ctas .btn--primary:hover {
  background: #a8432c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 80, 54, 0.4);
}

.hero__ctas .btn--ghost {
  min-width: clamp(180px, 17.3vw, 249px);
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #c05036;
  color: #c05036;
  background: transparent;
  padding: clamp(12px, 1.1vw, 16px) clamp(20px, 2.2vw, 32px);
}
.hero__ctas .btn--ghost svg {
  stroke: #c05036;
  transition: transform 0.3s ease;
}
.hero__ctas .btn--ghost:hover {
  background: rgba(192, 80, 54, 0.06);
}
.hero__ctas .btn--ghost:hover svg {
  transform: translateX(4px);
}

.hero__dots {
  position: absolute;
  bottom: clamp(20px, 3vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(44, 40, 37, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.hero__dot.is-active {
  background: #c05036;
  transform: scale(1.3);
}
.hero__dot:hover {
  background: rgba(44, 40, 37, 0.5);
}

.counter {
  margin-top: clamp(32px, 4.86vw, 70px);
  margin-bottom: clamp(32px, 4.86vw, 70px);
}

.counter__container {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 4.86vw, 70px);
  padding-right: clamp(20px, 4.86vw, 70px);
  padding-top: clamp(32px, 4.86vw, 70px);
  padding-bottom: clamp(32px, 4.86vw, 70px);
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(160px, 17.15vw, 247px);
  border-top: 1px solid #cacaca;
  border-bottom: 1px solid #cacaca;
}

.counter__cta {
  position: absolute;
  top: -70px;
  right: 20px;
  transform: translateY(-30%);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 500;
  color: #fffcf9;
  background: #c05036;
  border-radius: 10px;
  padding: clamp(10px, 1vw, 14px) clamp(16px, 1.5vw, 24px);
  text-decoration: none;
  box-shadow: 0 8px 32px 0 rgba(196, 131, 92, 0.14);
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.3s ease;
}
.counter__cta svg {
  flex-shrink: 0;
}
.counter__cta:hover {
  background: #a8432c;
  box-shadow: 0 12px 32px 0 rgba(196, 131, 92, 0.25);
}
@media (max-width: 768px) {
  .counter__cta {
    position: static;
    transform: none;
    margin-bottom: clamp(16px, 1.5vw, 24px);
    align-self: flex-end;
  }
}

.counter__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}
@media (max-width: 1024px) {
  .counter__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(40px, 5vw, 64px);
  }
}
@media (max-width: 480px) {
  .counter__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(24px, 3vw, 40px);
  }
}

.counter__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(12px, 1.7vw, 24px);
}

.counter__number {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(28px, 3.9vw, 56px);
  font-weight: 600;
  color: #2c2825;
  line-height: 1.2;
  text-align: center;
  display: block;
}

.counter__label {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.53vw, 22px);
  font-weight: 500;
  color: #2c2825;
  line-height: normal;
  text-align: center;
  display: block;
}

.about {
  overflow: hidden;
}

.about__container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 8vw, 120px);
  display: grid;
  grid-template-columns: clamp(260px, 37.7vw, 543px) 1fr;
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}
@media (max-width: 1024px) {
  .about__container {
    grid-template-columns: 1fr;
    gap: clamp(40px, 5vw, 64px);
  }
}

.about__media {
  position: relative;
  width: clamp(260px, 37.7vw, 543px);
  aspect-ratio: 543/675;
  border-radius: 30px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 1024px) {
  .about__media {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
  }
}
@media (max-width: 480px) {
  .about__media {
    aspect-ratio: 4/3;
    border-radius: 16px;
  }
}

.about__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__video-placeholder {
  width: 100%;
  height: 100%;
  background: #f6f6f6;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.7vw, 24px);
}

.about__label {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 600;
  color: #8c7b72;
  line-height: 1.4;
  display: block;
}

.about__titre {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(26px, 3.33vw, 48px);
  font-weight: 600;
  font-style: normal;
  color: #2c2825;
  line-height: normal;
  margin: 0;
}

.about__description {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: #8c8b8b;
  line-height: 1.5;
  max-width: clamp(280px, 36.6vw, 527px);
}
.about__description p {
  margin: 0 0 clamp(8px, 1vw, 16px);
}
.about__description p:last-child {
  margin-bottom: 0;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  background: #c05036;
  border-radius: 10px;
  padding: clamp(10px, 1.1vw, 16px) clamp(20px, 2.2vw, 32px);
  width: clamp(200px, 19.8vw, 285px);
  text-decoration: none;
  text-align: center;
  align-self: flex-start;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.about__btn:hover {
  background: #a8432c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 80, 54, 0.3);
}
@media (max-width: 480px) {
  .about__btn {
    width: 100%;
  }
}

.section-technologies {
  padding: 80px 0;
  background: #f7f4ef;
}
@media (max-width: 768px) {
  .section-technologies {
    padding: 56px 0;
  }
}
@media (max-width: 480px) {
  .section-technologies {
    padding: 40px 0;
  }
}

.section-technologies__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-technologies__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .section-technologies__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .section-technologies__header {
    margin-bottom: 32px;
  }
}

.section-technologies__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 540px;
}

.section-technologies__label {
  color: #8C7B72;
  font-family: Lato;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  display: block;
}
@media (max-width: 480px) {
  .section-technologies__label {
    font-size: 14px;
  }
}

.section-technologies__title {
  color: #2C2825;
  text-align: left;
  font-size: 40px;
  font-weight: 600;
  margin: 0;
  line-height: 1.25;
}
@media (max-width: 768px) {
  .section-technologies__title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .section-technologies__title {
    font-size: 24px;
  }
}
.section-technologies__title em {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  color: #C05036;
}

.section-technologies__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Lato;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: #C05036;
  border-radius: 10px;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.section-technologies__cta:hover {
  background: #a5432c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 80, 54, 0.3);
}
@media (max-width: 900px) {
  .section-technologies__cta {
    align-self: flex-start;
  }
}

.section-technologies__body {
  width: 100%;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.service-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  width: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card:hover {
  background: #EDE7DF;
}
.service-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__image img {
  transform: scale(1.08);
}
.service-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: #333;
}
.service-card__content {
  padding: 20px;
}
@media (max-width: 480px) {
  .service-card__content {
    padding: 16px;
  }
}
.service-card__title {
  font-size: 17px;
  margin: 0 0 8px;
  color: #1e1e1e;
}
.service-card__desc {
  font-size: 14px;
  color: #8a8a8a;
  margin: 0 0 16px;
  line-height: 1.5;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #1e1e1e;
  text-decoration: none;
  border-top: 1px solid #eee;
  padding-top: 14px;
  width: 100%;
}
.service-card__link:hover {
  color: #c1613f;
}

.services {
  overflow: hidden;
}

.services__container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 8vw, 120px);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(48px, 6vw, 80px);
}

.services__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(24px, 3vw, 48px);
}

.services__label {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 600;
  color: #8c7b72;
  line-height: 1.4;
  display: block;
}

.services__titre {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(26px, 3.33vw, 48px);
  font-weight: 600;
  font-style: normal;
  color: #2c2825;
  line-height: normal;
  margin: 12px 0 16px;
}
.services__titre span {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #c05036;
}

.services__subtitle {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  color: #8c7b72;
  line-height: 1.5;
  margin: 0;
}

.services__body {
  display: grid;
  grid-template-columns: clamp(280px, 40.3vw, 581px) 1fr;
  gap: clamp(32px, 4vw, 60px);
  align-items: stretch;
}
@media (max-width: 1024px) {
  .services__body {
    grid-template-columns: 1fr;
    gap: clamp(40px, 5vw, 64px);
  }
}

.services__media {
  width: 100%;
  aspect-ratio: 581/414;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .services__media {
    max-width: 600px;
    margin: 0 auto;
  }
}

.services__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services__list {
  display: flex;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #cacaca;
}

.services__item {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cacaca;
}

.services__item-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.3s ease;
}

.services__item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.49);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.3s ease;
}

.services__item-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 1.5vw, 24px);
  padding: clamp(16px, 2vw, 28px) clamp(8px, 1.5vw, 24px);
}

.services__item-titre {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 600;
  color: #2c2825;
  line-height: 1.2;
  margin: 0;
  transition: color 0.3s ease;
}

.services__item-desc {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 400;
  color: #8c8b8b;
  line-height: 1.5;
  margin: clamp(4px, 0.5vw, 8px) 0 0;
  transition: color 0.3s ease;
}

.services__arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 3vw, 42.785px);
  height: clamp(36px, 3vw, 42.785px);
  border-radius: 112.592px;
  background: #c05036;
  transition: transform 0.3s ease;
}
.services__arrow svg {
  width: clamp(16px, 1.5vw, 21px);
  height: auto;
  display: block;
}

.services__item:hover .services__item-bg {
  opacity: 1;
}
.services__item:hover::after {
  opacity: 1;
}
.services__item:hover .services__item-titre,
.services__item:hover .services__item-desc {
  color: #ffffff;
}
.services__item:hover .services__arrow {
  transform: rotate(-30deg);
}

.comparison {
  overflow: hidden;
}

.comparison__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(40px, 5vw, 80px);
  padding-bottom: clamp(40px, 5vw, 80px);
}

.comparison__inner {
  position: relative;
  background: #e8a088;
  border-radius: 20px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 64px) clamp(24px, 3vw, 48px);
}

.comparison__swiper {
  overflow: hidden;
}

.comparison__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(28px, 5vw, 70px);
  padding-bottom: clamp(28px, 5vw, 70px);
}

.comparison__images {
  display: flex;
  width: 100%;
  max-width: clamp(280px, 60vw, 900px);
  margin: 0 auto;
}

.comparison__img {
  width: 50%;
  aspect-ratio: 362/451;
  object-fit: cover;
  display: block;
}

.comparison__label {
  position: absolute;
  z-index: 3;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(32px, 7vw, 80px);
  line-height: 1.2;
  color: #fffcf9;
  pointer-events: none;
}

.comparison__label--avant {
  top: clamp(12px, 3vw, 48px);
  left: calc(50% - clamp(280px, 60vw, 900px) / 2);
  transform: translateX(-12%);
}

.comparison__label--apres {
  bottom: clamp(12px, 3vw, 48px);
  right: calc(50% - clamp(280px, 60vw, 900px) / 2);
  transform: translateX(12%);
  text-align: right;
}

.comparison__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(28px, 3vw, 40px);
  height: clamp(28px, 3vw, 40px);
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #fffcf9;
  transition: opacity 0.3s ease;
}
.comparison__arrow:hover {
  opacity: 0.7;
}
.comparison__arrow svg {
  width: clamp(10px, 1vw, 14px);
  height: auto;
  display: block;
}

.comparison__arrow--prev {
  left: calc(50% - clamp(280px, 60vw, 900px) / 2 - clamp(18px, 2.5vw, 40px));
}

.comparison__arrow--next {
  right: calc(50% - clamp(280px, 60vw, 900px) / 2 - clamp(18px, 2.5vw, 40px));
}

.section-testimonials {
  padding: 80px 0;
  padding-left: max(20px, (100% - 1200px) / 2);
  background: #f7f4ef;
  overflow: hidden;
}
@media (max-width: 768px) {
  .section-testimonials {
    padding: 56px 0;
    padding-left: 20px;
  }
}
@media (max-width: 480px) {
  .section-testimonials {
    padding: 40px 0;
    padding-left: 16px;
  }
}

.section-testimonials__inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
}
@media (max-width: 900px) {
  .section-testimonials__inner {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 480px) {
  .section-testimonials__inner {
    gap: 16px;
  }
}

.section-testimonials__header {
  flex: 0 0 400px;
  text-align: left;
  margin-left: 1rem;
}
@media (max-width: 900px) {
  .section-testimonials__header {
    flex: 1;
  }
}
@media (max-width: 480px) {
  .section-testimonials__header {
    margin-left: 0;
  }
}
.section-testimonials__header .eyebrow {
  color: #8C7B72;
  font-family: Lato;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
  text-transform: none;
}
@media (max-width: 480px) {
  .section-testimonials__header .eyebrow {
    font-size: 14px;
  }
}

.section-testimonials__title {
  color: #2C2825;
  font-size: 48px;
  font-weight: 600;
  margin: 12px 0 16px;
}
@media (max-width: 768px) {
  .section-testimonials__title {
    font-size: 34px;
  }
}
@media (max-width: 480px) {
  .section-testimonials__title {
    font-size: 26px;
  }
}
.section-testimonials__title em {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 500;
  color: #C05036;
}

.section-testimonials__subtitle {
  color: #778082;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .section-testimonials__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }
}

.testimonials-nav {
  display: flex;
  gap: 12px;
}
.testimonials-nav__btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #C05036;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.testimonials-nav__btn span {
  display: flex;
}
.testimonials-nav__btn:hover {
  background: #a5432c;
}
@media (max-width: 480px) {
  .testimonials-nav__btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

.testimonials-carousel {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}
@media (max-width: 480px) {
  .testimonials-track {
    gap: 16px;
  }
}

.testimonial-card {
  --r: 16px;
  --s: 34px;
  --x: 24px;
  --y: 0px;
  flex: 0 0 55%;
  padding: 28px;
  box-sizing: border-box;
  position: relative;
  isolation: isolate;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 22px;
  }
}
@media (max-width: 480px) {
  .testimonial-card {
    padding: 18px;
    --s: 26px;
    --x: 16px;
  }
}
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #EDE7DF;
  border: 1px solid #ddd4c8;
  border-radius: var(--r);
  z-index: -1;
  --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 70%, #0000 72%);
  --_g: conic-gradient(from 90deg at calc(100% - var(--r)) calc(100% - var(--r)), #0000 25%, #000 0);
  --_d: calc(var(--s) + var(--r));
  mask: calc(100% - var(--_d) - var(--x)) 100% var(--_m), 100% calc(100% - var(--_d) - var(--y)) var(--_m), radial-gradient(var(--s) at 100% 100%, rgba(0, 0, 0, 0) 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x)) calc(-1 * var(--r) - var(--y)), var(--_g) calc(-1 * var(--_d) - var(--x)) 0, var(--_g) 0 calc(-1 * var(--_d) - var(--y));
  mask-repeat: no-repeat;
}
.testimonial-card__top {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 16px;
}
@media (max-width: 480px) {
  .testimonial-card__top {
    gap: 10px;
    margin-bottom: 12px;
  }
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
}
@media (max-width: 480px) {
  .testimonial-card__avatar {
    width: 36px;
    height: 36px;
  }
}
.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  float: none;
  margin: 0;
}
.testimonial-card__identity {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-card__name {
  color: #2C2825;
  font-family: Lato;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 768px) {
  .testimonial-card__name {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .testimonial-card__name {
    font-size: 16px;
  }
}
.testimonial-card__designation {
  color: #2C2825;
  font-family: Lato;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 480px) {
  .testimonial-card__designation {
    font-size: 13px;
  }
}
.testimonial-card__quote {
  font-size: 14px;
  font-style: italic;
  color: #4a4a4a;
  line-height: 1.7;
  margin-bottom: 0;
  padding-bottom: 44px;
}
@media (max-width: 480px) {
  .testimonial-card__quote {
    padding-bottom: 36px;
  }
}
.testimonial-card__quote p {
  margin: 0;
}
.testimonial-card .wp-block-paragraph {
  color: var(--Color-5, #8C8B8B);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(120, 120, 120, 0.15);
  font-family: Lato;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .testimonial-card .wp-block-paragraph {
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .testimonial-card .wp-block-paragraph {
    font-size: 13px;
    line-height: 160%;
  }
}
.testimonial-card__notch {
  position: absolute;
  bottom: 12px;
  right: 20px;
  z-index: 1;
}
@media (max-width: 480px) {
  .testimonial-card__notch {
    bottom: 8px;
    right: 14px;
  }
}
.testimonial-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card__rating .star {
  color: #f0b429;
  font-size: 14px;
}
@media (max-width: 480px) {
  .testimonial-card__rating .star {
    font-size: 12px;
  }
}
.testimonial-card__rating-value {
  color: #2C2825;
  font-family: Lato;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
@media (max-width: 480px) {
  .testimonial-card__rating-value {
    font-size: 13px;
  }
}

.section-faq {
  padding: 60px 0;
  background: #f7f4ef;
}
@media (max-width: 768px) {
  .section-faq {
    padding: 40px 0;
  }
}

.section-faq__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 480px) {
  .section-faq__inner {
    padding: 0 16px;
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 480px) {
  .faq-accordion {
    gap: 8px;
  }
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: background 0.2s ease;
}
.faq-item.is-open {
  background: #EBEBEB;
}

.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #565246;
  font-family: Lato;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .faq-item__question {
    font-size: 18px;
    padding: 16px 18px;
  }
}
@media (max-width: 480px) {
  .faq-item__question {
    font-size: 15px;
    padding: 14px 14px;
    gap: 10px;
  }
}
.faq-item__question span:first-child {
  flex: 1;
}

.faq-item__icon {
  flex-shrink: 0;
  font-size: 14px;
  color: #8C7B72;
  transition: transform 0.3s ease;
}
@media (max-width: 480px) {
  .faq-item__icon {
    font-size: 12px;
  }
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item__answer-inner {
  padding: 0 20px 18px;
  color: #606267;
  font-family: Lato;
  font-size: 18px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 768px) {
  .faq-item__answer-inner {
    font-size: 15px;
    padding: 0 18px 16px;
  }
}
@media (max-width: 480px) {
  .faq-item__answer-inner {
    font-size: 13px;
    font-weight: 500;
    padding: 0 14px 14px;
    line-height: 150%;
  }
}
.faq-item__answer-inner p {
  margin: 0 0 8px;
}
.faq-item__answer-inner p:last-child {
  margin-bottom: 0;
}

.service-hero {
  padding: 60px 0;
  background: #fdf8f3;
}
@media (max-width: 768px) {
  .service-hero {
    padding: 40px 0;
  }
}

.service-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) {
  .service-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.service-hero__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-hero__main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3.6;
}
.service-hero__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-hero__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: 33554400px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  color: #2B1B12;
  font-family: lato;
  font-size: 10px;
  font-weight: 500;
  line-height: 15px; /* 150% */
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
}

.service-hero__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 480px) {
  .service-hero__gallery {
    gap: 8px;
  }
}

.service-hero__gallery-item {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
}
.service-hero__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-hero__content {
  display: flex;
  flex-direction: column;
}

.service-hero__surtitre {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #B88672;
  font-family: lato;
  font-size: 10px;
  font-weight: 500;
  line-height: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.service-hero__surtitre-dash {
  color: #C05036;
}

.service-hero__title {
  color: #2B1B12;
  font-family: "Playfair Display";
  font-size: 62px;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 20px;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .service-hero__title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  .service-hero__title {
    font-size: 28px;
  }
}

.service-hero__duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2B1B12;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 33554400px;
  border: 1px solid #EAE3DC;
  background: #FFF;
  padding: 8px 18px;
  width: fit-content;
  margin-bottom: 24px;
}
.service-hero__duration span {
  display: flex;
}
.service-hero__duration-icon {
  font-size: 14px;
}

.service-hero__description {
  color: #8C8B8B;
  font-size: 18px;
  font-weight: 300;
  line-height: 29.25px;
  margin-bottom: 32px;
  max-width: 520px;
}

.service-hero__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
@media (max-width: 480px) {
  .service-hero__benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.benefit-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #efe7db;
  border-radius: 14px;
  padding: 16px;
}
.benefit-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #fbeee6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}
.benefit-card__text {
  display: flex;
  flex-direction: column;
}
.benefit-card__title {
  color: #2B1B12;
  font-size: 14px;
  font-family: lato;
  font-weight: 600;
  line-height: 20px;
}
.benefit-card__subtitle {
  color: #8C8B8B;
  font-family: lato;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.service-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background: #C05036;
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.service-hero__cta:hover {
  background: #a5432c;
  transform: translateY(-2px);
}

.service-about {
  padding: 60px 0;
  background: #fdf8f3;
}
@media (max-width: 768px) {
  .service-about {
    padding: 40px 0;
  }
}

.service-about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .service-about__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.service-about__label {
  display: block;
  color: #8C7B72;
  font-family: Lato;
  font-size: 11.608px;
  font-weight: 600;
  line-height: 17.412px;
  letter-spacing: 2.638px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-about__title {
  color: #2C2825;
  font-family: "Playfair Display";
  font-size: 46.433px;
  font-style: italic;
  font-weight: 500;
  line-height: 53.398px;
  line-height: 1.25;
  margin: 0 0 16px;
}
.service-about__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: #2C2825;
}
@media (max-width: 480px) {
  .service-about__title {
    font-size: 24px;
  }
}

.service-about__text {
  color: rgba(0, 0, 0, 0.62);
  font-family: Lato;
  font-size: 15.829px;
  font-weight: 400;
  line-height: 29.285px;
}
.service-about__text p {
  margin: 0 0 16px;
}
.service-about__text strong {
  font-weight: 600;
  color: #C05036;
}

.service-about__indications {
  max-width: 700px;
  margin: 64px auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .service-about__indications {
    margin-top: 40px;
  }
}
.service-about__indications .service-about__label {
  text-align: center;
}
.service-about__indications .service-about__title {
  text-align: center;
}

.indications-accordion {
  text-align: left;
}

.service-about__media {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
}
.service-about__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 900px) {
  .service-about__media {
    order: -1;
    height: auto;
    aspect-ratio: 4/3;
  }
}

.indications-accordion {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

.indication-item {
  border-bottom: 1px solid #e5ddd2;
}
.indication-item:first-child {
  border-top: 1px solid #e5ddd2;
}

.indication-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: #C05036;
  font-family: lato;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.indication-item__question span:first-child {
  flex: 1;
}

.indication-item__icon {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 400;
  color: #C05036;
  line-height: 1;
}

.indication-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.indication-item__answer-inner {
  padding: 0 4px 20px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  color: #a19a8d;
  line-height: 1.6;
}
.indication-item__answer-inner p {
  margin: 0;
}

.service-rythme {
  padding: 40px 0 80px;
}
@media (max-width: 768px) {
  .service-rythme {
    padding: 24px 0 56px;
  }
}

.service-rythme__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px;
  background: #faf1ea;
  border: 1px solid rgba(192, 80, 54, 0.15);
  border-radius: 28px;
}
@media (max-width: 768px) {
  .service-rythme__inner {
    padding: 40px 24px;
  }
}

.service-rythme__title {
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #2C2825;
  margin: 0 0 32px;
}
.service-rythme__title em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: #2C2825;
}
@media (max-width: 480px) {
  .service-rythme__title {
    font-size: 22px;
  }
}

.service-rythme__card {
  background: #fff;
  border-radius: 20px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 56px;
}
@media (max-width: 768px) {
  .service-rythme__card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px;
  }
}

.service-rythme__number {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-right: 56px;
  border-right: 1px solid #eee;
}
@media (max-width: 768px) {
  .service-rythme__number {
    flex: 1 1 100%;
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    width: 100%;
    align-items: flex-start;
  }
}

.service-rythme__number-value {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(64px, 7vw, 100px);
  color: #2C2825;
  line-height: 1;
}
.service-rythme__number-value em {
  font-style: italic;
  color: #b08d82;
  font-weight: 500;
}
@media (max-width: 480px) {
  .service-rythme__number-value {
    font-size: 52px;
  }
}

.service-rythme__number-label {
  margin-top: 8px;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a19a8d;
}

.service-rythme__items {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 560px) {
  .service-rythme__items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.rythme-item {
  display: flex;
  flex-direction: column;
}
.rythme-item__icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #fbeee6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.rythme-item__icon img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}
.rythme-item__title {
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2C2825;
  margin-bottom: 8px;
}
.rythme-item__text {
  font-family: Lato, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #a19a8d;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  padding: clamp(12px, 1.2vw, 18px) clamp(24px, 2.5vw, 40px);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: #c05036;
  color: #ffffff;
}
.btn--primary:hover {
  background: #a8432c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 92, 62, 0.35);
}
.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 252, 249, 0.6);
}
.btn--ghost svg {
  transition: transform 0.3s ease;
}
.btn--ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 252, 249, 0.1);
}
.btn--ghost:hover svg {
  transform: translateX(4px);
}
.btn--outline {
  background: transparent;
  color: #c05036;
  border: 1.5px solid #c05036;
}
.btn--outline svg {
  transition: transform 0.3s ease;
}
.btn--outline:hover {
  background: #c05036;
  color: #ffffff;
}
.btn--outline:hover svg {
  transform: translateX(4px);
}

.page-home {
  background-color: #f7f3ef;
}

.prise-rdv {
  width: 100%;
  background: #8c8b8b;
  padding-top: clamp(150px, 16vw, 200px);
}

.prise-rdv__container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 8vw, 120px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.prise-rdv__widget {
  width: 100%;
  min-height: clamp(640px, 88vh, 1100px);
}
