/*
Theme Name: Linda Pacreau v2
Theme URI: https://hypnotherapeute-lindapacreau.fr
Author: emandarine
Author URI: https://emandarine.com
Version: 2.0.0
*/

/* ----------------------------------------------------------------
   1. VARIABLES
   ---------------------------------------------------------------- */
:root {
  --c-primary: #003300;
  --c-secondary: #FDA061;
  --c-accent: #2B6429;
  --c-orange: #F27E30;
  --c-peach: #EDB39B;
  --c-text: #6A6A6A;
  --c-cream: #F7EFE8;
  --c-offwhite: #F7F5F3;
  --c-dark: #3E3B37;

  --font-head: 'Montserrat', sans-serif;
  --font-alt: 'Montserrat Alternates', sans-serif;
  --font-body: 'Work Sans', sans-serif;
  --font-bell: 'Bellota', sans-serif;

  --tr: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  color: #333333;
  margin: 0;
  padding: 0;
  overflow-x: clip;
}

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

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

p {
  margin-block-start: 0;
  margin-block-end: 0.9rem;
}

b,
strong {
  font-weight: 700;
}

svg.fas,
svg.fab {
  fill: currentColor;
  display: inline-block;
  height: 1em;
  vertical-align: -0.125em;
}

svg {
  fill: currentColor;
}

/* ----------------------------------------------------------------
   2. ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.animate-delay-1 {
  animation-delay: 0.35s;
}

.animate-delay-2 {
  animation-delay: 0.65s;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------------------
   3. ÉLÉMENTS COMMUNS
   ---------------------------------------------------------------- */
.body-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #333333;
  margin-bottom: 0.9rem;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--c-accent);
  color: var(--c-accent);
  background: transparent;
  padding: 10px 28px;
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--tr), color var(--tr);
  border-radius: 3px;
}

.btn-outline:hover {
  background: var(--c-accent);
  color: #fff;
}

.btn-outline--dark {
  border-color: var(--c-dark);
  color: var(--c-dark);
}

.btn-outline--dark:hover {
  background: var(--c-dark);
  color: #fff;
}

.btn-filled {
  display: inline-block;
  background: var(--c-text);
  border: 1px solid var(--c-accent);
  color: var(--c-offwhite);
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--tr), color var(--tr);
  align-self: flex-start;
}

.btn-filled:hover {
  background-color: transparent;
  color: var(--c-accent);
}

.btn-outline-white {
  background-color: var(--c-offwhite);
  display: inline-block;
  border: none;
  color: var(--c-primary);
  padding: 14px 44px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  transition: background var(--tr);
}

.btn-outline-white:hover {
  background: var(--c-secondary);
  color: var(--c-accent);
}

/* Dots pour galerie */
.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: background var(--tr), transform var(--tr);
  padding: 0;
}

.dot.is-active {
  background: var(--c-orange);
  transform: scale(1.25);
}

/* ----------------------------------------------------------------
   4. TOP BAR
   ---------------------------------------------------------------- */
.top-bar {
  background: var(--c-dark);
  padding: 0 8%;
  font-size: 12px;
  color: #BEBAB6;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0;
}

.top-bar-inner {
  max-width: 1905px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-bar-info {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #BEBAB6;
  transition: color var(--tr);
}

.top-bar-item:hover {
  color: #fff;
}

.top-bar-item i {
  color: var(--c-orange);
  font-size: 12px;
  flex-shrink: 0;
}

.top-bar-cta {
  display: flex;
  align-items: center;
}

.top-bar-rdv {
  background: var(--c-peach);
  color: #fff;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0;
  transition: background var(--tr);
}

.top-bar-rdv:hover {
  background: rgba(253, 160, 97, 0.7);
}

/* ----------------------------------------------------------------
   5. NAVIGATION
   ---------------------------------------------------------------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1905px;
  margin: 0 auto;
  padding: 0 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 90px;
}

.nav-logo {
  height: 65px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-menu .menu-item {
  font-family: var(--font-alt);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--c-accent);
  padding: 10px 15px;
  position: relative;
  transition: color var(--tr);
}

.nav-menu .menu-item::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--c-secondary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-menu .menu-item:hover,
.nav-menu .menu-item.is-active {
  color: var(--c-secondary);
}

.nav-menu .menu-item:hover::after,
.nav-menu .menu-item.is-active::after {
  transform: scaleX(1);
}

/* Burger mobile */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
  transition: all .3s;
}

.nav-burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-burger.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ----------------------------------------------------------------
   6. HEADER GENERIQUE PAGES SECONDAIRES
   ---------------------------------------------------------------- */
.bg-text {
  font-weight: bold;
  text-align: center;
}

.breadcrumb {
  padding: 1rem 0;
  white-space: unset;
}

.breadcrumb a {
  color: var(--c-accent);
}

.breadcrumb a:hover {
  color: var(--c-orange);
}

.breadcrumb span {
  padding: 0 0.75em;
}

.breadcrumb li+li:before {
  content: '|';
}


/* ----------------------------------------------------------------
   7. HERO SLIDER PAGE ACCUEL
   ---------------------------------------------------------------- */
.hero-slider {
  position: relative;
  height: 67vh;
  min-height: 520px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center center;
  will-change: transform;
}

.hero-slide.is-active .hero-slide-bg {
  animation: kenBurns 9s ease forwards;
}

@keyframes kenBurns {
  from {
    transform: scale(1) translate(0, 0);
  }

  to {
    transform: scale(1.12) translate(-1.5%, -1%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: #F7F5F3;
  opacity: 0.66;
  z-index: 1;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
  gap: 18px;
}

.hero-logo {
  width: clamp(255px, 22vw, 290px);
  height: auto;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.20));
}

.hero-title {
  font-family: var(--font-alt);
  font-size: clamp(45px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--c-orange);
  line-height: 1.2em;
  letter-spacing: 0;
}

/* ----------------------------------------------------------------
   8. BANDEAU CITATION ERICKSON PAGE ACCUEIL
   ---------------------------------------------------------------- */
.erickson-strip {
  background: var(--c-dark);
  padding: 2% 24px;
  text-align: center;
}

.erickson-inner {
  max-width: 1600px;
  margin: 0 auto;
}

.erickson-quote {
  font-family: var(--font-bell);
  font-size: 32px;
  font-weight: 300;
  font-style: normal;
  color: #F7EFE8;
  line-height: 1em;
  letter-spacing: -0.5px;
  text-transform: none;
  margin-bottom: 10px;
}

.erickson-author {
  display: block;
  font-family: var(--font-bell);
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  color: #F7EFE8;
  text-transform: none;
  letter-spacing: 0;
}

/* ----------------------------------------------------------------
   9. QUI JE SUIS PAGE ACCUEIL
   ---------------------------------------------------------------- */
.about-section {
  background: #fff;
  position: relative;
  overflow: hidden;
  padding: 5%;
}

.about-inner {
  max-width: 1040px;
  padding: 3% 0%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  min-height: 460px;
  position: relative;
  z-index: 1;
}

.about-label-col {
  flex: 0 0 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7EFE8;
  padding: 32px 0;
}

.about-vertical-label {
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 200;
  color: var(--c-text);
  text-transform: none;
  white-space: nowrap;
}

.about-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 56px 64px 64px;
  max-width: 960px
}

.about-name {
  font-family: var(--font-alt);
  font-size: clamp(26px, 2.8vw, 35px);
  font-weight: 600;
  color: var(--c-dark);
  line-height: 42px;
  margin-bottom: 18px;
}

.about-credential {
  font-family: var(--font-body);
  font-size: 25px;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.5em;
  margin-bottom: 32px;
  padding: 0% 20% 0% 0%;
}

.about-photo-col {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
  position: relative;
  z-index: 1;
}

.leaf-about {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ----------------------------------------------------------------
   10. L'HYPNOSE PAGE ACCUEIL
   ---------------------------------------------------------------- */
.hypnose-section {
  background: var(--c-offwhite);
  padding: 5%;
}

.hypnose-container {
  max-width: 970px;
  margin: 0 auto;
}

.hypnose-main-title {
  font-family: var(--font-alt);
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 400;
  color: var(--c-orange);
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.1;
}

.hypnose-grid {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.hypnose-col {
  flex: 1;
  max-width: 460px;
  background: url('https://hypnotherapeute-lindapacreau.fr/wp-content/uploads/2024/04/back-vert-scaled.jpg') center / cover;
  background-attachment: fixed;
  background-color: rgba(43, 100, 41, 0.7);
  background-blend-mode: soft-light;
  display: flex;
  flex-direction: column;
}

.hypnose-col:nth-of-type(1) .hypnose-card {
  margin: 100px 100px 100px -100px;
}

.hypnose-col:nth-of-type(2) .hypnose-card {
  margin: 100px -100px 100px 100px;
}

.hypnose-card {
  width: 100%;
  height: 100%;
  max-width: 460px;
  min-height: 360px;
  background-color: var(--c-secondary);
}

.hypnose-card-title {
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 600;
  color: var(--c-dark);
  margin: 30px;
  line-height: 33px;
}

.hypnose-card-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--c-dark);
  line-height: 25.5px;
  margin: 7px 30px 30px 30px
}

.hypnose-col:nth-of-type(1) .hypnose-card-text {
  text-align: right;
}

/* ----------------------------------------------------------------
   11. MES DOMAINES D'APPLICATION PAGE ACCUEIL
   ---------------------------------------------------------------- */
.domaines-section {
  background: #fff;
  padding: 5% 8%;
}

.domaines-header {
  max-width: 960px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.domaines-title {
  font-family: var(--font-alt);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 400;
  color: var(--c-orange);
  text-align: center;
  line-height: 1.2em;
}

.domaine-bloc {
  max-width: 970px;
  margin: 0 auto 20px;
  padding: 30px 30px 30px 0;
  display: flex;
  align-items: stretch;
  background: url('https://hypnotherapeute-lindapacreau.fr/wp-content/uploads/2024/04/back-vert-scaled.jpg') center / cover;
  background-attachment: fixed;
  background-color: rgba(43, 100, 41, 0.7);
  background-blend-mode: soft-light;
  overflow: hidden;
}

.domaine-bloc:last-child {
  margin-bottom: 0;
  flex-wrap: wrap;
  padding: 20px 20px 30px 20px;
}

.domaine-bloc-label {
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 0;
}

.domaine-bloc-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 200;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.domaine-bloc:last-child .domaine-bloc-label {
  flex: auto;
  width: 100%;
}

.domaine-bloc:last-child .domaine-bloc-label span {
  transform: unset;
  writing-mode: unset;

}

.domaine-cards {
  flex: 1;
  display: flex;
  gap: 30px;
}

.domaine-bloc:last-child .domaine-cards {
  gap: 20px;
}

.domaine-card {
  flex: 1;
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.domaine-content {
  background-color: var(--c-text);
  background-size: cover;
  background-position: center;
  background-blend-mode: soft-light;
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px;
  transition: all 1.5s ease-in-out;
  will-change: transform;
}

.domaine-card:hover .domaine-content {
  background-color: rgba(106, 106, 106, 0.25);
  transform: scale(1.1);
}

.domaine-text {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
  line-height: 1.3;
  margin: 0;
}

/* ----------------------------------------------------------------
   12. DÉROULEMENT D'UNE SEANCE PAGE ACCUEIL
   ---------------------------------------------------------------- */
.deroulement-section {
  background: var(--c-cream);
  padding: 5% 8%;
}

.deroulement-container {
  max-width: 1344px;
  margin: 0 auto;
  display: flex;
  min-height: 560px;
  align-items: stretch;
}

.deroulement-left {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.deroulement-gallery {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 380px;
  max-width: 80%;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.gallery-slide {
  flex: 0 0 100%;
  height: 100%;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background var(--tr);
}

.gallery-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}

.gallery-btn--prev {
  left: 12px;
}

.gallery-btn--next {
  right: 12px;
}

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.deroulement-address {
  color: var(--c-primary);
  padding: 22px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 22.5px;
  text-align: center;
}

.deroulement-address i {
  color: var(--c-orange);
  margin-right: 5px;
  font-size: 12px;
}

.deroulement-address a {
  color: var(--c-primary);
}

.deroulement-address a:hover {
  color: var(--c-accent);
}

.deroulement-right {
  flex: 1;
  background: var(--c-cream);
  display: flex;
  flex-direction: column;
}

.deroulement-title {
  font-family: var(--font-alt);
  font-size: clamp(24px, 3vw, 28px);
  font-weight: 500;
  color: var(--c-primary);
  margin-bottom: 20px;
  position: relative;
}

.deroulement-title--tarifs {
  margin-top: 36px;
}

.tarif-list {
  margin-bottom: 4px;
}

.tarif-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  padding: 15px 0;
}

.tarif-item:first-child {
  border-bottom: 1px solid var(--c-dark);
}

.tarif-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  color: var(--c-text);
  flex: 0 0 auto;
}

.tarif-price {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 17px;
  color: var(--c-text);
  text-align: right;
}

.tarif-price small {
  display: block;
  font-size: 12px;
  opacity: 0.75;
}

.deroulement-cta {
  margin-top: 32px;
  text-align: center;
}


/* ----------------------------------------------------------------
   13. TÉMOIGNAGES
   ---------------------------------------------------------------- */
.testimonials-section {
  background: #6A6A6A;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonials-container {
  max-width: 1600px;
  padding: 50px 0;
}

.testimonials-leaf {
  width: 96px;
  height: auto;
  margin: 0 auto;
  display: block;
  opacity: 0.6;
}

.testimonials-title {
  font-family: var(--font-body);
  font-size: clamp(40px, 5.5vw, 61px);
  font-weight: 200;
  color: var(--c-cream);
  text-align: center;
  padding: 0 24px;
}

.testimonials-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
}

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

.testimonials-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 100%;
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  color: var(--c-offwhite);
  line-height: 22.5px;
  margin: 0 auto 25px;
  max-width: 860px;
  text-align: center;
  padding: 20px;
}

.testimonial-author {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--c-offwhite);
}

.testimonial-btn {
  flex: 0 0 1em;
  width: 1em;
  height: 1em;
  background: transparent;
  border: none;
  color: rgba(209, 174, 143, 0.45);
  font-size: 44px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--tr);
  flex-shrink: 0;
}

.testimonial-btn:hover {
  color: #fff;
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonials-dots .dot {
  background: var(--c-secondary);
}

.testimonials-dots .dot.is-active {
  background: var(--c-primary);
}

.testimonials-cta {
  margin-top: 36px;
}


/* ----------------------------------------------------------------
   14. FOOTER
   ---------------------------------------------------------------- */
.site-footer {
  background: #fff;
  color: var(--c-text);
}

.footer-container {
  padding: 5% 8%;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  padding: 0 15% 0 0;
}

.footer-logo {
  width: auto;
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--c-primary);
  line-height: 1.5em;
}

.footer-heading {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-dark);
  margin-bottom: 18px;
}

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

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--c-accent);
  transition: color var(--tr);
}

.footer-nav a:hover,
.footer-nav li.current_page_item a {
  color: var(--c-secondary);
}

.footer-address {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--c-accent);
  font-style: normal;
  line-height: 1.85;
}

.footer-address p {
  margin-bottom: 4px;
}

.footer-address a {
  color: var(--c-accent);
  transition: color var(--tr);
}

.footer-address a:hover {
  color: var(--c-secondary);
}

.footer-mid {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #6A6A6A;
  padding: 10px 24px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 17px;
  color: var(--c-cream);
  line-height: 1.5em;
}

.footer-mid a {
  color: var(--c-cream);
  transition: color var(--tr);
}

.footer-mid a:hover {
  color: var(--c-secondary);
}

.footer-dark {
  background: #070707;
  padding: 16px 24px;
  text-align: center;
  display: block
}

.footer-dark-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.footer-dark-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5em;
  color: rgba(255, 255, 255, 1);
}

.footer-dark-text a {
  color: rgba(255, 255, 255, 1);
  transition: color var(--tr);
}

.footer-dark-text a:hover {
  color: #fff;
}

.footer-dark img {
  height: 30px;
}

/* SCROLL TO TOP  */
#smoothup {
  position: fixed;
  bottom: 60px;
  right: 10px;
  font-size: 20px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  background-color: var(--c-primary);
  border: var(--c-cream) solid 5px;
  outline: var(--c-primary) solid 1px;
  border-radius: 50%;
  z-index: 101;
  transition: all var(--tr);
}

#smoothup i {
  color: var(--c-cream);
}

#smoothup:hover {
  transform: rotate(360deg);
  background-color: var(--c-secondary);
  outline: var(--c-secondary) solid 1px;
}

/* ================================================================
   15. PAGE A PROPOS
   ================================================================ */

.page-hero {
  position: relative;
  height: 67vh;
  min-height: 520px;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.mission-strip {
  background: var(--c-dark);
  padding: 40px 24px;
  text-align: center;
}

.mission-inner {
  margin: 0 auto;
}

.mission-label {
  font-family: var(--font-bell);
  font-size: 28px;
  font-weight: 700;
  color: var(--c-offwhite);
  display: block;
  margin-bottom: 10px;
}

.mission-text {
  font-family: var(--font-bell);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 300;
  color: var(--c-offwhite);
  margin: 0;
  line-height: 1em;
}

/* Qui je suis */
.quisuis-section {
  background: #fff;
}

.quisuis-inner {
  padding: 5% 30px;
  max-width: 970px;
  gap: 3%;
  margin: 0 auto;
  display: flex;
}

.quisuis-card {
  flex: 1;
  background: var(--c-secondary);
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.quisuis-name {
  font-family: var(--font-alt);
  font-size: clamp(24px, 2.5vw, 50px);
  font-weight: 600;
  color: #662900;
  margin-bottom: 6px;
  line-height: 1.1em;
}

.quisuis-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5em;
  padding: 0% 15% 0% 0%;
}

.quisuis-photo {
  flex: 0 0 50%;
  overflow: hidden;
}

.quisuis-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mon Parcours */
.parcours-section {
  background-image: url(https://hypnotherapeute-lindapacreau.fr/wp-content/uploads/2024/04/feuille-25.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #E2E2E2;
  background-blend-mode: color-burn;
  position: relative;
}

.parcours-title {
  font-family: var(--font-alt);
  font-size: clamp(26px, 3vw, 50px);
  font-weight: 600;
  color: var(--c-dark);
  text-align: center;
}

.parcours-inner {
  max-width: 970px;
  margin: 0 auto;
  padding: 50px 30px;
}

.parcours-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.5em;
}

/* Ma Formation */
.formation-section {
  background: #fff;
}

.formation-inner {
  display: flex;
  max-width: 970px;
  margin: 0 auto;
  padding: 5% 30px;
  gap: 20px;
}

.formation-logo-col {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.formation-card {
  flex: 1;
  background: #769D7B;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.formation-title {
  font-family: var(--font-alt);
  font-size: 50px;
  font-weight: 600;
  color: var(--c-dark);
  line-height: 1.2em;
}

.formation-text {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 400;
  color: var(--c-offwhite);
  line-height: 1.5em;
  padding: 0% 15% 0% 0%;
}

/* A votre tour (CTA) */
.cta-section {
  background: var(--c-secondary);
  text-align: center;
}

.cta-inner {
  max-width: 970px;
  margin: 0 auto;
  padding: 5% 30px;
}

.cta-icon {
  fill: #FFFFFF75;
  color: #FFFFFF75;
  border-color: #FFFFFF75;
  font-size: 79px;
  width: 1em;
  height: 1em;
  margin: 0 auto;
  display: block;
}

.cta-title {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 31px;
}

.cta-text {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.3em;
  margin: 0 auto;
}


/* ================================================================
   16. PAGE MES DOMAINES D'APPLICATION
   ================================================================ */

/* Section contenu détaillé */
.domaines-detail-section {
  background: #fff;
  padding: 5% 30px;
}

.domaines-detail-intro {
  max-width: 970px;
  margin: 0 auto;

}

.domaines-detail-heading {
  font-family: var(--font-alt);
  font-size: clamp(45px, 3vw, 42px);
  font-weight: 400;
  text-align: center;
  color: var(--c-orange);
  line-height: 1.2em;
  margin-bottom: 20px;
}

.domaines-detail-intro p {
  font-size: 17px;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.5em;
}

/* Groupe par aspect */
.aspect-section {
  max-width: 970px;
  margin: 0 auto 20px;
}

.aspect-label {
  font-family: var(--font-alt);
  font-size: 30px;
  font-weight: 500;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 20px;
}

/* Carte domaine (texte gauche + image droite) */
.domaine-detail-card {
  display: flex;
  min-height: 450px;
  overflow: hidden;
  margin-bottom: 20px;
}

.domaine-detail-card:last-child {
  margin-bottom: 0;
}

.aspect-section:last-child .domaine-detail-card:last-child {
  min-height: 650px;
}

.domaine-detail-text {
  flex: 0 0 50%;
  padding: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-cream);
  order: 2;
}

.domaine-detail-card:nth-of-type(2n+1) .domaine-detail-text {
  order: -1;
}

.domaine-detail-title {
  font-family: var(--font-head);
  font-size: clamp(20px, 1.4vw, 20px);
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 14px;
  line-height: 1.2em;
}

.domaine-detail-body {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.5em;
}

.domaine-detail-img-wrapper {
  flex: 1;
  overflow: hidden;
}

.domaine-detail-img {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #F7EFE89C;
  background-blend-mode: soft-light;
  will-change: transform;
  transition: all 1.5s ease-in-out;
}

.domaine-detail-card:hover .domaine-detail-img {
  transform: scale(1.2);
  background-color: transparent;
}

/* Section FAQ */
.faq-section {
  background: #FDA06108;
  padding: 64px 8%;
}

.faq-title {
  font-family: var(--font-alt);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 600;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.2em;
}

.faq-grid {
  max-width: 970px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  align-items: start;
}

.faq-col {
  margin: 0px 0px 0px 0px;
  padding: 30px 0px 0px 0px;
  border-style: solid;
  border-width: 0.5px 0px 0px 0px;
  border-color: var(--c-cream);
}

.faq-item {
  border-width: 0.5px;
  border-color: #F1F4F5;
  background-color: #6A6A6A0D;
  padding: 20px 10px 20px 10px;
  margin-bottom: 20px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-alt);
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  color: var(--c-dark);
  gap: 12px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  line-height: 2em;
}

.faq-icon {
  flex: 0 0 32px;
  height: 32px;
  width: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-style: normal;
  font-weight: 300;
  color: var(--c-primary);
  transition: transform var(--tr), background var(--tr), color var(--tr);
  line-height: 1;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 300;
  color: var(--c-text);
  line-height: 1.5em;
  padding: 0;
}

.faq-item.is-open .faq-answer {
  max-height: 500px;
  padding: 0px 50px 30px 0px;
}

/* ================================================================
   17. PAGE CONTACT
   ================================================================ */
.formulaire {
  padding: 5%;
}

.formulaire-image {
  max-height: 450px;
  width: 100%;
  object-fit: cover;
}

.formulaire-coordonnees {
  color: var(--c-primary);
  text-align: center;
  font-size: 17px;
}

.formulaire-coordonnees-list-item {
  padding-block-end: calc(24px / 2);
}

.formulaire-title {
  font-family: var(--font-alt);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5em;
  color: var(--c-dark);
  text-align: center;
}

.map iframe {
  height: 450px;
  width: 100%;
}

/* ----------------------------------------------------------------
   18. RESPONSIVE
   ---------------------------------------------------------------- */
@media screen and (max-width: 1024px) {

  /* Nav burger */
  .nav-burger {
    display: flex;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--c-secondary);
    padding: 12px 0 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 800;
    gap: 0;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu .menu-item {
    padding: 11px 24px;
    width: 100%;
  }

  .nav-menu .menu-item::after {
    display: none;
  }

  .nav-menu .menu-item:hover,
  .nav-menu .menu-item.is-active {
    color: var(--c-primary);
    background-color: var(--c-cream);
  }

  /* L'hypnose */
  .hypnose-col:nth-of-type(1) .hypnose-card,
  .hypnose-col:nth-of-type(2) .hypnose-card {
    padding: 10px;
    margin: 0;
  }

  .hypnose-card-title {
    font-size: 25px;
    text-align: center;
  }

  /* Domaines */
  .domaines-section {
    padding: 5%;
  }

  /* Déroulement */
  .deroulement-section {
    padding: 5%;
  }

  .deroulement-gallery {
    margin: 0 auto 0 0;
  }

  /* Page mes domaines */
  .domaines-detail-section {
    padding: 10% 8% 0% 8%;
  }

  .domaines-detail-intro p {
    font-size: 20px;
  }

  /* Footer */
  .footer-container {
    padding: 5%;
  }

  .footer-logo-col {
    padding: 0 5% 0 0;
  }
}


@media screen and (max-width: 768px) {

  /* Top bar */
  .top-bar {
    display: none;
  }

  /* Hero */
  .hero-slider {
    height: 55vh;
  }

  /*Citation */
  .erickson-quote {
    font-size: 23px;
    line-height: 1.4em;
  }

  .erickson-author {
    font-size: 25px;
  }

  /* About */
  .about-text {
    padding: 32px 24px 16px;
  }

  .about-credential {
    font-size: 18px;
  }

  /* L'Hypnose */
  .hypnose-section {
    background-attachment: scroll;
  }

  .hypnose-card {
    padding: 28px 24px;
  }

  /* Déroulement */
  .deroulement-container {
    flex-direction: column;
  }

  .deroulement-left {
    flex: unset;
    order: 2;
  }

  .deroulement-gallery {
    max-width: 100%;
    height: 350px;
    flex: unset;
  }

  .deroulement-right {
    padding: 40px 24px;
  }

  /* Tarifs */
  .tarif-price {
    text-align: left;
  }

  /* Testimonials */
  .testimonials-wrapper {
    padding: 0 20px;
  }

  /* Page A propos */
  .page-hero {
    height: 55vh;
  }

  .quisuis-card {
    padding: 30px 25px;
  }

  /* Page mes domaines */
  .faq-section {
    padding: 44px 5%;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Footer */
  .site-footer {
    text-align: center;
  }

  .footer-logo-col {
    padding: 0 0 0 0;
  }

  .footer-logo {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-heading {
    margin-top: 30px;
  }
}

@media screen and (max-width: 480px) {

  /* Navigation */
  .nav-menu .menu-item {
    font-size: 14px;
  }

  /* Hero */
  .hero-title {
    font-size: 40px;
  }

  /* Erickson */
  .erickson-quote {
    font-size: 20px;
  }

  .erickson-author {
    font-size: 22px;
  }

  /* About */
  .about-inner {
    flex-direction: column;
  }

  .about-label-col {
    display: none;
  }

  .about-text {
    order: 2;
    text-align: center;
  }

  .about-name {
    font-size: 25px;
  }

  .about-photo {
    max-width: 200px;
    margin: 0 auto;
  }

  .about-credential {
    padding: 0;
  }

  /* L'Hypnose */
  .hypnose-grid {
    display: block;
  }

  .hypnose-main-title {
    font-size: 30px;
  }

  .hypnose-col:nth-of-type(1) {
    margin-bottom: 30px;
  }

  .hypnose-card-title {
    font-size: 20px;
  }

  .hypnose-col:nth-of-type(1) .hypnose-card-text,
  .hypnose-col:nth-of-type(2) .hypnose-card-text {
    text-align: center;
  }

  /* Domaines */
  .domaine-bloc {
    display: block;
    padding: 0 20px 20px 20px;
  }

  .domaine-bloc-label {
    display: block;
  }

  .domaine-bloc-label span {
    transform: rotate(0deg);
    writing-mode: unset;
    display: block;
    text-align: center;
  }

  .domaine-cards {
    flex-direction: column;
  }

  .domaine-card {
    flex: unset;
  }

  .domaines-title {
    font-size: 30px;
  }

  /* Déroulement */
  .deroulement-title {
    text-align: center;
  }

  /* Testimonials */
  .testimonials-title {
    font-size: 30px;
  }

  .testimonial-text {
    max-width: 300px;
    font-size: 16px;
    padding: 20px 0;
  }

  /* Page A propos */
  .quisuis-inner {
    flex-direction: column;
  }

  .formation-inner {
    flex-direction: column;
  }

  /* Page mes domaines */
  .domaines-detail-heading {
    font-size: 30px;
  }

  .domaines-detail-intro p {
    font-size: 16px;
  }

  .aspect-label {
    font-size: 25px;
  }

  .domaine-detail-card {
    flex-direction: column;
  }

  .domaine-detail-card:nth-of-type(2n+1) .domaine-detail-text {
    order: 2;
  }

  .domaine-detail-body {
    font-size: 16px;
  }

  .domaine-detail-img {
    min-height: 220px;
  }

  /* Footer */
  .footer-mid {
    font-size: 14px;
    padding: 16px;
  }

  .footer-dark {
    padding: 16px;
  }

  .footer-dark-inner {
    flex-direction: column;
  }

  .footer-dark-text {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# 19.TARTE AU CITRON
--------------------------------------------------------------*/
/* Font */
#tarteaucitronRoot * {
  font-family: var(--font-family-1) !important;
}

/* Couleurs background et texte des boutons accepter */
#tarteaucitronAlertBig #tarteaucitronPersonalize2,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllAllowed.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsAllowed .tarteaucitronAllow {
  background-color: var(--c-primary);
  color: var(--c-offwhite);
}

/* Couleurs background et texte des boutons refuser */
#tarteaucitronAlertBig #tarteaucitronAllDenied2,
#tarteaucitron #tarteaucitronServices #tarteaucitronAllDenied.tarteaucitronIsSelected,
#tarteaucitron #tarteaucitronServices .tarteaucitronLine.tarteaucitronIsDenied .tarteaucitronDeny {
  background-color: var(--c-orange);
  color: var(--c-offwhite);
}

/* Autres ajustements */
div#tarteaucitronAlertBig:before {
  display: none;
}

button#tarteaucitronPrivacyUrl {
  display: block;
  margin: 0 auto;
  width: 200px;
  padding: 5px 10px;
  height: 40px;
}

button#tarteaucitronPersonalize2,
button#tarteaucitronAllDenied2,
button#tarteaucitronCloseAlert,
button#tarteaucitronPrivacyUrl {
  text-align: center;
}

@media screen and (max-width: 900px) {

  button#tarteaucitronCloseAlert,
  button#tarteaucitronPersonalize2,
  button#tarteaucitronAllDenied2,
  button#tarteaucitronPrivacyUrl {
    min-width: 150px;
    margin: 5px auto;
  }
}

#tarteaucitronIcon #tarteaucitronManager img {
  width: 30px;
  height: 30px;
}

/*--------------------------------------------------------------
# 20.SKIP LINKS
--------------------------------------------------------------*/
/* Utile pour l'accessibilité : lien direct vers le contenu principal */
.skip-link {
  position: absolute;
  left: -9999px;
  padding: 0.5em 1em;
  background: #333;
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  position: static;
}

/*--------------------------------------------------------------
# 21.GUTENBERG
--------------------------------------------------------------*/
/* Grande largeur pour Gutenberg */
.content .alignwide {
  margin-left: calc(25% - 25vw);
  margin-right: calc(25% - 25vw);
}

/* Pleine largeur pour Gutenberg */
.content .alignfull {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  max-width: 100vw;
  width: auto;
}

.wp-block-cover.alignfull,
.wp-block-cover-image.alignfull {
  width: 100vw;
}

.wp-block-cover.alignwide,
.wp-block-cover-image.alignwide {
  width: auto;
}

/* l'alignement grande largeur se comporte comme le pleine largeur en dessous de 768px */
@media screen and (max-width: 768px) {
  .content .alignwide {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/* ajustements block Gutenberg */
.content ul.blocks-gallery-grid,
.content ul.wp-block-gallery {
  margin-left: 0;
}

.content ul.wp-block-post-template,
.content ul.wp-block-query-loop {
  list-style: none;
}

.content figure.wp-block-gallery {
  margin-left: 0;
  margin-right: 0;
}

.wp-block-gallery.aligncenter {
  justify-content: center;
}

@media screen and (min-width: 601px) {
  .content .wp-block-media-text figure:not(:last-child) {
    margin-bottom: 0;
  }
}

/* Animation galerie Gutenberg */
.wp-block-gallery .wp-block-image a {
  transition: 0.5s all ease-in-out;
}

.wp-block-gallery .wp-block-image a::after {
  content: url("data:image/svg+xml; utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='white'><path d='M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM184 296c0 13.3 10.7 24 24 24s24-10.7 24-24l0-64 64 0c13.3 0 24-10.7 24-24s-10.7-24-24-24l-64 0 0-64c0-13.3-10.7-24-24-24s-24 10.7-24 24l0 64-64 0c-13.3 0-24 10.7-24 24s10.7 24 24 24l64 0 0 64z'/></svg>");
  opacity: 0;
  transition: all 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 10000;
  position: absolute;
  top: calc(50% - 1rem);
  left: calc(50% - 1rem);
  height: 2rem;
  width: 2rem;
}

.wp-block-gallery .wp-block-image a:hover {
  transform: scale(1.05);
  filter: grayscale(1) contrast(1.2);
}

.wp-block-gallery .wp-block-image a:hover::after {
  opacity: 1;
}

/*--------------------------------------------------------------
# 22.PAGE 404
--------------------------------------------------------------*/
#ghost {
  display: block;
  position: relative;
  left: -2000px;
  opacity: 0;
  animation: appear-left 2s 0.1s ease-out forwards;
}

#ghost path {
  opacity: .2;
  fill: var(--c-primary);
}

#ghost circle,
#ghost ellipse {
  fill: var(--c-primary);
}

@keyframes appear-left {
  to {
    left: 0;
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# 23.FORMULAIRE DE CONTACT
--------------------------------------------------------------*/
.control.has-icons-left .icon,
.control.has-icons-right .icon {
  color: var(--main-text-color);
}

.control.has-icons-left .icon svg,
.control.has-icons-right .icon svg {
  height: 1rem;
}

.input,
.textarea,
.select select {
  background-color: #fff;
  color: var(--c-text);
  border: 1px solid var(--c-text);
  border-radius: 0;
  box-shadow: none;
  font-family: inherit;
  font-weight: inherit;
  font-size: 1rem;
}

textarea.textarea::placeholder,
input.input::placeholder {
  color: var(--c-text);
  opacity: 1;
}

.select:not(.is-multiple):not(.is-loading):after {
  border-color: var(--c-accent);
}

input.input::-ms-input-placeholder,
textarea.textarea::-ms-input-placeholder {
  color: var(--c-text);
}

input {
  font-family: inherit;
}

.textarea {
  padding-left: calc(.75em - 1px);
  padding-bottom: calc(.5em - 1px);
  padding-right: calc(.75em - 1px);
  padding-top: calc(.5em - 1px);
}

.checkbox {
  margin-right: 0.75rem;
}

.textarea:hover,
.textarea.is-hovered,
.input:hover,
.input.is-hovered,
.select select:hover,
.select select.is-hovered {
  border-color: var(--c-text);
}

.field-body {
  flex-basis: auto;
}