@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(10px);
  -webkit-backdrop-filter: blur(14px);
  width: 100%;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

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

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header__nav,
  .site-header.is-scrolled .site-header__nav {
    background: #fffcf9;
  }
}
.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);
}
@media (max-width: 1024px) {
  .site-header__nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: clamp(16px, 1.5vw, 24px);
    padding-top: clamp(8px, 1vw, 16px);
    padding-bottom: clamp(8px, 1vw, 16px);
  }
}

.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;
}
@media (max-width: 1024px) {
  .site-header__logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: clamp(104px, 28vw, 136px);
    height: auto;
  }
  .site-header__logo img {
    height: auto;
  }
}

.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 > .site-header__cat .site-header__chevron,
.site-header__menu > li:focus-within > .site-header__cat .site-header__chevron {
  transform: rotate(180deg);
}
.site-header__menu .site-header__submenu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  .site-header__menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fffcf9;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(24px, 3vw, 40px);
    z-index: 99;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: clamp(100px, 9vw, 130px) clamp(16px, 1.5vw, 24px) clamp(60px, 8vw, 120px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0.4s;
  }
  .site-header__menu .menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }
  .site-header__menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0s linear 0s;
  }
  .site-header__menu.is-open .menu-item-has-children {
    opacity: 1;
    transform: translateY(0);
  }
  .site-header__menu.is-open .menu-item-has-children:nth-child(1) {
    transition-delay: 0.05s;
  }
  .site-header__menu.is-open .menu-item-has-children:nth-child(2) {
    transition-delay: 0.11s;
  }
  .site-header__menu.is-open .menu-item-has-children:nth-child(3) {
    transition-delay: 0.17s;
  }
  .site-header__menu.is-open .menu-item-has-children:nth-child(4) {
    transition-delay: 0.23s;
  }
  .site-header__menu.is-open .menu-item-has-children:nth-child(5) {
    transition-delay: 0.29s;
  }
  .site-header__menu.is-open .menu-item-has-children:nth-child(6) {
    transition-delay: 0.35s;
  }
  .site-header__menu li > .site-header__cat .site-header__chevron {
    display: none;
  }
  .site-header__menu .site-header__submenu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    color: #c05036;
  }
  .site-header__menu .site-header__submenu-toggle .site-header__chevron {
    display: block;
    width: 12px;
    transition: transform 0.3s ease;
  }
  .site-header__menu .sub-menu {
    flex: 0 0 100%;
    display: none;
    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;
    white-space: normal;
  }
  .site-header__menu .menu-item-has-children.is-submenu-open > .sub-menu {
    display: block;
  }
  .site-header__menu .menu-item-has-children.is-submenu-open > .site-header__submenu-toggle .site-header__chevron {
    transform: rotate(180deg);
  }
}
@media (max-width: 1024px) and (prefers-reduced-motion: reduce) {
  .site-header__menu, .site-header__menu.is-open,
  .site-header__menu .menu-item-has-children {
    transition: none;
  }
  .site-header__menu .menu-item-has-children {
    transition-delay: 0s;
  }
}

.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: inline-flex;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    max-width: 100%;
    font-size: 13px;
    padding: 9px 16px;
    border-radius: 8px;
  }
}

.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;
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, background-color 0.3s ease;
}
.site-header__burger[aria-expanded=true] span {
  background-color: #c05036;
}
.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;
  transform: scaleX(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;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-header__burger span {
    transition: none;
  }
}

.header-spacer {
  height: clamp(100px, 9vw, 130px);
}
@media (max-width: 1024px) {
  .header-spacer {
    height: clamp(116px, 9vw, 140px);
  }
}

.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(25px, 5.9vw, 128px);
  line-height: 1.05;
  color: #ffeee2;
  margin: 0;
}
.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, 50.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__nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(16px, 1.5vw, 24px) clamp(24px, 3vw, 40px);
  padding: clamp(24px, 4vw, 48px) clamp(24px, 5.5vw, 80px);
}
@media (max-width: 480px) {
  .site-footer__nav {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(16px, 1.5vw, 24px);
  }
}

.site-footer__social {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
}

.site-footer__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-footer__social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.site-footer__social-link:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.site-footer__social-link--disabled {
  cursor: default;
}
.site-footer__social-link--disabled:hover {
  transform: none;
  opacity: 1;
}

.site-footer__quicklinks {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(16px, 1.5vw, 24px);
  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__coord {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(24px, 4vw, 48px) clamp(24px, 5.5vw, 80px);
}
@media (max-width: 768px) {
  .site-footer__coord {
    flex-direction: column;
    gap: clamp(24px, 3vw, 40px);
  }
}

.site-footer__coord-brand {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.5vw, 8px);
  max-width: 26rem;
}

.site-footer__coord-nom {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  color: #ffeee2;
  margin: 0;
}

.site-footer__coord-soustitre {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1.1vw, 16px);
  color: #f6f6f6;
  margin: 0;
}

.site-footer__coord-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 16px) clamp(1.5rem, 3vw, 2.5rem);
}
@media (max-width: 480px) {
  .site-footer__coord-list {
    grid-template-columns: 1fr;
  }
}

.site-footer__coord-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-footer__coord-label {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c05036;
}

.site-footer__coord-val {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #fffcf9;
  text-decoration: none;
  line-height: 1.4;
}

a.site-footer__coord-link {
  transition: color 0.3s ease;
}
a.site-footer__coord-link:hover {
  color: #c05036;
}

.site-footer__bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  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__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(8px, 1vw, 16px);
}

.site-footer__legal-link {
  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__legal-link:hover {
  color: #c05036;
}

.site-footer__legal-sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(13px, 1.25vw, 18px);
  line-height: 1;
}

.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;
  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, 90vw, 774px);
  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: var(--police-titre);
  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: rgba(0, 0, 0, 0.71);
  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;
  flex-direction: column;
  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: center;
  }
}

.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;
  scroll-margin-top: clamp(100px, 9vw, 130px);
}
@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__body {
  width: 100%;
  position: relative;
}

.technologies__swiper {
  width: 100%;
  padding-bottom: 2rem !important;
}
.technologies__swiper .swiper-slide {
  height: auto;
}

.technologies__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #C05036;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.technologies__arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(192, 80, 54, 0.25);
}
.technologies__arrow.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}
.technologies__arrow svg {
  width: 16px;
  height: auto;
  display: block;
}

.technologies__arrow--prev {
  left: -8px;
}

.technologies__arrow--next {
  right: -8px;
}

@media (max-width: 560px) {
  .technologies__arrow--prev {
    left: 0;
  }
  .technologies__arrow--next {
    right: 0;
  }
}
.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;
  counter-reset: services-counter;
}

.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: baseline;
  justify-content: flex-start;
  gap: clamp(12px, 1.6vw, 24px);
  padding: clamp(16px, 2vw, 28px) clamp(8px, 1.5vw, 24px);
  transition: transform 0.3s ease;
}

.services__item-inner::before {
  counter-increment: services-counter;
  content: counter(services-counter, decimal-leading-zero);
  flex-shrink: 0;
  min-width: 2ch;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(14px, 1.1vw, 18px);
  font-style: italic;
  font-weight: 500;
  color: #c05036;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.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: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, color 0.3s ease;
}

.services__item-inner:hover .services__item-desc {
  max-height: 8rem;
  margin-top: clamp(4px, 0.5vw, 8px);
  opacity: 1;
}

.services__item:hover .services__item-bg {
  opacity: 1;
}
.services__item:hover::after {
  opacity: 1;
}
.services__item:hover .services__item-inner {
  transform: translateX(clamp(4px, 0.6vw, 8px));
}
.services__item:hover .services__item-titre,
.services__item:hover .services__item-desc {
  color: #ffffff;
}

.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__titre {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 1.15;
  color: #2c2825;
  text-align: center;
  margin: 0 0 clamp(24px, 4vw, 48px);
  padding: 0 clamp(20px, 4vw, 40px);
}

.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;
  scroll-margin-top: clamp(100px, 9vw, 130px);
}
@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;
  color: #C45C3E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-card__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.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;
  gap: 20px;
  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);
}

/* ==========================================================================
   Aesthé — Maison d'Esthétique — page « Prise de Rendez-vous »

   Partial Sass à importer depuis style.scss, avec les autres fichiers
   du dossier pages/ (ex. @use 'pages/prise-rdv';). Il est compilé
   avec le reste du thème : pas d'enqueue CSS séparé côté PHP.

   Direction : un institut de soins de peau qui vend un DIAGNOSTIC avant
   de vendre un soin. Le vocabulaire visuel vient donc de la fiche
   clinique/apothicaire (repères numérotés réels, graphique de mesure)
   plutôt que d'un habillage marketing générique.

   Palette :
     --papier     #F6F6F6  fond neutre (imposé par la marque)
     --surface    #FFFFFF  cartes / panneaux
     --encre      #241813  texte (brun quasi noir, pas de noir pur)
     --argile     #C05036  couleur de marque — utilisée en aplat, pas
                            seulement en filet d'accent
     --argile-fonce #7A3420 état hover / texte sur fond clair
     --trait      #DEDAD3  séparateurs

   Typographie : on réutilise les polices déjà chargées par le thème
   (handle « aesthe-fonts » dans functions.php) — Playfair Display pour
   les titres et Lato pour le texte courant — plutôt que d'en charger
   de nouvelles pour cette seule page.
   ========================================================================== */
:root {
  --papier: #f6f6f6;
  --surface: #ffffff;
  --encre: #241813;
  --encre-douce: #4a3a33;
  --argile: #c05036;
  --argile-fonce: #7a3420;
  --trait: #dedad3;
  --police-titre: "Playfair Display", Georgia, serif;
  --police-texte: "Lato", Arial, sans-serif;
  --rayon: 4px;
  --marge-page: clamp(1.25rem, 4vw, 3rem);
}

/* -------------------- Réinitialisation minimale -------------------- */
.prise-rdv,
.prise-rdv *,
.prise-rdv *::before,
.prise-rdv *::after {
  box-sizing: border-box;
}

.prise-rdv {
  background: var(--papier);
  color: var(--encre);
  font-family: var(--police-texte);
  font-size: 1rem;
  line-height: 1.55;
}

.prise-rdv__hero-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prise-rdv h1,
.prise-rdv h2,
.prise-rdv h3 {
  font-family: var(--police-titre);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.prise-rdv p {
  margin: 0;
  max-width: 38rem; /* ~ moins de 80 caractères par ligne */
}

.prise-rdv a {
  color: #ffffff;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.15em;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus clavier visible partout, y compris sur les éléments custom */
.prise-rdv a:focus-visible,
.prise-rdv button:focus-visible,
.prise-rdv [tabindex]:focus-visible {
  outline: 3px solid var(--argile-fonce);
  outline-offset: 3px;
}

/* -------------------- Bouton -------------------- */
.bouton {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--police-titre);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.85em 1.4em;
  border-radius: var(--rayon);
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px; /* zone de touche confortable */
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.bouton--plein {
  background: var(--argile);
  color: #ffffff;
}

.bouton--plein:hover {
  background: var(--argile-fonce);
  color: #ffffff;
}

.bouton--contour {
  background: transparent;
  color: var(--argile-fonce);
  border-color: var(--argile);
}

.bouton--contour:hover {
  background: var(--argile);
  color: #ffffff;
}

.bouton:disabled {
  opacity: 0.7;
  cursor: progress;
}

.bouton__meta {
  font-family: var(--police-texte);
  font-weight: 500;
  font-size: 0.8rem;
  opacity: 0.85;
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 0.6em;
}

/* -------------------- Hero -------------------- */
.prise-rdv__hero {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 76rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 1rem) var(--marge-page) clamp(2.5rem, 6vw, 4rem);
}

.prise-rdv__kicker {
  font-family: var(--police-titre);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--argile-fonce);
  margin-bottom: 0.9rem;
}

.prise-rdv__titre {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  max-width: 16ch;
  margin-bottom: 1.1rem;
}

.prise-rdv__intro {
  font-size: 1.15rem;
  color: var(--encre-douce);
  margin-bottom: 1.75rem;
}

.prise-rdv__cta-bloc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.9rem;
}

.prise-rdv__cta-note {
  font-size: 0.9rem;
  color: var(--encre-douce);
  max-width: 30rem;
}

/* -------------------- Objectifs (bloc SEO) -------------------- */
.prise-rdv__objectifs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 60rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) var(--marge-page);
  text-align: center;
}

.prise-rdv__objectifs-kicker {
  font-family: var(--police-titre);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--argile-fonce);
  margin: 0 0 0.6rem;
}

.prise-rdv__objectifs-titre {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  color: var(--encre);
  margin: 0 auto 1rem;
}

.prise-rdv__objectifs-intro {
  max-width: 52rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--encre-douce);
}

.prise-rdv__hero-visuel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

/* -------------------- Hero : slider avant / après --------------------
   Réutilise le mécanisme du slider avant/après de la home
   (.comparison__swiper + init Swiper « fade/crossFade » de main.js).
   Les surcharges ci-dessous sont limitées à .prise-rdv pour adapter la
   présentation à la colonne du hero, sans toucher au slider de la home. */
.prise-rdv__avantapres {
  position: relative;
  width: 100%;
  min-width: 0;
  max-width: 420px;
  margin: 0 auto;
}

.prise-rdv .comparison__swiper {
  border-radius: var(--rayon);
  overflow: hidden;
}

.prise-rdv .comparison__slide {
  padding: 0;
  min-width: 0;
}

.prise-rdv .comparison__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  border-radius: var(--rayon);
}

.prise-rdv .comparison__label {
  position: absolute;
  z-index: 3;
  inset: auto;
  font-family: var(--police-titre);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  color: #fffcf9;
  pointer-events: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
  transform: none;
}

.prise-rdv .comparison__label--avant {
  top: 14px;
  left: 18px;
}

.prise-rdv .comparison__label--apres {
  bottom: 14px;
  right: 18px;
  text-align: right;
}

.prise-rdv .comparison__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  background: rgba(36, 24, 19, 0.45);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #fffcf9;
  transition: background 0.2s ease;
}
.prise-rdv .comparison__arrow:hover {
  background: rgba(36, 24, 19, 0.72);
}
.prise-rdv .comparison__arrow svg {
  width: 13px;
  height: auto;
  display: block;
}

.prise-rdv .comparison__arrow--prev {
  left: 10px;
}

.prise-rdv .comparison__arrow--next {
  right: 10px;
}

/* -------------------- Étapes (séquence réelle : avant / appel / après) -------------------- */
.prise-rdv__etapes {
  max-width: 76rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem) var(--marge-page);
  border-top: 1px solid var(--trait);
  border-bottom: 1px solid var(--trait);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.etape {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--argile);
  padding-left: 1.25rem;
}

.etape__repere {
  font-family: var(--police-titre);
  font-size: 0.85rem;
  color: var(--argile-fonce);
  margin: 0 0 0.5rem;
}

.etape__titre {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.etape__texte {
  color: var(--encre-douce);
  font-size: 0.95rem;
}

/* -------------------- Réservation -------------------- */
.prise-rdv__reservation {
  background: var(--surface);
  border-top: 1px solid var(--trait);
}

.reservation {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) var(--marge-page);
}

.reservation__titre {
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
}

.reservation__texte {
  color: var(--encre-douce);
  margin-bottom: 2rem;
}

.reservation__widget-conteneur {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.calendly-inline-widget {
  width: 100%;
  min-width: 280px;
  min-height: 620px;
  border: 1px solid var(--trait);
  border-radius: var(--rayon);
}

.reservation__secours-lien a {
  color: #7a3420;
}

.reservation__secours,
.reservation__secours-lien {
  font-size: 0.9rem;
  color: var(--encre-douce);
  margin-top: 0.5rem;
}

/* Micro-copy sous le module calendrier. */
.reservation__note {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--encre-douce);
  margin-top: 0.75rem;
}

/* -------------------- Responsive -------------------- */
@media (max-width: 860px) {
  /* minmax(0, 1fr) et non 1fr : le minimum « auto » de 1fr = largeur min-content
     du contenu, ce qui fait déborder la colonne au-delà de la zone de contenu
     (padding ignoré) → +20px sur mobile. Le 0 comme minimum autorise la colonne
     à se réduire à l'espace réellement disponible : le bloc s'adapte à l'écran. */
  .prise-rdv__hero {
    grid-template-columns: minmax(0, 1fr);
  }
  .prise-rdv__hero-visuel {
    order: -1;
    /* min(360px, 100%) : 360px sur les écrans moyens, mais jamais plus que la
       largeur réelle de la colonne (100% = track de la grille) sur petit écran.
       Sans ça, `max-width: 360px` = largeur d'un écran 360 → le slide Swiper
       poussait le bloc jusqu'au viewport et débordait de 20px. */
    max-width: min(360px, 100%);
    margin: 0 auto;
  }
  .prise-rdv__avantapres {
    max-width: 100%;
  }
  .prise-rdv__etapes {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* -------------------- Avis (slider, bas de page) --------------------
   Slider Swiper (.avis__swiper — init dédiée dans main.js) : une carte
   centrée à la fois. Cartes « avis client » premium : avatar à initiale,
   badge Google, guillemet décoratif, profondeur (ombre + accent clay).
   Vocabulaire visuel commun au site (variables Sass $font, $color, $space). */
.avis {
  background: #f6f6f6;
  border-top: 1px solid #cacaca;
  padding: clamp(40px, 5vw, 64px) 0 clamp(60px, 8vw, 120px);
}

.avis__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 clamp(16px, 1.5vw, 24px);
}

.avis__kicker {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #c05036;
  text-align: center;
  margin: 0 0 clamp(4px, 0.5vw, 8px);
}

.avis__titre {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  text-align: center;
  color: #2c2825;
  margin: 0 auto clamp(24px, 3vw, 40px);
}

/* Piste du carrousel : largeur contenue, flèches ancrées à ses bords.
   width:100% indispensable : sans lui, le parent flex (align-items:center)
   met ce bloc en « shrink-to-fit » et la largeur préférée du texte de l'avis
   (max-width:none) dépasse l'écran mobile → Swiper fige des slides trop larges
   → débordement horizontal. width:100% le borne au parent. */
.avis__carousel {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

/* padding : laisse respirer l'ombre portée + l'élévation au survol (sinon rognées). */
.avis__swiper {
  width: 100%;
  overflow: hidden;
  padding: clamp(16px, 1.5vw, 24px) clamp(4px, 0.5vw, 8px);
}

.avis__slide {
  height: auto;
  display: flex;
}

.avis__carte {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
  width: 100%;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(192, 80, 54, 0.18);
  border-radius: 16px;
  padding: clamp(2.75rem, 5vw, 3.75rem) clamp(2.25rem, 4vw, 3.25rem) clamp(2.25rem, 3.5vw, 3rem);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Guillemet décoratif (même esprit que .philosophie__guillemet), ton clay très clair. */
.avis__carte::before {
  content: "“";
  position: absolute;
  top: -0.1em;
  left: 0.12em;
  z-index: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(90px, 13vw, 130px);
  line-height: 1;
  color: rgba(192, 80, 54, 0.1);
  pointer-events: none;
}

/* Élévation légère au survol. */
.avis__carte:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 52px -16px rgba(44, 19, 9, 0.28);
}

/* Les contenus passent au-dessus du guillemet. */
.avis__carte > * {
  position: relative;
  z-index: 1;
}

.avis__etoiles {
  display: inline-flex;
  gap: 3px;
  font-size: 1.1rem;
  line-height: 1;
}

.avis__etoile {
  color: #cacaca;
}

.avis__etoile.is-on {
  color: #c05036;
}

.avis__texte {
  max-width: none;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  font-style: italic;
  line-height: 1.65;
  color: rgba(44, 40, 37, 0.82);
}

/* Pied de carte : avatar à initiale + nom. */
.avis__pied {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  margin-top: auto;
  padding-top: clamp(16px, 1.5vw, 24px);
  border-top: 1px solid rgba(44, 19, 9, 0.07);
}

.avis__avatar {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffeee2;
  border: 1px solid rgba(192, 80, 54, 0.2);
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #c05036;
  line-height: 1;
}

.avis__nom {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: #2c2825;
}

.avis__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: #ffffff;
  border: 1px solid #cacaca;
  border-radius: 50%;
  cursor: pointer;
  color: #c05036;
  box-shadow: 0 6px 16px -6px rgba(44, 19, 9, 0.25);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.avis__arrow:hover {
  background: #c05036;
  border-color: #c05036;
  color: #ffffff;
}
.avis__arrow svg {
  width: 13px;
  height: auto;
  display: block;
}

.avis__arrow--prev {
  left: -18px;
}

.avis__arrow--next {
  right: -18px;
}

/* Pagination (dots) sous le slider, en plus des flèches. */
.avis__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: clamp(24px, 3vw, 40px);
}

.avis__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: #cacaca;
  opacity: 1;
  border-radius: 999px;
  transition: width 0.3s ease, background 0.3s ease;
}

.avis__pagination .swiper-pagination-bullet-active {
  width: 24px;
  background: #c05036;
}

/* Sur petit écran : flèches masquées (les dots + le swipe tactile suffisent). */
@media (max-width: 640px) {
  .avis__arrow {
    display: none;
  }
}
/* -------------------- Localisation (carte Google Maps) --------------------
   Carte iframe sans clé API (même méthode que la page Contact). Ratio géré
   par aspect-ratio (jamais de hauteur fixe en px), coins arrondis + ombre
   légère cohérents avec les autres blocs. Variables Sass communes au site. */
.prise-rdv__localisation {
  background: #ffffff;
  border-top: 1px solid #cacaca;
  padding: clamp(60px, 8vw, 120px) 0;
}

/* Colonne centrée et resserrée : bloc clairement centré dans la page. */
.localisation {
  max-width: 60rem;
  margin: 0 auto;
  padding: 0 clamp(16px, 1.5vw, 24px);
}

/* En-tête centré : pastille épingle + kicker + titre + adresse + bouton. */
.localisation__entete {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.localisation__pin {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffeee2;
  border: 1px solid rgba(192, 80, 54, 0.2);
  color: #c05036;
  margin-bottom: clamp(8px, 1vw, 16px);
  box-shadow: 0 8px 20px -10px rgba(192, 80, 54, 0.5);
}

.localisation__pin svg {
  display: block;
}

.localisation__kicker {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: #c05036;
  margin: 0 0 clamp(4px, 0.5vw, 8px);
}

.localisation__titre {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: #2c2825;
  margin: 0 auto 0.6rem;
}

/* Petit filet clay décoratif sous le titre. */
.localisation__titre::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin: 0.75rem auto 0;
  background: #c05036;
  border-radius: 2px;
  opacity: 0.7;
}

.localisation__adresse {
  max-width: none;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.05rem;
  color: #8c7b72;
  margin: 0 auto;
}

/* Paragraphe descriptif du bloc localisation (remplace l'adresse seule). */
.localisation__texte {
  max-width: 46rem;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1.02rem;
  line-height: 1.6;
  color: #8c7b72;
  margin: 0 auto;
}

.localisation__cta {
  margin-top: clamp(16px, 1.5vw, 24px);
}

/* Le composant .bouton est un <a> : dans .prise-rdv, `a{color:#fff}` prend
   le dessus — on rétablit la couleur clay de la variante contour ici. */
.prise-rdv .bouton--contour.localisation__cta {
  color: #c05036;
}

.prise-rdv .bouton--contour.localisation__cta:hover {
  color: #ffffff;
}

.localisation__cta svg {
  transition: transform 0.3s ease;
}

.localisation__cta:hover svg {
  transform: translateX(3px);
}

.localisation__map {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 60rem;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(192, 80, 54, 0.18);
  box-shadow: 0 24px 50px -18px rgba(44, 19, 9, 0.28);
}
.localisation__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Mobile : carte un peu plus haute pour rester lisible (ratio, pas de px). */
@media (max-width: 640px) {
  .localisation__map {
    aspect-ratio: 4/3;
  }
}
/* ==========================================================================
   Aesthé — Maison d'Esthétique — page « Découvrir le Centre »

   Partial à importer depuis style.scss avec les autres fichiers de
   sass/pages/ (même syntaxe @use que le reste : ex. @use 'pages/rendez-vous';).

   Utilise les variables déjà définies dans sass/abstracts/_variables.scss
   ($font-display, $font-body, $color-accent, $space-*, etc.) et le mixin
   respond-to() de _mixins.scss (importés ci-dessus, comme les autres partials).
   ========================================================================== */
.decouvrir-centre {
  background: #fffcf9;
  font-family: "Lato", Arial, sans-serif;
  line-height: 1.6;
}

.decouvrir-centre h1,
.decouvrir-centre h2,
.decouvrir-centre h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.decouvrir-centre p {
  margin: 0;
}

/* -------------------- Animation d'apparition au scroll -------------------- */
/* Classe posée sur chaque bloc en HTML ; .is-visible ajoutée par le JS via
   IntersectionObserver. Repli sans JS ou avec prefers-reduced-motion :
   toujours visible (voir plus bas). */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* -------------------- Hero -------------------- */
.decouvrir-centre__hero {
  position: relative;
  min-height: clamp(520px, 85vh, 880px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.decouvrir-centre__hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.08);
  animation: decouvrir-hero-zoom 12s ease-out forwards;
}

@keyframes decouvrir-hero-zoom {
  to {
    transform: scale(1);
  }
}
.decouvrir-centre__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 40, 37, 0.35) 0%, rgba(44, 40, 37, 0.6) 100%);
}

.decouvrir-centre__hero-contenu {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 0 clamp(16px, 1.5vw, 24px);
  /* Marge haute : décale le contenu vers le bas depuis le centre, lui donne
     de l'air sous le header fixe et équilibre le hero plus haut. */
  margin-top: clamp(48px, 9vh, 120px);
}

.decouvrir-centre__kicker {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  margin-bottom: clamp(8px, 1vw, 16px);
  opacity: 0.9;
}

.decouvrir-centre__titre {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: clamp(8px, 1vw, 16px);
}

.decouvrir-centre__soustitre {
  font-size: clamp(16px, 1.5vw, 22px);
  opacity: 0.92;
}

.decouvrir-centre__scroll-cue {
  position: absolute;
  bottom: clamp(24px, 3vw, 40px);
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}

.decouvrir-centre__scroll-cue::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  animation: decouvrir-scroll-cue 1.8s ease-in-out infinite;
}

@keyframes decouvrir-scroll-cue {
  0% {
    top: 0;
    opacity: 1;
  }
  80% {
    opacity: 0;
  }
  100% {
    top: 34px;
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .decouvrir-centre__hero-bg {
    animation: none;
    transform: none;
  }
  .decouvrir-centre__scroll-cue::after {
    animation: none;
  }
}
/* -------------------- Philosophie -------------------- */
.decouvrir-centre__philosophie {
  max-width: 46rem;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 7rem) clamp(16px, 1.5vw, 24px);
  text-align: center;
}

.philosophie__guillemet {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  color: #c05036;
  line-height: 1;
  margin-bottom: clamp(8px, 1vw, 16px);
}

.philosophie__titre {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: clamp(16px, 1.5vw, 24px);
}

.philosophie__texte {
  font-size: clamp(16px, 1.5vw, 22px);
  color: rgba(44, 40, 37, 0.75);
}

/* -------------------- Piliers -------------------- */
.decouvrir-centre__piliers {
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 clamp(16px, 1.5vw, 24px) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.pilier {
  text-align: center;
  padding: clamp(24px, 3vw, 40px) clamp(8px, 1vw, 16px);
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pilier:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(44, 40, 37, 0.08);
}

.pilier__icone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: clamp(8px, 1vw, 16px);
  color: #c05036;
}

.pilier__icone svg {
  width: 100%;
  height: 100%;
}

.pilier__titre {
  font-size: 1.05rem;
  margin-bottom: clamp(4px, 0.5vw, 8px);
}

.pilier__texte {
  font-size: 0.92rem;
  color: rgba(44, 40, 37, 0.7);
}

/* -------------------- Engagements -------------------- */
.decouvrir-centre__engagements {
  background: #fdf8f3;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(16px, 1.5vw, 24px);
}

/* Deux colonnes : liste (gauche) + image (droite) ; empilées en mobile. */
.engagements-grid {
  max-width: 76rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 768px) {
  .engagements-grid {
    grid-template-columns: 1fr;
  }
}

/* La colonne de gauche garde l'animation reveal mais alignée à gauche
   (le style global .reveal.is-visible centre par défaut). */
.engagements-content .reveal.is-visible {
  align-items: flex-start;
}

.engagements-content .engagement.is-visible {
  flex-direction: row;
  align-items: baseline;
  gap: clamp(16px, 1.5vw, 24px);
}

.engagements-intro {
  margin: 0 0 clamp(24px, 3vw, 40px);
  text-align: left;
}

.engagements-intro__titre {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.engagements-liste {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 40px);
}

/* Image de droite */
.engagements-media {
  width: 100%;
}

.engagements-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(44, 40, 37, 0.12);
}

.engagement {
  display: flex;
  align-items: baseline;
  gap: clamp(16px, 1.5vw, 24px);
}

.engagement__repere {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.3rem;
  color: #c05036;
  flex-shrink: 0;
}

.engagement__texte {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(44, 40, 37, 0.85);
}

/* -------------------- CTA final -------------------- */
.decouvrir-centre__cta {
  padding: clamp(4rem, 9vw, 7rem) clamp(16px, 1.5vw, 24px);
}

.cta-finale {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
}

.cta-finale__titre {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: clamp(8px, 1vw, 16px);
}

.cta-finale__texte {
  color: rgba(44, 40, 37, 0.75);
  margin-bottom: clamp(24px, 3vw, 40px);
}

/* -------------------- Responsive -------------------- */
@media (max-width: 1024px) {
  .decouvrir-centre__piliers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .decouvrir-centre__piliers {
    grid-template-columns: 1fr;
  }
  .engagement {
    flex-direction: column;
    gap: clamp(4px, 0.5vw, 8px);
  }
}
/* ==========================================================================
   Aesthé — page « Contact »
   Formulaire CF7 (gauche) + coordonnées & carte Google Maps (droite),
   empilés en une colonne sur mobile. Variables/mixins du thème.
   ========================================================================== */
.contact {
  background: #fffcf9;
  padding: clamp(3rem, 7vw, 6rem) 0;
}

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

/* -------------------- Intro -------------------- */
.contact__intro {
  max-width: 46rem;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}

.contact__titre {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #2c2825;
  margin: 0 0 clamp(8px, 1vw, 16px);
}

.contact__texte {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  color: rgba(44, 40, 37, 0.75);
  margin: 0;
}

/* -------------------- Grille 2 colonnes -------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------- Colonne formulaire (CF7) -------------------- */
.contact__form {
  background: #ffffff;
  border: 1px solid #cacaca;
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact__form .cf7-champ {
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.5vw, 8px);
  margin-bottom: clamp(16px, 1.5vw, 24px);
}
.contact__form .cf7-champ label {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: #2c2825;
}
.contact__form .cf7-champ label span {
  color: #c05036;
}
.contact__form .cf7-champ input[type=text],
.contact__form .cf7-champ input[type=email],
.contact__form .cf7-champ input[type=tel],
.contact__form .cf7-champ textarea {
  width: 100%;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  color: #2c2825;
  background: #fffcf9;
  border: 1px solid #cacaca;
  border-radius: 8px;
  padding: clamp(10px, 1.1vw, 14px) clamp(12px, 1.2vw, 16px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact__form .cf7-champ input[type=text]::placeholder,
.contact__form .cf7-champ input[type=email]::placeholder,
.contact__form .cf7-champ input[type=tel]::placeholder,
.contact__form .cf7-champ textarea::placeholder {
  color: #8c8b8b;
}
.contact__form .cf7-champ input[type=text]:focus,
.contact__form .cf7-champ input[type=email]:focus,
.contact__form .cf7-champ input[type=tel]:focus,
.contact__form .cf7-champ textarea:focus {
  outline: none;
  border-color: #c05036;
  box-shadow: 0 0 0 3px rgba(192, 80, 54, 0.12);
}
.contact__form .cf7-champ textarea {
  min-height: 8rem;
  resize: vertical;
}

.contact__form .cf7-actions {
  margin-top: clamp(16px, 1.5vw, 24px);
}

.contact__form .wpcf7-submit {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  color: #fffcf9;
  background: #c05036;
  border: none;
  border-radius: 10px;
  padding: clamp(12px, 1.2vw, 16px) clamp(24px, 2.4vw, 36px);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.contact__form .wpcf7-submit:hover {
  background: #a8432c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 80, 54, 0.25);
}

.contact__form .wpcf7-response-output {
  margin: clamp(16px, 1.5vw, 24px) 0 0;
  padding: clamp(10px, 1.1vw, 14px) clamp(12px, 1.2vw, 16px);
  border-radius: 8px;
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
}

.contact__form .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: clamp(12px, 0.9vw, 13px);
}

.contact__form .wpcf7-not-valid {
  border-color: #c0392b !important;
}

/* -------------------- Colonne coordonnées + carte -------------------- */
.contact__infos {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.contact__coord {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.5vw, 24px);
}

.contact__coord-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact__coord-label {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(11px, 0.85vw, 13px);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c05036;
}

.contact__coord-val {
  font-family: "Lato", Arial, sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  color: #2c2825;
  text-decoration: none;
  line-height: 1.5;
}

a.contact__coord-val {
  transition: color 0.3s ease;
}
a.contact__coord-val:hover {
  color: #c05036;
}

/* Carte Google Maps — ratio fixe, sans hauteur en px sur le wrapper. */
.contact__map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #cacaca;
}
.contact__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
