@charset "UTF-8";
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 8rem 0 5rem 0;
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
  color: var(--color-white);
  text-align: center;
}

.hero.with-blobs-hero::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple) 75%);
  -webkit-filter: blur(22px) brightness(1.12);
  filter: blur(22px) brightness(1.12);
  opacity: 0.5;
  z-index: 0;
  -webkit-animation: heroBlobFloat 7s ease-in-out infinite alternate;
  animation: heroBlobFloat 7s ease-in-out infinite alternate;
}

.hero .hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

.hero .hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.7rem, 6vw, 4.2rem);
  line-height: 1.08;
  margin: 0 0 1.3rem;
  letter-spacing: -0.01em;
  font-weight: 900;
}

.hero .hero__subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.13rem, 3vw, 1.45rem);
  margin: 0 0 2.4rem 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 100;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.1);
}

.hero .hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.hero .hero__actions .btn {
  font-size: 1.09rem;
  min-width: 170px;
  min-height: 48px;
  padding: 1rem 2.1rem;
  font-weight: 600;
  border-radius: 999px;
}

@-webkit-keyframes heroBlobFloat {
  0% {
    -webkit-transform: translateY(0) scale(1.02);
    transform: translateY(0) scale(1.02);
  }
  100% {
    -webkit-transform: translateY(35px) scale(1.07);
    transform: translateY(35px) scale(1.07);
  }
}
@keyframes heroBlobFloat {
  0% {
    -webkit-transform: translateY(0) scale(1.02);
    transform: translateY(0) scale(1.02);
  }
  100% {
    -webkit-transform: translateY(35px) scale(1.07);
    transform: translateY(35px) scale(1.07);
  }
}
.about {
  background: #fff;
  color: var(--color-black);
  padding: 4.5rem 0 2.8rem 0;
}
.about__container {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.about__intro {
  font-size: 1.1rem;
  color: var(--color-teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.1rem;
  opacity: 0.82;
  font-family: var(--font-heading);
}
.about__description {
  font-size: 1.17rem;
  line-height: 1.6;
  margin-bottom: 2.3rem;
  max-width: 600px;
  color: var(--color-black);
  opacity: 0.93;
  text-align: center;
}
.about__services {
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem 1.6rem;
  justify-items: stretch;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: 0.2rem;
}

/* Heavy animation for later - when made clickable */
/*
.about__service {
  background: #f9fafe;
  border-radius: 1.6rem;
  box-shadow: 0 2px 12px 0 rgba(22, 20, 43, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.1rem 1.2rem 1.5rem 1.2rem;
  transition: box-shadow 0.2s, transform 0.22s;
  min-height: 235px;
  will-change: transform;
  cursor: default;
}
.about__service:hover, 
.about__service:focus-within {
  box-shadow: 0 4px 32px 0 rgba(22, 20, 43, 0.1);
  transform: translateY(-6px) scale(1.025);
}
*/

/* VERY SUBTLE ANIMATION - For non-clickable informational cards */
.about__service {
  background: #f9fafe;
  border-radius: 1.6rem;
  box-shadow: 0 2px 12px 0 rgba(22, 20, 43, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.1rem 1.2rem 1.5rem 1.2rem;
  transition: box-shadow 0.4s ease, background 0.4s ease;
  min-height: 235px;
  cursor: default;
}

.about__service:hover,
.about__service:focus-within {
  box-shadow: 0 4px 16px 0 rgba(22, 20, 43, 0.06);
  background: #fdfdff;
}

.about__icon {
  margin-bottom: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about__icon svg {
  display: block;
  width: 50px;
  height: 50px;
}
.about__service-title {
  font-size: 1.11rem;
  font-weight: 700;
  color: var(--color-purple);
  margin-bottom: 0.3rem;
  font-family: var(--font-heading);
  letter-spacing: 0.01em;
}
.about__service-desc {
  font-size: 0.99rem;
  color: #39384b;
  opacity: 0.88;
  line-height: 1.44;
}

.about__services > .about__service:last-child {
  grid-column: 1/-1;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #f9fafe), to(#eef6fb));
  background: linear-gradient(90deg, #f9fafe 50%, #eef6fb 100%);
  -webkit-box-shadow: 0 4px 32px 0 rgba(22, 20, 43, 0.1);
          box-shadow: 0 4px 32px 0 rgba(22, 20, 43, 0.1);
  margin-top: 0.6rem;
  min-height: 185px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.about__scroll-cue {
  margin: 2rem auto 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0.45;
  -webkit-animation: bounce-down 1.8s infinite;
          animation: bounce-down 1.8s infinite;
}

@-webkit-keyframes bounce-down {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@keyframes bounce-down {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
.rooms {
  background: #fafcfe;
  position: relative;
  padding: 5.5rem 0 3.7rem 0;
  overflow: hidden;
}
.rooms__bg-art {
  position: absolute;
  top: 1.2rem;
  right: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}
.rooms__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.rooms__title {
  font-family: var(--font-heading);
  color: var(--color-purple);
  font-size: 1.38rem;
  font-weight: 700;
  margin-bottom: 2.7rem;
  letter-spacing: 0.14em;
  text-align: left;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.rooms__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 2.2rem 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.1rem 2.2rem;
}
.rooms__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #f7f6fa;
  border-radius: 1.4rem;
  -webkit-box-shadow: 0 1.5px 15px 0 rgba(90, 60, 130, 0.06);
          box-shadow: 0 1.5px 15px 0 rgba(90, 60, 130, 0.06);
  overflow: hidden;
  min-height: 300px;
  -webkit-transition: background 0.2s, -webkit-box-shadow 0.15s, -webkit-transform 0.13s;
  transition: background 0.2s, -webkit-box-shadow 0.15s, -webkit-transform 0.13s;
  transition: box-shadow 0.15s, transform 0.13s, background 0.2s;
  transition: box-shadow 0.15s, transform 0.13s, background 0.2s, -webkit-box-shadow 0.15s, -webkit-transform 0.13s;
  border: 1.5px solid #ece5f6;
}
.rooms__card:hover, .rooms__card:focus-within {
  -webkit-box-shadow: 0 7px 32px 0 rgba(120, 85, 190, 0.1);
          box-shadow: 0 7px 32px 0 rgba(120, 85, 190, 0.1);
  background: #fff;
  -webkit-transform: translateY(-3px) scale(1.015);
          transform: translateY(-3px) scale(1.015);
  border-color: #ddd1ed;
}
.rooms__photo {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  -webkit-filter: grayscale(0.1) brightness(0.98) contrast(1.01);
          filter: grayscale(0.1) brightness(0.98) contrast(1.01);
  border-bottom: 1.5px solid #ece5f6;
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}
.rooms__photo:hover, .rooms__card:hover .rooms__photo {
  -webkit-filter: grayscale(0) brightness(1.01) contrast(1.06);
          filter: grayscale(0) brightness(1.01) contrast(1.06);
}
.rooms__info {
  padding: 1.2rem 1.4rem 0.2rem 1.4rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.rooms__name {
  font-size: 1.13rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-purple);
  letter-spacing: 0.01em;
  margin-bottom: 0.23rem;
}
.rooms__meta {
  font-size: 0.99rem;
  color: #5c5570;
  opacity: 0.75;
  margin-bottom: 0.7rem;
  font-weight: 500;
}
.rooms__features {
  font-size: 0.98rem;
  color: #39384b;
  opacity: 0.86;
  margin: 0 0 0.7rem 0;
  padding: 0;
  list-style: none;
}
.rooms__features li {
  margin-bottom: 0.14em;
  padding-left: 1.07em;
  position: relative;
}
.rooms__features li:before {
  content: "–";
  color: var(--color-teal);
  position: absolute;
  left: 0;
  font-weight: bold;
  opacity: 0.44;
}
.rooms__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1.08rem 1.4rem 1.07rem 1.4rem;
  border-top: 1.5px solid #ece5f6;
  background: #faf7fd;
  font-size: 1rem;
  gap: 1.2rem;
}
.rooms__price {
  color: var(--color-purple);
  font-weight: 600;
  font-size: 1.07rem;
}
.rooms__price .rooms__price-unit {
  font-weight: 400;
  color: #9086a3;
  font-size: 0.97rem;
}
.rooms__details-link {
  display: inline-block;
  color: var(--color-teal);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--color-teal);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 2s cubic-bezier(0.6, 0, 0.4, 1);
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.rooms__details-link::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--color-teal), var(--color-purple));
  transition: all 1s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.rooms__details-link:hover::before {
  width: 200vw;
  height: 200vh;
}

.rooms__details-link:hover, .rooms__details-link:focus {
  background: transparent;
  color: #fff;
  border-color: var(--color-purple);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 25px rgba(124, 85, 164, 0.4);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.rooms__details-link:not(:hover) {
  will-change: auto;
}

.acteurs {
  position: relative;
  background: #fff;
  padding: 4.7rem 0 3.5rem 0;
  overflow: hidden;
}
.acteurs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.acteurs__title {
  font-family: var(--font-heading);
  color: var(--color-purple);
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 2.3rem;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}
.acteurs__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem 2.3rem;
  z-index: 1;
  position: relative;
}
.acteurs__card {
  background: #fff;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -ms-flex-preferred-size: calc(25% - 1.725rem);
      flex-basis: calc(25% - 1.725rem);
  border: 1.5px solid #ece5f6;
  border-radius: 1.2rem;
  -webkit-box-shadow: 0 2px 12px 0 rgba(80, 50, 110, 0.08);
          box-shadow: 0 2px 12px 0 rgba(80, 50, 110, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.45rem 0.8rem 1.05rem 0.8rem;
  -webkit-transition: border 0.15s, -webkit-box-shadow 0.18s, -webkit-transform 0.17s;
  transition: border 0.15s, -webkit-box-shadow 0.18s, -webkit-transform 0.17s;
  transition: box-shadow 0.18s, border 0.15s, transform 0.17s;
  transition: box-shadow 0.18s, border 0.15s, transform 0.17s, -webkit-box-shadow 0.18s, -webkit-transform 0.17s;
  text-align: center;
  cursor: pointer;
  position: relative;
  min-height: 170px;
  outline: none;
  text-decoration: none;
}
.acteurs__card:hover, .acteurs__card:focus-visible {
  -webkit-box-shadow: 0 6px 28px 0 rgba(40, 170, 140, 0.1);
          box-shadow: 0 6px 28px 0 rgba(40, 170, 140, 0.1);
  border-color: var(--color-teal);
  -webkit-transform: translateY(-4px) scale(1.028);
          transform: translateY(-4px) scale(1.028);
  z-index: 2;
}
.acteurs__logo-wrap {
  width: 6.5rem;
  height: 6.5rem;
  margin-bottom: 1.12rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #f4f0fa;
  border-radius: 50%;
  -webkit-box-shadow: 0 2px 7px 0 rgba(60, 30, 120, 0.07);
          box-shadow: 0 2px 7px 0 rgba(60, 30, 120, 0.07);
  overflow: hidden;
}
.acteurs__logo-wrap img {
  max-width: 85%;
  max-height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-filter: grayscale(0.13) brightness(0.98) contrast(1.03);
          filter: grayscale(0.13) brightness(0.98) contrast(1.03);
  -webkit-transition: -webkit-filter 0.2s;
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}
.acteurs__name {
  font-size: 1.01rem;
  font-family: var(--font-heading);
  color: #483a66;
  font-weight: 600;
  margin-top: 0.13rem;
  letter-spacing: 0.01em;
  white-space: normal;
  word-break: break-word;
}
.acteurs__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.7rem;
}
.acteurs__cta {
  display: inline-block;
  color: var(--color-teal);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--color-teal);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 2s cubic-bezier(0.6, 0, 0.4, 1);
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.acteurs__cta::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--color-teal), var(--color-purple));
  transition: all 1s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.acteurs__cta:hover::before {
  width: 200vw;
  height: 200vh;
}

.acteurs__cta:hover, .acteurs__cta:focus {
  background: transparent;
  color: #fff;
  border-color: var(--color-purple);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 25px rgba(124, 85, 164, 0.4);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.acteurs__cta:not(:hover) {
  will-change: auto;
}

/*==================
   ACTUS SECTION
==================*/
.news {
  position: relative;
  background: #fafcfe;
  padding: 4.7rem 0 3.5rem 0;
  overflow: hidden;
}
.news__bg-art {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.38;
}
.news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
.news__title {
  font-family: var(--font-heading);
  color: var(--color-purple);
  font-size: 1.28rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  letter-spacing: 0.13em;
  text-align: left;
  text-transform: uppercase;
}
.news__grid {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 2.1rem 2.2rem;
  position: relative;
  z-index: 1;
}
.news__card {
  background: #fafcfe;
  border-radius: 1.3rem;
  -webkit-box-shadow: 0 1.5px 14px 0 rgba(90, 60, 130, 0.06);
          box-shadow: 0 1.5px 14px 0 rgba(90, 60, 130, 0.06);
  border: 1.5px solid #ece5f6;
  overflow: hidden;
  min-height: 288px;
  -webkit-transition: border 0.12s, -webkit-box-shadow 0.15s, -webkit-transform 0.11s;
  transition: border 0.12s, -webkit-box-shadow 0.15s, -webkit-transform 0.11s;
  transition: box-shadow 0.15s, border 0.12s, transform 0.11s;
  transition: box-shadow 0.15s, border 0.12s, transform 0.11s, -webkit-box-shadow 0.15s, -webkit-transform 0.11s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.news__card:hover, .news__card:focus-within {
  -webkit-box-shadow: 0 8px 32px 0 rgba(120, 85, 190, 0.12);
          box-shadow: 0 8px 32px 0 rgba(120, 85, 190, 0.12);
  border-color: var(--color-teal);
  -webkit-transform: translateY(-2px) scale(1.015);
          transform: translateY(-2px) scale(1.015);
  background: #fff;
}
.news__card:hover .news__headline, .news__card:focus-within .news__headline {
  color: var(--color-teal);
}
.news__link {
  color: inherit;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  outline: none;
}
.news__link:hover, .news__link:focus {
  text-decoration: none;
}
.news__image {
  width: 100%;
  height: 120px;
  background-size: cover;
  background-position: center;
  background-color: #ece5f6;
  -webkit-transition: -webkit-filter 0.23s;
  transition: -webkit-filter 0.23s;
  transition: filter 0.23s;
  transition: filter 0.23s, -webkit-filter 0.23s;
  border-bottom: 1.5px solid #ece5f6;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-filter: grayscale(0.11) brightness(0.99);
          filter: grayscale(0.11) brightness(0.99);
}
.news__card:hover .news__image {
  -webkit-filter: grayscale(0) brightness(1.01);
          filter: grayscale(0) brightness(1.01);
}
.news__body {
  padding: 1.1rem 1.5rem 1.3rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.news__date {
  font-size: 0.97rem;
  color: #7c55a4;
  opacity: 0.74;
  margin-bottom: 0.2rem;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.news__headline {
  font-size: 1.05rem;
  color: #39384b;
  font-family: var(--font-heading);
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.01em;
  -webkit-transition: color 0.14s;
  transition: color 0.14s;
}
.news__excerpt {
  font-size: 0.98rem;
  color: #4e3a6a;
  opacity: 0.93;
  line-height: 1.5;
  margin: 0 0 0.5rem 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.news__readmore {
  color: var(--color-teal);
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: underline;
  -webkit-transition: color 0.14s;
  transition: color 0.14s;
}
.news__readmore:hover, .news__readmore:focus {
  color: var(--color-purple);
}
.news__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2.4rem;
}
.news__cta {
  display: inline-block;
  color: var(--color-teal);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--color-teal);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 2s cubic-bezier(0.6, 0, 0.4, 1);
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.news__cta::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--color-teal), var(--color-purple));
  transition: all 1s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.news__cta:hover::before {
  width: 200vw;
  height: 200vh;
}

.news__cta:hover, .news__cta:focus {
  background: transparent;
  color: #fff;
  border-color: var(--color-purple);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 25px rgba(124, 85, 164, 0.4);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news__cta:not(:hover) {
  will-change: auto;
}

/*=========================================
             CONTACT SECTION
=========================================*/
.home-contact {
  position: relative;
  padding: 4rem 0 4rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(var(--color-teal)), to(var(--color-purple)));
  background: linear-gradient(to bottom, var(--color-teal) 0%, var(--color-purple) 100%);
  color: var(--color-white);
  overflow: hidden;
  text-align: center;
}
.home-contact__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}
.home-contact__content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  margin: 0 auto 0 auto;
  padding: 4rem 1.2rem 4rem 1.2rem;
  border-radius: 18px;
  -webkit-box-shadow: 0 6px 36px rgba(123, 81, 167, 0.08);
          box-shadow: 0 6px 36px rgba(123, 81, 167, 0.08);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(2px);
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, -webkit-transform 0.8s;
  transition: opacity 0.8s, transform 0.8s;
  transition: opacity 0.8s, transform 0.8s, -webkit-transform 0.8s;
}
.home-contact__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--color-white);
  letter-spacing: -0.01em;
  line-height: 1.18;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}
.home-contact__desc {
  font-size: 1.13rem;
  font-family: var(--font-body);
  margin-bottom: 2.3rem;
  color: rgba(255, 255, 255, 0.95);
}
.home-contact__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.home-contact__actions .btn {
  min-width: 160px;
  min-height: 48px;
  font-size: 1.06rem;
  font-weight: 600;
}
.home-contact__wave-bottom {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  pointer-events: none;
}

/*──────────────────────────────────────────
  GLOBAL RESET & LAYOUT
──────────────────────────────────────────*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--color-black);
  margin: 0;
  padding: 0;
  background: var(--color-white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/*──────────────────────────────────────────
  VARIABLES & TYPOGRAPHY
──────────────────────────────────────────*/
:root {
  --color-purple: #5D2E8C;
  --color-teal: #0DA8A3;
  --color-black: #000000;
  --color-gray: #F5F5F5;
  --color-white: #FFFFFF;
  --color-transparent: rgba(0,0,0,0);
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --btn-radius: 30px;
  --btn-padding: 0.75rem 1.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
}
.site-header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.site-header .nav__logo {
  display: inline-block;
  position: relative;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-header .nav__logo:hover {
  transform: scale(1.02);
}
.site-header .nav__logo .logo--dark {
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.site-header .nav__logo .logo--light {
  display: block;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.site-header .nav__list {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.site-header .nav__list li a {
  text-decoration: none;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 0.5rem 0;
}

.site-header .nav__list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.site-header .nav__list li a:hover {
  transform: translateY(-2px);
  animation: colorFlow 1.2s ease-in-out forwards;
}

@keyframes colorFlow {
  0% { 
    color: var(--color-white);
    background: none;
  }
  30% { 
    color: transparent;
    background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
    background-clip: text;
    -webkit-background-clip: text;
  }
  70% { 
    color: transparent;
    background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
    background-clip: text;
    -webkit-background-clip: text;
  }
  100% { 
    color: var(--color-white);
    background: none;
  }
}

.site-header .nav__list li a:hover::after {
  width: 100%;
}

/* Scrolled header hover effects - keep solid color */
.site-header.scrolled .nav__list li a:hover {
  color: var(--color-teal);
  background: none;
  animation: none;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 
    0 4px 20px rgba(93, 46, 140, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border-bottom: 1px solid rgba(42, 177, 162, 0.1);
  padding: 0 2rem;
  margin: 0.5rem 5rem;
  border-radius: 16px;
  max-width: calc(100% - 2rem);
  left: 1rem;
  right: 1rem;
  width: auto;
}
.site-header.scrolled .nav__list a {
  color: var(--color-black);
}
.site-header.scrolled .nav__logo .logo--light {
  display: none;
  opacity: 0;
}
.site-header.scrolled .nav__logo .logo--dark {
  display: block;
  opacity: 1;
  max-width: 11rem;
}

.logo {
  max-width: 15rem;
  height: auto;
  display: block;
}


/* ==============================================
   FOOTER STYLES
   ============================================== */

.site-footer {
  background: linear-gradient(to bottom, var(--color-purple) 0%, #3d215a 40%, var(--color-black) 100%);
  color: var(--color-white);
  padding: 4rem 2rem 2.5rem;
  min-height: 60vh;
  position: relative;
  overflow: hidden;
}

.site-footer .footer__container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 1rem;
  align-items: start;
}

.site-footer .footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}


.site-footer .footer__brand .footer__logo {
  max-width: 280px;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.12));
}

.site-footer .footer__brand .footer__slogan {
  font-size: 1.1rem;
  opacity: 0.9;
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
  line-height: 1.4;
  max-width: 280px;
}

/* Footer Content Grid */
.footer__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin: 2.5rem 0;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Sections */
.footer__section {
  display: flex;
  flex-direction: column;
}

.footer__section-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer Links - Vertical Stack */
.footer__section .footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__section .footer__links li {
  margin: 0;
}

.footer__section .footer__links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer__section .footer__links a:hover {
  color: var(--color-white);
  transform: translateX(3px);
}

/* Footer Address/Contact */
.footer__address {
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
}

.footer__address p {
  margin: 0 0 0.7rem 0;
  line-height: 1.6;
  font-size: 1rem;
}

.footer__address a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__address a:hover {
  color: var(--color-white);
  text-decoration: underline;
}

/* Footer Copyright Line - Very Subtle */
.footer__copyright-line {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer__copyright-line span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 900px) {
  .site-footer .footer__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .footer__section:last-child {
    grid-column: 1 / -1;
  }}

@media (max-width: 600px) {
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer__section:last-child {
    grid-column: auto;
  }
  
  .footer__section-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .footer__copyright-line span {
    white-space: normal;
    line-height: 1.4;
  }
}
/*──────────────────────────────────────────
  BUTTONS
──────────────────────────────────────────*/
.btn {
  display: inline-block;
  padding: var(--btn-padding);
  border: none;
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 1rem;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  text-decoration: none;
  text-align: center;
}

.btn--primary {
  background: var(--color-white);
  color: var(--color-purple);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  -webkit-transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s;
  transition: transform 0.2s, box-shadow 0.2s, -webkit-transform 0.2s, -webkit-box-shadow 0.2s;
}

.btn--primary:hover {
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.btn--secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/*──────────────────────────────────────────
  PAGE HERO
──────────────────────────────────────────*/
.page-hero {
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
  color: var(--color-white);
  padding: 4.2rem 0 3.2rem 0;
  position: relative;
  text-align: center;
}
.page-hero__container {
  max-width: 780px;
  margin: 0 auto;
  padding: 5rem 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
  line-height: 1.13;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
  text-transform: uppercase;
}
.page-hero__subtitle {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.93);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  max-width: 540px;
}

/* ===== Mobile menu button ===== */
.mmenu-toggle {
  display: none; /* shown in responsive file */
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.6rem;
  z-index: 2001;
  color: var(--color-white); /* top-of-page default (white bars) */
}

/* Bars inherit currentColor (so they flip to black automatically) */
.mmenu-bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 2px;
  -webkit-transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: opacity 0.25s, -webkit-transform 0.25s;
  transition: transform 0.25s, opacity 0.25s;
  transition: transform 0.25s, opacity 0.25s, -webkit-transform 0.25s;
}

/* Animate into X */
.mmenu-toggle[aria-expanded=true] .mmenu-bar:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}

.mmenu-toggle[aria-expanded=true] .mmenu-bar:nth-child(2) {
  opacity: 0;
}

.mmenu-toggle[aria-expanded=true] .mmenu-bar:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(-45deg);
          transform: translateY(-8px) rotate(-45deg);
}

/* Close/X should be BLACK once menu is open */
.mmenu-toggle[aria-expanded=true] {
  color: var(--color-black);
}

/* Also switch to black when header is scrolled (closed state) */
.site-header.scrolled .mmenu-toggle {
  color: var(--color-black);
}

/* ===== Mobile panel =====
   Slightly translucent + blurred so items don’t look like they’re floating
   over the page when the header is scrolled. */
.mmenu-panel {
  position: fixed;
  inset: 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(120%) blur(6px);
  -webkit-backdrop-filter: saturate(120%) blur(6px);
  padding: 4rem 1.5rem 2rem 1.5rem;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: background 0.2s ease, -webkit-transform 0.3s ease;
  transition: background 0.2s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background 0.2s ease;
  transition: transform 0.3s ease, background 0.2s ease, -webkit-transform 0.3s ease;
  z-index: -1;
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) inset, 0 0 1px rgba(0, 0, 0, 0.06) inset;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) inset, 0 0 1px rgba(0, 0, 0, 0.06) inset; /* subtle hairline so it’s not “blunt” */
}

.mmenu-panel.is-open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.mmenu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

.mmenu-list a {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111;
}

/* Lock scroll when open */
body.mmenu-lock {
  overflow: hidden;
}

.acteurs-detail {
  background: #fff;
  padding: 4rem 0 2.5rem 0;
  min-height: 70vh;
}
.acteurs-detail__container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.acteurs-detail__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2.4rem;
  gap: 1rem;
}
.acteurs-detail__logo {
  width: 55%;
  height: auto;
  margin-bottom: 0.2rem;
  background: #f9fafe;
  border-radius: 0.7em;
  padding: 0.5em;
  -webkit-box-shadow: 0 2px 12px 0 rgba(60, 30, 120, 0.06);
          box-shadow: 0 2px 12px 0 rgba(60, 30, 120, 0.06);
}
.acteurs-detail__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-purple);
  text-align: center;
  letter-spacing: 0.01em;
  margin: 0;
}
.acteurs-detail__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
.acteurs-detail__section {
  margin-bottom: 0;
}
.acteurs-detail__subtitle {
  font-size: 1.15rem;
  color: var(--color-teal);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
  margin-top: 0;
  letter-spacing: 0.01em;
}
.acteurs-detail__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.02rem;
}
.acteurs-detail__contact-list li {
  margin-bottom: 0.18em;
}
.acteurs-detail__contact-list li a {
  color: var(--color-teal);
  text-decoration: underline;
}
.acteurs-detail__actions {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.acteurs-detail__back {
  color: var(--color-teal);
  font-weight: 600;
  font-size: 1.08rem;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--color-teal);
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 2s cubic-bezier(0.6, 0, 0.4, 1);
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.acteurs-detail__back::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 50%);
  left: var(--mouse-x, 50%);
  width: 0;
  height: 0;
  background: radial-gradient(circle, var(--color-teal), var(--color-purple));
  transition: all 1s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: -1;
}

.acteurs-detail__back:hover::before {
  width: 200vw;
  height: 200vh;
}

.acteurs-detail__back:hover, .acteurs-detail__back:focus {
  background: transparent;
  color: #fff;
  border-color: var(--color-purple);
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 8px 25px rgba(124, 85, 164, 0.4);
  will-change: transform;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.acteurs-detail__back:not(:hover) {
  will-change: auto;
}

.page-contact {
  background: var(--color-gray);
}

.page-contact .contact-main {
  max-width: 100%;
  margin: 0 auto;
  padding: 4rem 1rem;
  background: linear-gradient(
    180deg,
    rgba(245, 245, 245, .96) 0%,
    rgba(245, 245, 245, .96) 90%,
    var(--color-purple) 200%
  );
}

.page-contact .contact-main__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card--form {
  grid-area: 1 / 1 / 2 / 2;
}

.contact-card--transport {
  grid-area: 1 / 2 / 2 / 4;
}

/* Contact Form Success */
.contact-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
  color: #fff;
  border-radius: 12px;
  font-size: 1.15rem;
  padding: 1.25rem 2rem;
  margin-bottom: 2rem;
  margin-top: 1.25rem;
  box-shadow: 0 4px 20px rgba(93,46,140,0.10);
  font-family: var(--font-heading, sans-serif);
  font-weight: 600;
  animation: fadeInContactResult 0.7s cubic-bezier(.32,1.42,.42,.94);
}

@keyframes fadeInContactResult {
  from { opacity: 0; transform: translateY(-12px);}
  to   { opacity: 1; transform: none;}
}

.contact-result__icon {
  width: 2rem;
  height: 2rem;
  display: inline-block;
}


/* Gradient Contact Section */
.contact-gradient {
  background: linear-gradient(
    180deg,
    rgba(245, 245, 245, .96) -10%,
    var(--color-purple) 100%
  );
  padding: 6rem 0 0;
  margin-top: 0;
  padding-bottom: 4rem;
  position: relative;
  display: flex;
}

.contact-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(93, 46, 140, 0.3), transparent);
}

.contact-gradient__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.contact-gradient__header {
  margin-bottom: 4rem;
}

.contact-gradient__header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-family: var(--font-heading);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-gradient__header p {
  font-size: 1.2rem;
  color: var(--color-white);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-gradient__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.contact-gradient__detail {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 1rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  min-width: 60%;
  max-width: 40vw;
}

.contact-gradient__detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.contact-gradient__icon {
  width: 32px;
  height: 32px;
  color: var(--color-teal);
  flex-shrink: 0;
}

.contact-gradient__text {
  text-align: left;
  flex: 1;
}

.contact-gradient__text strong {
  font-size: 1.1rem;
  color: var(--color-purple);
  font-weight: 700;
  font-family: var(--font-heading);
}

.contact-gradient__address {
  color: rgba(51, 65, 85, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-gradient__link {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-gradient__link:hover {
  color: var(--color-purple);
  text-decoration: underline;
}

/* Card styling */
.contact-card {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(93, 46, 140, 0.08);
  border: 1px solid rgba(93, 46, 140, 0.06);
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.contact-card--form,
.contact-card--transport {
  width: 100%;
  max-width: none;
}


.contact-card:hover {
  transform: translateY(-0.3px);
  box-shadow: 0 12px 40px rgba(93, 46, 140, 0.12);
}

.contact-card__header {
  margin-bottom: 2rem;
  text-align: center;
}

.contact-card__header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-purple);
  margin-bottom: 0.5rem;
}

.contact-card__header p {
  color: var(--color-gray-dark);
  opacity: 0.8;
  font-size: 0.95rem;
}

/* Grid positioning removed - using grid-area instead */

/* Form styling */
.contact-form--simple {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
  width: 100%;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  font-weight: 600;
  color: var(--color-purple);
  font-size: 0.9rem;
}

.form-input,
.form-textarea {
  padding: 0.875rem 1rem;
  border: 2px solid rgba(93, 46, 140, 0.1);
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  background: var(--color-white);
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(42, 177, 162, 0.1);
  transform: translateY(-1px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  align-self: flex-start;
}

/* Contact details styling */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: fit-content;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(42, 177, 162, 0.05);
  border-radius: 8px;
  border: 1px solid var(--color-teal);
  width: 100%;
}

.contact-icon {
  width: 24px;
  height: 24px;
  color: var(--color-teal);
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

.contact-text {
  flex: 1;
}

.contact-text strong {
  display: block;
  font-size: 1rem;
  color: var(--color-purple);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.contact-address {
  color: var(--color-gray-dark);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-link {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  color: var(--color-purple);
}

/* Transport options styling - enhanced design */
.transport-options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

.transport-option {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  padding: 2.5rem 1rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(42, 177, 162, 0.03) 100%);
  border-radius: 20px;
  border: 2px solid rgba(42, 177, 162, 0.08);
  box-shadow: 0 8px 32px rgba(42, 177, 162, 0.06);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  overflow: hidden;
}

.transport-option::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.transport-option:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(42, 177, 162, 0.08) 100%);
  border-color: var(--color-teal);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(42, 177, 162, 0.15);
}

.transport-option:hover::before {
  opacity: 1;
}

.transport-option .transport-icon {
  width: 48px;
  height: 48px;
  padding: 12px;
  background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
  border-radius: 16px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.transport-option:hover .transport-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(42, 177, 162, 0.3);
}

.transport-option div {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.transport-option strong {
  font-size: 1rem;
  color: var(--color-purple);
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.transport-option small {
  color: var(--color-gray-dark);
  opacity: 0.75;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 400;
}

.transport-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.road-access {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(42, 177, 162, 0.08) 0%, rgba(138, 43, 226, 0.05) 100%);
  border-radius: 12px;
  border-left: 4px solid var(--color-teal);
  font-size: 1rem;
  color: var(--color-purple);
  font-weight: 600;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem;
  background: rgba(93, 46, 140, 0.05);
  border-radius: 6px;
}

.contact-map {
  margin-top: 1rem;
}

/* ========================================
   CONTACT PAGE RESPONSIVE STYLES
======================================== */

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .page-contact .contact-main {
    padding: 3rem 1rem;
  }
  
  .page-contact .contact-main__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 700px;
  }
  
  .contact-card--form,
  .contact-card--transport {
    max-width: 100%;
    grid-area: unset;
  }
  
  .contact-gradient__header h2 {
    font-size: 2rem;
  }

  .contact-gradient__detail {
    min-width: 60%;
    max-width: 45vw;
  } 
}

/* Mobile breakpoint */
@media (max-width: 768px) {
  .page-contact .contact-main {
    padding: 2rem 1rem;
  }
  
  .contact-card {
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .contact-card__header h2 {
    font-size: 1.25rem;
  }

  .contact-gradient__detail {
    min-width: 80%;
  } 
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-field {
    margin-bottom: 1rem;
  }
  
  .form-input,
  .form-textarea {
    width: 95%;
  }
  
  .btn--large {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
 
      /* Google Maps Button */
    .map-button-wrapper {
        text-align: center;
        margin: 3rem auto 4rem;
        max-width: 400px;
    }
    
    .map-directions-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
        color: var(--color-white);
        font-family: var(--font-heading);
        font-size: 1.05rem;
        font-weight: 600;
        text-decoration: none;
        border-radius: 999px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 4px 16px rgba(93, 46, 140, 0.25);
    }
    
    .map-directions-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 24px rgba(93, 46, 140, 0.35);
    }
    
    .map-directions-btn:active {
        transform: translateY(0);
    }
    
    .map-directions-btn svg {
        flex-shrink: 0;
    }
    
    /* Responsive */
    @media (max-width: 600px) {
        .map-directions-btn {
            font-size: 0.95rem;
            padding: 0.85rem 1.5rem;
        }
    }

  /* Transport options mobile */
  .transport-options {
    gap: 1rem;
  }
  
  .transport-option {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .transport-icon {
    width: 36px;
    height: 36px;
  }
  
  .contact-map iframe {
    height: 200px;
  }
}

/* Small mobile breakpoint */
@media (max-width: 480px) {
  .page-hero {
    padding: 2rem 0;
  }
  
  .page-hero__title {
    font-size: 1.75rem;
  }
  
  .page-hero__desc {
    font-size: 1rem;
  }
  
  .contact-card {
    padding: 1.25rem;
    max-width: 90vw;
  }

  .contact-main__content {
    place-items: center;
  }
  
  .contact-gradient {
    padding: 3rem 1rem;
  }
  
  .contact-gradient__header {
    margin-bottom: 2.5rem;
  }
  
  .contact-gradient__header h2 {
    font-size: 1.75rem;
  }
  
  .contact-gradient__header p {
    font-size: 1rem;
  }
  
  .contact-gradient__details {
    gap: 1.5rem;
  }
  
  .contact-gradient__detail {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .contact-gradient__text {
    text-align: center;
  }
  
  .transport-option {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .transport-options {
    flex-direction: column;
  }
  
  .road-access {
    font-size: 0.9rem;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}


.page-contact .contact-form__progress {
  height: 7px;
  background: var(--color-gray);
  border-radius: 999px;
  margin-bottom: 2.2rem;
  width: 100%;
  overflow: hidden;
}
.page-contact .contact-form__progress .contact-form__progress-bar {
  background: -webkit-gradient(linear, left top, right top, from(var(--color-teal)), to(var(--color-purple)));
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple));
  height: 100%;
  -webkit-transition: width 0.28s;
  transition: width 0.28s;
  border-radius: 999px;
}
.page-contact .contact-form__step {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.25rem;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
}
.page-contact .contact-form__step.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-animation: fadeInScale 0.35s cubic-bezier(0.43, 1.56, 0.42, 0.99);
          animation: fadeInScale 0.35s cubic-bezier(0.43, 1.56, 0.42, 0.99);
}
.page-contact .contact-form__step legend {
  font-family: var(--font-heading);
  font-size: 1.24rem;
  color: var(--color-purple);
  margin-bottom: 1rem;
  font-weight: 700;
}
.page-contact .contact-form__step label {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-black);
  margin-bottom: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.4rem;
}
.page-contact .contact-form__step label input, .page-contact .contact-form__step label textarea {
  margin-top: 0.2rem;
  border-radius: 7px;
  border: 1.5px solid var(--color-gray);
  padding: 0.65em 1em;
  font-size: 1.07rem;
  background: #f7fafd;
  color: var(--color-black);
  -webkit-transition: border 0.2s;
  transition: border 0.2s;
}
.page-contact .contact-form__step label input:focus, .page-contact .contact-form__step label textarea:focus {
  border: 1.5px solid var(--color-teal);
  outline: none;
}
.page-contact .contact-form__step label textarea {
  resize: vertical;
  min-height: 95px;
}
.page-contact .contact-form__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.3rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 1.2rem;
}
.page-contact .contact-form__summary {
  font-size: 1.05rem;
  color: var(--color-black);
  background: #f4f5fa;
  border-radius: 0.7em;
  padding: 1.1em 1.3em;
  margin-bottom: 1.3em;
  line-height: 1.7;
}
.page-contact .contact-form__consent {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}
.page-contact .contact-info {
  background: var(--color-white);
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 2px 18px rgba(123, 81, 167, 0.08);
          box-shadow: 0 2px 18px rgba(123, 81, 167, 0.08);
  padding: 2.3rem 1.5rem 2rem 1.5rem;
  width: 100%;
  max-width: 100%;
}
.page-contact .contact-info h2 {
  color: var(--color-purple);
  font-family: var(--font-heading);
  font-size: 1.19rem;
  margin-bottom: 0.9rem;
}
.page-contact .contact-info p, .page-contact .contact-info a {
  font-size: 1.03rem;
  color: var(--color-black);
  text-decoration: none;
  margin-bottom: 0.7rem;
  display: block;
  opacity: 0.93;
  word-break: break-all;
}
.page-contact .contact-info .contact-info__map {
  margin-top: 1.1rem;
  border-radius: 8px;
  overflow: hidden;
  -webkit-box-shadow: 0 2px 8px rgba(93, 46, 140, 0.07);
          box-shadow: 0 2px 8px rgba(93, 46, 140, 0.07);
  width: 100%;
}

@-webkit-keyframes fadeInScale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.room-highlight {
  background: var(--color-gray);
  padding: 0 0 4.5rem 0;
}
.room-highlight__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 350px;
  position: relative;
}
.room-highlight__tarifs {
  margin: 1.5rem 0 1.1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.32rem;
  font-size: 1.06rem;
  background: #f6f6f6;
  border-radius: 1.1rem;
  -webkit-box-shadow: 0 1.5px 14px 0 rgba(90, 60, 130, 0.06);
          box-shadow: 0 1.5px 14px 0 rgba(90, 60, 130, 0.06);
  padding: 1.1em 1.2em 1.1em 1.2em;
  color: #493a6b;
}
.room-highlight__tarif-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 0.7em;
  font-weight: 600;
  color: var(--color-teal);
  border-bottom: 1px dashed #e5e2ee;
  padding: 0.22em 0 0.13em 0;
}
.room-highlight__tarif-row:last-child {
  border-bottom: none;
}
.room-highlight__tarif-row span:last-child {
  font-weight: 800;
  color: var(--color-purple);
  letter-spacing: 0.01em;
  font-size: 1.12em;
}
.room-highlight__tarif-note {
  font-size: 0.98rem;
  color: #5c5570;
  margin-top: 0.24em;
  margin-bottom: 0.14em;
  font-style: italic;
  opacity: 0.93;
  line-height: 1.5;
}
.room-highlight__visual {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 355px;
          flex: 0 0 355px;
  max-width: 410px;
  min-width: 250px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.room-highlight__img {
  width: 98%;
  max-width: 340px;
  height: auto;
  border-radius: 2.5rem;
  -webkit-box-shadow: 0 6px 40px 0 rgba(93, 46, 140, 0.09);
          box-shadow: 0 6px 40px 0 rgba(93, 46, 140, 0.09);
  background: #f7f8fa;
}
.room-highlight__price {
  position: absolute;
  left: 1.5rem;
  bottom: 1.5rem;
  background: var(--color-teal);
  color: var(--color-white);
  font-family: var(--font-heading);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0.8rem 1.4rem 0.7rem 1.2rem;
  border-radius: 22px;
  -webkit-box-shadow: 0 2px 18px 0 rgba(13, 168, 163, 0.09);
          box-shadow: 0 2px 18px 0 rgba(13, 168, 163, 0.09);
  font-size: 1.17rem;
  z-index: 2;
  min-width: 140px;
}
.room-highlight__price-value {
  font-weight: 700;
  font-size: 1.6em;
  letter-spacing: -0.02em;
  line-height: 1.09;
  margin-bottom: 0.04em;
}
.room-highlight__price-unit {
  font-weight: 400;
  font-size: 0.86em;
  opacity: 0.82;
  line-height: 1.3;
  margin-top: 0.01em;
}
.room-highlight__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  padding: 3.2rem 2.5rem 3.2rem 2.8rem;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: var(--font-body);
}
.room-highlight__name {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  color: var(--color-purple);
  font-weight: 700;
  margin: 0 0 1.1rem 0;
  letter-spacing: -0.012em;
}
.room-highlight__desc {
  font-size: 1.1rem;
  color: #39384b;
  opacity: 0.89;
  margin: 0 0 1.1rem 0;
  line-height: 1.5;
  font-weight: 400;
}
.room-highlight__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.22rem;
  margin-bottom: 2rem;
}
.room-highlight__meta-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.65em;
  font-size: 1.02rem;
  color: #5c5570;
  opacity: 0.92;
  line-height: 1.45;
  margin-bottom: 0.03em;
}
.room-highlight__meta-label {
  font-weight: 600;
  color: var(--color-purple);
  display: inline-block;
  letter-spacing: 0.01em;
}
.room-highlight__meta-value {
  font-weight: 400;
  color: #39384b;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
.room-highlight__cta {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.13rem;
  background: #2c5aa0;
  color: white;
  border: none;
  border-radius: var(--btn-radius);
  padding: var(--btn-padding);
  margin-top: 0.55rem;
  -webkit-transition: background 0.13s, color 0.13s;
  transition: background 0.13s, color 0.13s;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  -webkit-box-shadow: 0 2px 12px 0 rgba(13, 168, 163, 0.09);
          box-shadow: 0 2px 12px 0 rgba(13, 168, 163, 0.09);
}

.room-highlight__cta:hover {
  background: #1e3a8a;
  color: white;
  text-decoration: none;
}

.room-highlight__email {
  background: #059669;
  color: white;
}

.room-highlight__email:hover {
  background: #047857;
  color: white;
  text-decoration: none;
}

.room-highlight__note {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.75rem;
  font-style: italic;
}

.room-highlight__cta:hover, .room-highlight__cta:focus {
  background: var(--color-purple);
  color: var(--color-white);
}

/* Room PDF download styling */
.room-highlight__actions {
  margin-top: 1.5rem;
}

.room-highlight__note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
  line-height: 1.4;
}

.room-highlight__cta span {
  margin-right: 0.5rem;
}

.room-highlight__gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.room-highlight__img {
  width: 98%;
  max-width: 340px;
  height: auto;
  border-radius: 2.5rem;
  -webkit-box-shadow: 0 6px 40px 0 rgba(93, 46, 140, 0.09);
          box-shadow: 0 6px 40px 0 rgba(93, 46, 140, 0.09);
  background: #f7f8fa;
}

.rooms-bottomnav {
  position: fixed;
  left: 50%;
  bottom: 2.2rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: rgba(252, 252, 255, 0.93);
  -webkit-box-shadow: 0 6px 24px 0 rgba(70, 45, 120, 0.1);
          box-shadow: 0 6px 24px 0 rgba(70, 45, 120, 0.1);
  border-radius: 999px;
  padding: 0.38rem 1.1rem 0.38rem 1.1rem;
  z-index: 120;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
}
.rooms-bottomnav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.rooms-bottomnav__btn {
  pointer-events: auto;
  background: none;
  border: none;
  color: var(--color-purple, #7c55a4);
  font-family: var(--font-heading, Montserrat, Arial, sans-serif);
  font-weight: 800;
  font-size: 1.08rem;
  border-radius: 999px;
  padding: 0.55em 1.6em;
  -webkit-transition: background 0.17s, color 0.16s, -webkit-box-shadow 0.17s, -webkit-transform 0.14s;
  transition: background 0.17s, color 0.16s, -webkit-box-shadow 0.17s, -webkit-transform 0.14s;
  transition: background 0.17s, color 0.16s, box-shadow 0.17s, transform 0.14s;
  transition: background 0.17s, color 0.16s, box-shadow 0.17s, transform 0.14s, -webkit-box-shadow 0.17s, -webkit-transform 0.14s;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 0.92;
  letter-spacing: 0.02em;
  cursor: pointer;
  outline: none;
}
.rooms-bottomnav__btn:hover, .rooms-bottomnav__btn:focus {
  background: var(--color-teal, #2AB1A2);
  color: #fff;
  opacity: 1;
  -webkit-transform: translateY(-2px) scale(1.045);
          transform: translateY(-2px) scale(1.045);
  -webkit-box-shadow: 0 3px 14px 0 rgba(43, 177, 162, 0.09);
          box-shadow: 0 3px 14px 0 rgba(43, 177, 162, 0.09);
}
.rooms-bottomnav__btn.is-active {
  background: var(--color-purple, #7c55a4);
  color: #fff;
  -webkit-box-shadow: 0 6px 24px 0 rgba(124, 85, 164, 0.1);
          box-shadow: 0 6px 24px 0 rgba(124, 85, 164, 0.1);
  opacity: 1;
  pointer-events: none;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.news__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 2.7rem 0 1rem 0;
}
.news__pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
}
.news__pagination ul li a, .news__pagination ul li span {
  display: block;
  min-width: 2.2rem;
  height: 2.2rem;
  line-height: 2.2rem;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
  color: var(--color-teal);
  background: #f2f5fa;
  text-decoration: none;
  -webkit-transition: background 0.14s, color 0.14s;
  transition: background 0.14s, color 0.14s;
  font-size: 1.08rem;
  border: 1.5px solid transparent;
}
.news__pagination ul li a:hover, .news__pagination ul li a:focus {
  background: var(--color-teal);
  color: #fff;
  border-color: var(--color-teal);
}
.news__pagination ul li .is-active {
  background: var(--color-purple);
  color: #fff;
  border-color: var(--color-purple);
}
.news__pagination ul li span {
  background: none;
  color: #999;
  border: none;
  cursor: default;
}

.article-hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  z-index: 1;
  background: #ece6fa;
}
.article-hero__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  -webkit-filter: brightness(0.93) contrast(1.04);
          filter: brightness(0.93) contrast(1.04);
  -webkit-transition: -webkit-filter 0.28s;
  transition: -webkit-filter 0.28s;
  transition: filter 0.28s;
  transition: filter 0.28s, -webkit-filter 0.28s;
}
.article-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(25, 20, 45, 0.88)), color-stop(52%, rgba(30, 19, 52, 0.48)), color-stop(99%, rgba(40, 25, 60, 0.3)));
  background: linear-gradient(180deg, rgba(25, 20, 45, 0.88) 0%, rgba(30, 19, 52, 0.48) 52%, rgba(40, 25, 60, 0.3) 99%);
  z-index: 1;
  pointer-events: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.article-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  margin: 4rem auto 2rem auto;
  color: #fff;
  text-align: center;
  padding: 5rem 1.5rem 5rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.article-hero__title {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-size: 2.65rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.45em;
  margin-top: 0.1em;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 32px rgba(22, 10, 44, 0.13), 0 1px 12px rgba(66, 44, 90, 0.07);
}
.article-hero__date {
  font-size: 1.06rem;
  font-family: var(--font-heading, "Montserrat", sans-serif);
  color: #ffffff;
  opacity: 0.87;
  margin-bottom: 1.18em;
  margin-top: 1em;
  text-shadow: 0 2px 8px rgba(20, 12, 44, 0.55);
  font-weight: 600;
  letter-spacing: 0.3em;
}
.article-hero__lead {
  font-size: 1.25rem;
  color: #e2defa;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 1.35em auto;
  line-height: 1.43;
  text-shadow: 0 2px 12px rgba(16, 10, 34, 0.16);
  font-weight: 500;
}
.article-hero__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.68em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 0.9em;
}
.article-hero__tag {
  background: rgba(255, 200, 255, 0.35);
  color: #f6f6f6;
  backdrop-filter: blur(25px);
  border-radius: 2em;
  font-size: 1.04rem;
  font-weight: 700;
  padding: 0.24em 1.14em;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(32, 18, 48, 0.13);
  border: 1.2px solid rgba(124, 85, 164, 0.17);
  opacity: 0.87;
  cursor: pointer;
  -webkit-transition: background 0.18s, color 0.18s, border 0.18s;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.article-hero__tag:hover, .article-hero__tag:focus {
  background: #fff;
  color: var(--color-purple, #7C55A4);
  border-color: var(--color-purple, #7C55A4);
  opacity: 1;
}

.article-body {
  max-width: 950px;
  margin: -5rem auto 5rem auto;
  background: #f6f6f6;
  border-radius: 1.5rem;
  -webkit-box-shadow: 0 6px 40px 0 rgba(90, 60, 130, 0.1);
          box-shadow: 0 6px 40px 0 rgba(90, 60, 130, 0.1);
  padding: 1rem 2.4rem 3.2rem 2.4rem;
  position: relative;
  z-index: 3;
}
.article-body h2, .article-body h3 {
  font-family: var(--font-heading, "Montserrat", sans-serif);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--color-teal, #2AB1A2);
  margin-top: 2.1em;
  margin-bottom: 0.37em;
  line-height: 1.18;
}
.article-body h2 {
  font-size: 1.59rem;
  margin-top: 0.1em;
  margin-bottom: 1.15em;
}
.article-body h3 {
  font-size: 1.22rem;
  margin-top: 1.35em;
  margin-bottom: 0.33em;
  font-weight: 700;
  color: #7c55a4;
}
.article-body ul {
  margin: 1.1em 0 1.1em 2em;
  padding: 0;
  list-style: disc inside;
  color: #39384b;
  font-size: 1.07rem;
}
.article-body p {
  font-size: 1.16rem;
  color: #39384b;
  line-height: 1.72;
  margin-bottom: 1.25em;
}
.article-body a, .article-body .news-article__contact-link {
  color: var(--color-teal, #2AB1A2);
  font-weight: 700;
  text-decoration: underline;
  -webkit-transition: color 0.17s;
  transition: color 0.17s;
}
.article-body a:hover, .article-body a:focus, .article-body .news-article__contact-link:hover, .article-body .news-article__contact-link:focus {
  color: var(--color-purple, #7C55A4);
}
.article-body blockquote {
  margin: 2em 0;
  padding-left: 1.1em;
  border-left: 3px solid var(--color-teal, #2AB1A2);
  font-style: italic;
  color: #7c55a4;
  opacity: 0.94;
  font-size: 1.17rem;
}
.article-body .article-stats {
  background: #f0f0f0;
  border-radius: 1rem;
  padding: 1.25em 1.4em;
  margin: 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2.4em 2.1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.article-body .article-stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 120px;
}
.article-body .article-stat__num {
  font-size: 2.5rem;
  color: var(--color-teal, #2AB1A2);
  font-weight: 900;
  font-family: var(--font-heading, "Montserrat", sans-serif);
  margin-bottom: 0.1em;
  letter-spacing: -0.01em;
}
.article-body .article-stat__label {
  font-size: 1.08rem;
  color: #7c55a4;
  opacity: 0.85;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.article-body .article-chart {
  margin: 1.6em 0;
  text-align: center;
}
.article-body .news-article__chart-caption {
  color: #888;
  font-size: 1.06rem;
}
.article-body .article-callout {
  background: #eaf9ef;
  border-left: 5px solid #6cca7e;
  padding: 1.25em 1.6em;
  border-radius: 1.1rem;
  margin: 2em 0;
  color: #295943;
  font-size: 1.13rem;
  font-weight: 500;
  -webkit-box-shadow: 0 2px 12px 0 rgba(60, 130, 90, 0.03);
          box-shadow: 0 2px 12px 0 rgba(60, 130, 90, 0.03);
}
.article-body .article-back {
  margin-top: 2.5rem;
  text-align: left;
}
.article-body .article-back-link {
  color: var(--color-teal, #2AB1A2);
  font-weight: 800;
  text-decoration: none;
  font-size: 1.17rem;
  letter-spacing: 0.01em;
  -webkit-transition: color 0.16s;
  transition: color 0.16s;
}
.article-body .article-back-link:hover, .article-body .article-back-link:focus {
  text-decoration: underline;
  color: var(--color-purple, #7C55A4);
}

.article-callout,
.article-pullquote {
  background: #f7f9fb;
  border-radius: 1rem;
  padding: 1.25em 1.4em;
  margin: 2em 0;
  -webkit-box-shadow: 0 1px 10px 0 rgba(70, 40, 90, 0.06);
          box-shadow: 0 1px 10px 0 rgba(70, 40, 90, 0.06);
}

.article-main {
  background: #f6f6f6;
}

#mess-loader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 20000;
  background: linear-gradient(120deg, var(--color-teal, #2ab1a2), var(--color-purple, #5d2e8c));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: opacity 0.7s cubic-bezier(0.42, 0, 0.58, 1), visibility 0.7s;
  transition: opacity 0.7s cubic-bezier(0.42, 0, 0.58, 1), visibility 0.7s;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.mess-loader__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
}

.mess-loader__logo {
  width: 20rem;
  height: auto;
  -webkit-filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.17));
          filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.17));
  -webkit-transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: opacity 0.5s, -webkit-transform 0.6s;
  transition: opacity 0.5s, transform 0.6s;
  transition: opacity 0.5s, transform 0.6s, -webkit-transform 0.6s;
}

.mess-loader__intro {
  font-size: 1.26rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 200;
  letter-spacing: 0.01em;
  margin-top: 0rem;
  opacity: 1;
  -webkit-transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: opacity 0.7s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.7s;
  transition: transform 0.7s, opacity 0.7s, -webkit-transform 0.7s;
  will-change: transform, opacity;
}

/* Spinner, as before */
.mess-loader__spinner {
  width: 38px;
  height: 38px;
  border: 3.7px solid rgba(255, 255, 255, 0.16);
  border-top: 3.7px solid #fff;
  border-radius: 50%;
  -webkit-animation: messSpin 1s linear infinite;
          animation: messSpin 1s linear infinite;
  margin: 2.1rem auto 0 auto;
  -webkit-transition: opacity 0.45s cubic-bezier(0.5, 0, 0.5, 1);
  transition: opacity 0.45s cubic-bezier(0.5, 0, 0.5, 1);
  opacity: 1;
}
.mess-loader__spinner.mess-fadeout {
  opacity: 0;
  -webkit-transition: opacity 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  transition: opacity 0.35s cubic-bezier(0.5, 0, 0.5, 1);
  pointer-events: none;
}

@-webkit-keyframes messSpin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes messSpin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Animate out (will add class from JS) */
#mess-loader.mess-leave {
  opacity: 0;
  -webkit-transition: opacity 0.7s cubic-bezier(0.42, 0, 0.58, 1) 0.35s, visibility 0.7s 1s;
  transition: opacity 0.7s cubic-bezier(0.42, 0, 0.58, 1) 0.35s, visibility 0.7s 1s;
  pointer-events: none;
  visibility: hidden;
}

.mess-loader__logo.mess-fadeout {
  opacity: 0;
  -webkit-transform: scale(0.85) translateY(-40px);
          transform: scale(0.85) translateY(-40px);
  -webkit-transition: opacity 0.6s, -webkit-transform 0.7s;
  transition: opacity 0.6s, -webkit-transform 0.7s;
  transition: opacity 0.6s, transform 0.7s;
  transition: opacity 0.6s, transform 0.7s, -webkit-transform 0.7s;
}

.mess-loader__intro.mess-move {
  opacity: 0;
  -webkit-transform: translateY(-40px) scale(0.98);
          transform: translateY(-40px) scale(0.98);
  -webkit-transition: opacity 0.65s, -webkit-transform 0.7s;
  transition: opacity 0.65s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.65s;
  transition: transform 0.7s, opacity 0.65s, -webkit-transform 0.7s;
}

/* Hide the hero intro until animation is done */
.hero__subtitle {
  opacity: 0;
  -webkit-transition: opacity 0.5s 0.05s;
  transition: opacity 0.5s 0.05s;
}

.hero__subtitle.mess-intro-in {
  opacity: 1;
  -webkit-animation: heroIntroFadeIn 0.7s cubic-bezier(0.43, 0, 0.54, 1) 0.06s both;
          animation: heroIntroFadeIn 0.7s cubic-bezier(0.43, 0, 0.54, 1) 0.06s both;
}

@-webkit-keyframes heroIntroFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-26px);
            transform: translateY(-26px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes heroIntroFadeIn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-26px);
            transform: translateY(-26px);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 900px) {
  .site-header {
    padding: 1.2rem 1rem;
  }
  .site-header .nav {
    flex-direction: column;
    gap: 0.7rem;
  }
  .site-header .nav__list {
    display: none;
  }
  .site-header.scrolled {
    padding: 0.8rem 1rem;
  }
  
  /* Footer mobile styles */
  .site-footer {
    padding: 3rem 1rem 2rem;
    min-height: auto;
  }
  
  .site-footer .footer__container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
    align-items: center;
  }
  
  .site-footer .footer__brand {
    align-items: center;
    text-align: center;
  }
  
  .site-footer .footer__brand .footer__slogan {
    max-width: 100%;
    text-align: center;
  }
  
  .site-footer .footer__nav {
    text-align: center;
    align-self: center;
  }
  
  .site-footer .footer__nav .footer__links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .site-footer .footer__nav .footer__links li a {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }
  
  .site-footer .footer__info {
    text-align: center;
    font-size: 0.95rem;
  }
  
  .mmenu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
  }
}
@media (max-width: 600px) {
  .logo {
    max-width: 10rem;
  }
}
/* Optional: slightly tighter panel spacing on very small screens */
@media (max-width: 480px) {
  .mmenu-panel {
    padding: 3.2rem 0.9rem 1.4rem;
  }
  .mmenu-list a {
    font-size: 1.1rem;
  }
}
@media (max-width: 1200px) {
  .hero .hero__inner {
    padding: 0 6rem;
  }
}
@media (max-width: 700px) {
  .hero {
    padding: 4.2rem 0 2.5rem;
    min-height: 65vh;
  }
  .hero .hero__title {
    font-size: 2.2rem;
  }
  .hero .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
  .hero .hero__actions .btn {
    min-width: 120px;
    padding: 0.8rem 1.3rem;
    font-size: 1rem;
  }
  .hero .hero__inner {
    padding: 0 2rem;
  }
}
@media (max-width: 600px) {
  .page-hero {
    padding: 4rem 0 2rem;
    margin-top: 0;
  }
  .page-hero__container {
    padding: 2rem 1.2rem;
  }
  .page-hero__title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  .page-hero__subtitle {
    font-size: 1.1rem;
  }
  .hero .hero__actions {
    margin-top: 2rem;
  }
}
@media (max-width: 900px) {
  .about__services {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.1rem;
  }
  .about__service {
    padding: 1.4rem 0.9rem 1.1rem;
    min-height: 180px;
  }
}
@media (max-width: 600px) {
  .about {
    padding: 2.2rem 0 1.1rem;
  }
  .about__intro {
    font-size: 0.98rem;
  }
  .about__description {
    font-size: 1rem;
  }
  .about__services {
    gap: 0.7rem;
  }
  .about__service-title {
    font-size: 1rem;
  }
  .about__service-desc {
    font-size: 0.93rem;
  }
}
@media (max-width: 900px) {
  .rooms__photo {
    height: 95px;
  }
  .rooms__info,
  .rooms__footer {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }
  .rooms__card {
    min-height: 205px;
  }
}
@media (max-width: 700px) {
  .rooms {
    padding: 2.2rem 0 1.3rem;
  }
  .rooms__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .rooms__bg-art {
    display: none;
  }
  .rooms__title {
    font-size: 1.03rem;
    margin-bottom: 1.3rem;
  }
  .rooms__card {
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .rooms-bottomnav {
    bottom: 3rem;
    padding: 0.25rem 0.3rem;
  }
  .rooms-bottomnav__btn {
    font-size: 0.8rem;
    padding: 0.4em 1em;
  }
}

@media (max-width: 900px) {
  .acteurs__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .acteurs__card {
    flex-basis: calc(30% - 1.725rem);
  }
}

@media (max-width: 600px) {
  .acteurs {
    padding: 2rem 0 1.2rem;
  }
  .acteurs__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .acteurs__logo-wrap {
    width: 52px;
    height: 52px;
  }
  .acteurs__title {
    font-size: 1.06rem;
  }
  .acteurs__card {
    flex-basis: calc(80% - 1.725rem);
  }
}

@media (max-width: 900px) {
  .news__image {
    height: 90px;
  }
  .news__body {
    padding: 0.8rem 1rem 1rem;
  }
  .news__card {
    min-height: 175px;
  }
}
@media (max-width: 600px) {
  .news {
    padding: 2rem 0 1.3rem;
  }
  .news__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .news__bg-art {
    display: none;
  }
  .news__title {
    font-size: 1.06rem;
    margin-bottom: 1.3rem;
  }
  .news__card {
    min-height: 0;
  }
}
@media (max-width: 700px) {
  .home-contact {
    padding: 1rem;
  }
  .home-contact__content {
    margin-bottom: 4rem;
  }
  .home-contact__title {
    font-size: 1.4rem;
  }
  .home-contact__actions .btn {
    min-width: 110px;
    font-size: 0.96rem;
  }
}
@media (max-width: 900px) {
  .page-contact .contact-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.5rem;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .page-contact .contact-main__form-wrap,
  .page-contact .contact-main__info {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .page-contact .contact-hero {
    padding: 6rem 0 2rem;
  }
  .page-contact .contact-main {
    padding: 2.2rem 0.4rem;
  }
  .page-contact .contact-main__form-wrap,
  .page-contact .contact-main__info {
    padding: 1.2rem 0.7rem;
  }
  .page-contact .contact-info {
    padding: 1.6rem 0.7rem;
  }
}
@media (max-width: 1200px) {
  .article-hero {
    height: 80vh;
  }
  .article-hero__content {
    padding: 0rem 0.6rem 3rem;
  }
}
@media (max-width: 900px) {
  .article-hero {
    height: 70vh;
    margin-top: 0;
  }
  .article-hero__title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .article-hero__lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .article-hero__content {
    padding: 1.5rem 1rem 1.5rem;
    justify-content: center;
  }
  .article-hero__img {
    opacity: 0.7;
  }
}
@media (max-width: 1200px) {
  .article-body {
    max-width: 96vw;
    padding: 2.4rem 3rem 2.2rem 3rem;
  }
}
@media (max-width: 700px) {
  .article-body {
    max-width: 99vw;
    padding: 2rem 1.2rem 2rem 1.2rem;
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  .room-highlight {
    padding: 0;
  }
  .room-highlight__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 0;
    padding: 2.5rem;
  }
  .room-highlight__gallery {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    overflow-x: scroll;
  }
  .room-highlight__tarifs {
    font-size: 0.96rem;
    padding: 0.7em 0.6em;
  }
  .room-highlight__tarif-note {
    font-size: 0.91rem;
  }
  .room-highlight__visual {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    min-width: 0;
    max-width: 95vw;
    margin-bottom: 1.8rem;
    background: transparent;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .room-highlight__img {
    width: 100%;
    max-width: 97vw;
    max-height: 175px;
    margin: 0.9rem 0 1.2rem;
    border-radius: 2rem;
  }
  .room-highlight__price {
    position: static;
    margin: 0.7rem 0 0.6rem 0.4rem;
    border-radius: 15px;
    min-width: 110px;
    font-size: 1.03rem;
  }
  .room-highlight__info {
    padding: 0.7rem 0.6rem;
  }
  .room-highlight__name {
    font-size: 1.35rem;
  }
  .room-highlight__desc {
    font-size: 0.99rem;
  }
  .room-highlight__meta {
    margin-bottom: 1.1rem;
  }
  .room-highlight__meta-row {
    font-size: 0.91rem;
  }
  .room-highlight__meta-value {
    font-size: 0.96em;
  }
  .room-highlight__cta {
    font-size: 0.97rem;
  }
}
@media (max-width: 700px) {
  .room-highlight__img {
    max-width: 56vw;
    max-height: 145px;
  }
}
@media (max-width: 600px) {
  .acteurs-detail {
    padding: 2rem 0 1.2rem;
  }
  .acteurs-detail__title {
    font-size: 1.22rem;
  }
}

/* Email template button styling */
.room-highlight__email {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.13rem;
  background: #059669;
  color: white;
  border: none;
  border-radius: var(--btn-radius);
  padding: var(--btn-padding);
  margin-top: 0.55rem;
  transition: background 0.13s, color 0.13s;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(13, 168, 163, 0.09);
}

.room-highlight__email:hover,
.room-highlight__email:focus {
  background: #047857;
  color: white;
  text-decoration: none;
}

.room-highlight__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .room-highlight__actions {
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
  }
  .room-highlight__cta,
  .room-highlight__email {
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
  }
}

@media (min-width: 640px) {
  .room-highlight__actions {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Enhanced Contact Info Section */
.contact-info__transport {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray);
}

.contact-info__transport h3 {
  color: var(--color-purple);
  font-family: var(--font-heading);
  font-size: 1.19rem;
  margin-bottom: 1rem;
}



.road-access {
  font-size: 1.02rem;
  color: var(--color-black);
  opacity: 0.9;
  padding: 0.5rem 0;
}

.contact-details .contact-detail:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--color-teal);
  flex-shrink: 0;
  margin-top: 0.15rem;
  stroke-width: 2.2;
}

.contact-text {
  flex: 1;
  line-height: 1.5;
}

.contact-text strong {
  color: var(--color-purple);
  font-weight: 600;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 0.25rem;
}

/* Contact details styling - consolidated */
.contact-address {
  color: var(--color-black);
  opacity: 0.85;
  font-size: 1.02rem;
  line-height: 1.4;
}

.contact-link {
  color: var(--color-teal);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.02rem;
  transition: color 0.2s ease;
  word-break: break-all;
}

.contact-link:hover,
.contact-link:focus {
  color: var(--color-purple);
  text-decoration: underline;
}

/* Mobile adjustments for contact details */
@media (max-width: 700px) {
  .contact-detail {
    gap: 0.6rem;
    margin-bottom: 1rem;
  }
  
  .contact-icon {
    width: 18px;
    height: 18px;
  }
  
  .contact-text strong {
    font-size: 1.02rem;
  }
  
  .contact-address,
  .contact-link {
    font-size: 1rem;
  }
}

/* ========================================
   SIGNATURE ANIMATION SYSTEM - "MESS FLOW"
   ======================================== */

/* Base signature animation keyframes */
@keyframes messFlow {
  0% {
    transform: translateY(0) scale(1);
    filter: brightness(1) saturate(1);
  }
  100% {
    transform: translateY(-5px) scale(1.015);
    filter: brightness(1.02) saturate(1.04);
  }
}

@keyframes messGlow {
  0%, 100% {
    box-shadow: 0 4px 20px rgba(42, 177, 162, 0.1);
  }
  50% {
    box-shadow: 0 8px 40px rgba(42, 177, 162, 0.25), 0 0 20px rgba(124, 85, 164, 0.15);
  }
}

@keyframes messIconSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(5deg) scale(1.1);
  }
  50% {
    transform: rotate(0deg) scale(1.15);
  }
  75% {
    transform: rotate(-5deg) scale(1.1);
  }
  100% {
    transform: rotate(0deg) scale(1);
  }
}

@keyframes messTextShimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

/* Enhanced hover effects with signature style */
.about__service {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.about__service::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(42, 177, 162, 0.1), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.about__service:hover::before {
  left: 100%;
}



.about__service:hover .about__icon {
  animation: messIconSpin 0.8s ease-in-out;
}

/* Enhanced room cards */
.rooms__card {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.rooms__card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(42, 177, 162, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.rooms__card:hover::after {
  opacity: 1;
}

.rooms__card:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.01) saturate(1.02);
  box-shadow: 0 20px 60px rgba(124, 85, 164, 0.2), 0 0 40px rgba(42, 177, 162, 0.15);
}

/* Enhanced actor cards */
.acteurs__card {
  transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.acteurs__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(45deg, var(--color-teal), var(--color-purple), var(--color-teal));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.acteurs__card:hover::before {
  opacity: 1;
}

.acteurs__card:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.01) saturate(1.02);
  box-shadow: 0 15px 50px rgba(42, 177, 162, 0.25);
}

.acteurs__card {
  overflow: visible;
}

.acteurs__logo-wrap {
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 10;
  position: relative;
  transform-origin: center center;
  backface-visibility: hidden;
}

.acteurs__card:hover {
  justify-content: center;
  align-items: center;
}

.acteurs__card:hover .acteurs__logo-wrap {
  transform: scale(1.4) translate3d(0, 0, 0) translateY(10px);
  z-index: 15;
  will-change: transform;
}

.acteurs__card:hover .acteurs__name {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.acteurs__name {
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.acteurs__card:hover .acteurs__logo {
  animation: messIconSpin 0.7s ease-in-out;
}

/* Enhanced news cards */
.news__card {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.news__card:hover {
  transform: translateY(-3px) scale(1.02);
  filter: brightness(1.01) saturate(1.02);
  box-shadow: 0 25px 70px rgba(124, 85, 164, 0.3), 0 0 50px rgba(42, 177, 162, 0.2);
}

.news__card:hover .news__headline {
  background: linear-gradient(90deg, var(--color-teal), var(--color-purple), var(--color-teal));
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: messTextShimmer 2s linear infinite;
}

/* Enhanced contact details */
.contact-detail {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border-radius: 8px;
  padding: 0.5rem;
  margin: -0.5rem;
}

.contact-detail:hover {
  background: linear-gradient(135deg, rgba(42, 177, 162, 0.05), rgba(124, 85, 164, 0.05));
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 20px rgba(42, 177, 162, 0.15);
}

.contact-detail:hover .contact-icon {
  animation: messIconSpin 0.6s ease-in-out;
  color: var(--color-purple);
}


.transport-option:hover .transport-icon {
  animation: messIconSpin 0.5s ease-in-out;
}

/* Signature button animations */
.btn {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.6s ease;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(42, 177, 162, 0.3);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .about__service:hover,
  .rooms__card:hover,
  .acteurs__card:hover,
  .news__card:hover,
  .contact-detail:hover,
  .transport-option:hover,
  .btn:hover {
    animation: none;
    transform: none;
  }
  
  .about__service:hover .about__icon,
  .acteurs__card:hover .acteurs__logo,
  .contact-detail:hover .contact-icon,
  .transport-option:hover .transport-icon {
    animation: none;
  }
}


/* ======================================
   PAGE HISTOIRE - STYLES
   ====================================== */

/* Utility */
.histoire-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.histoire-section {
    padding: 4rem 0 4rem 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--color-purple);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #5c5570;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle-text {
    text-align: center;
    font-size: 1.16rem;
    line-height: 1.7;
    color: #39384b;
    max-width: 700px;
    margin: 0 auto 3.5rem;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    color: white;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Sections */

.page-histoire .page-hero__container {
    max-width: 800px;
    margin: 0 auto;
}

.histoire-philosophy {
    background: linear-gradient(135deg, #f9fafe 0%, #fafcfe 100%);
    position: relative;
    overflow: hidden;
}

.histoire-philosophy::before,
.histoire-philosophy::after {
    content: '';
    position: absolute;
    pointer-events: none;
}

.histoire-philosophy::before {
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(93, 46, 140, 0.05) 0%, transparent 70%);
}

.histoire-philosophy::after {
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(13, 168, 163, 0.05) 0%, transparent 70%);
}

.histoire-philosophy__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.histoire-philosophy__content h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 2.5rem;
    font-weight: 900;
}

.philosophy-text {
    max-width: 700px;
    margin: 0 auto;
}

.philosophy-text p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5c5570;
    margin-bottom: 1rem;
}

.philosophy-text p:first-child {
    font-size: 1.2rem;
    color: #39384b;
    margin-bottom: 1.5rem;
}

.histoire-narrative {
    background: #fff;
}

.histoire-transformation {
    background: #fafcfe;
}

.histoire-services {
    background: #fff;
}

.histoire-governance {
    background: #f6f6f6;
}

.histoire-leadership {
    background: #fff;
}

.histoire-gallery {
    background: #f6f6f6;
}

.histoire-cta {
    background: linear-gradient(to bottom, var(--color-teal) 0%, var(--color-purple) 100%);
    color: var(--color-white);
    text-align: center;
    padding: 5rem 0;
}

.histoire-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.histoire-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Grids */
.histoire-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.histoire-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.histoire-shareholders {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.histoire-leaders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Cards */
.histoire-card {
    background: #f9fafe;
    border: 1.5px solid #ece5f6;
    border-radius: 1.6rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px 0 rgba(80, 50, 110, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.histoire-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 32px 0 rgba(120, 85, 190, 0.15);
    border-color: #ddd1ed;
}

.histoire-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-purple);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.histoire-card p {
    font-size: 1rem;
    color: #39384b;
    line-height: 1.5;
}

.histoire-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
    border-radius: 1.2rem;
    color: var(--color-white);
}

.histoire-card__logo {
    width: 120px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.histoire-card__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.histoire-leader-card {
    background: #fafcfe;
    border: 2px solid #ece5f6;
    border-radius: 1.6rem;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px 0 rgba(80, 50, 110, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.histoire-leader-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 12px 40px 0 rgba(93, 46, 140, 0.2);
    border-color: var(--color-purple);
}

.leader-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(93, 46, 140, 0.25);
    margin-bottom: 1.5rem;
}

.histoire-leader-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-purple);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.leader-role {
    display: block;
    font-size: 1.15rem;
    color: #5c5570;
    font-family: var(--font-body);
    font-weight: 600;
}

/* History */
.histoire-visual {
    position: relative;
}

.histoire-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 6px 40px 0 rgba(93, 46, 140, 0.09);
}

.histoire-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.histoire-visual:hover .histoire-image-wrapper img {
    transform: scale(1.02);
}

.histoire-date {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--color-purple);
    color: var(--color-white);
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(93, 46, 140, 0.3);
}

.histoire-date--teal {
    background: var(--color-teal);
    box-shadow: 0 4px 20px rgba(42, 177, 162, 0.3);
}

.histoire-text {
    font-family: var(--font-body);
    font-size: 1.16rem;
    line-height: 1.7;
    color: #39384b;
}

.histoire-text p {
    margin-bottom: 1.2rem;
}

.histoire-text strong {
    color: var(--color-purple);
    font-weight: 600;
}

.histoire-text-block {
    transition: none !important;
}

/* Percentage */
.histoire-percentage {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-teal);
    font-weight: 900;
    letter-spacing: -0.02em;
}

/* Ecosystem */
.histoire-ecosystem {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.histoire-ecosystem h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-purple);
    margin-bottom: 1rem;
    font-weight: 700;
}

.histoire-ecosystem p {
    font-size: 1.05rem;
    color: #39384b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ecosystem-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.ecosystem-tags span {
    background: rgba(42, 177, 162, 0.08);
    color: var(--color-purple);
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(42, 177, 162, 0.2);
}

/* Gallery */
.gallery-slider {
    position: relative;
    max-width: 750px;
    margin: 0 auto 1.5rem;
}

.gallery-image {
    max-width: 100%;
    border-radius: 1.2rem;
    box-shadow: 0 4px 32px 0 rgba(80, 50, 110, 0.12);
    height: 420px;
    width: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

.gallery-image.fade-out {
    opacity: 0.3;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(93, 46, 140, 0.25);
}

.gallery-nav:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 6px 24px rgba(93, 46, 140, 0.35);
}

.gallery-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.gallery-nav--prev {
    left: -60px;
}

.gallery-nav--next {
    right: -60px;
}

.gallery-counter {
    text-align: center;
    margin-top: 1.5rem;
}

#gallery-counter {
    color: #7c55a4;
    font-size: 1.05rem;
    font-weight: 600;
}

/* Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    min-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .histoire-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .histoire-cards {
        grid-template-columns: 1fr;
    }
    
    .histoire-shareholders {
        grid-template-columns: 1fr;
    }
    
    .histoire-leaders {
        grid-template-columns: 1fr;
    }
    
    .gallery-nav--prev {
        left: 15px;
        background: linear-gradient(135deg, rgba(13, 168, 163, 0.95), rgba(93, 46, 140, 0.95));
    }
    
    .gallery-nav--next {
        right: 15px;
        background: linear-gradient(135deg, rgba(13, 168, 163, 0.95), rgba(93, 46, 140, 0.95));
    }
    
    .histoire-section {
        padding: 3rem 0 2rem 0;
    }
}

@media (max-width: 700px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .histoire-date {
        font-size: 0.95rem;
        padding: 0.5rem 1rem;
    }
}

/* ======================================
   ACTEUR SOCIAL MEDIA LINKS
   ====================================== */

.acteur-social-links {
    margin: 3rem 0;
    padding: 2.5rem 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
}

.acteur-social-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 1.5rem;
	margin-top: 0;
    letter-spacing: -0.01em;
}

.acteur-social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(13, 168, 163, 0.1), rgba(93, 46, 140, 0.1));
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(93, 46, 140, 0.1);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    background: linear-gradient(135deg, var(--color-teal), var(--color-purple));
    box-shadow: 0 6px 20px rgba(93, 46, 140, 0.25);
}

.social-icon:active {
    transform: translateY(-1px) scale(1.05);
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-icon-default {
    opacity: 1;
}

.social-icon-hover {
    position: absolute;
    opacity: 0;
}

.social-icon:hover .social-icon-default {
    opacity: 0;
}

.social-icon:hover .social-icon-hover {
    opacity: 1;
}

@media (max-width: 600px) {
    .acteur-social-links {
        margin: 2rem 0;
        padding: 1.5rem 0;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon img {
        width: 20px;
        height: 20px;
    }
}

/* ==============================================
   MENTIONS LÉGALES PAGE STYLES
   ============================================== */

/* Legal Container & Wrapper */
.legal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-section {
    padding: 4rem 0;
    background: #fff;
}

.legal-section:nth-child(even) {
    background: #fafcfe;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content p {
    font-family: var(--font-body);
    font-size: 1.16rem;
    line-height: 1.7;
    color: #39384b;
    margin-bottom: 1.2rem;
}

.legal-content a {
    color: var(--color-teal);
    font-weight: 700;
    text-decoration: underline;
    transition: color 0.17s;
}

.legal-content a:hover,
.legal-content a:focus {
    color: var(--color-purple);
}

/* Legal Grid - Two Column Layout */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Legal Cards */
.legal-card {
    background: #f9fafe;
    border: 1.5px solid #ece5f6;
    border-radius: 1.6rem;
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 12px 0 rgba(80, 50, 110, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.legal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 32px 0 rgba(120, 85, 190, 0.15);
    border-color: #ddd1ed;
}

.legal-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-purple);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.legal-details p {
    font-size: 1rem;
    color: #39384b;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.legal-details strong {
    color: var(--color-purple);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Section Titles */
.legal-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    color: var(--color-purple);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .legal-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .legal-section .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 600px) {
    .legal-section {
        padding: 2rem 0;
    }
    
    .legal-content p {
        font-size: 1rem;
    }
    
    .legal-card {
        padding: 1.5rem 1rem;
    }
    
    .legal-section .section-title {
        font-size: 1.5rem;
    }
}