@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

body {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #3A3632;
  background-color: #FAF7F3;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.35s ease;
}

ul, ol {
  list-style: none;
}

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.15;
  color: #2A2A25;
}

h1 {
  font-size: 3.25rem;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.4rem;
  }
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.9rem;
  }
}

h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
  color: #3A3632;
}
p strong {
  font-weight: 600;
  color: #C8612A;
}

.text-primary {
  color: #C8612A;
}

.text-secondary {
  color: #7A3B2E;
}

.text-dark {
  color: #2A2A25;
}

.text-light {
  color: #6B645C;
}

.text-white {
  color: #FDFCFA;
}

.text-center {
  text-align: center;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
}

.section-title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 3rem;
  color: #2A2A25;
  position: relative;
  letter-spacing: -0.02em;
}
.section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #C8612A;
  margin: 1rem auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all 0.35s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  line-height: 1;
}
.btn--primary {
  background-color: #C8612A;
  color: #FDFCFA;
  border-color: #C8612A;
}
.btn--primary:hover {
  background-color: #FDFCFA;
  color: #C8612A;
  border-color: #C8612A;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 97, 42, 0.3);
}
.btn--secondary {
  background-color: #7A3B2E;
  color: #FDFCFA;
  border-color: #7A3B2E;
}
.btn--secondary:hover {
  background-color: #5E2D22;
  border-color: #5E2D22;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(122, 59, 46, 0.3);
}
.btn--outline {
  background-color: transparent;
  color: #FDFCFA;
  border-color: rgba(253, 252, 250, 0.6);
}
.btn--outline:hover {
  background-color: #FDFCFA;
  color: #C8612A;
  border-color: #FDFCFA;
}
.btn--dark {
  background-color: #2A2A25;
  color: #FDFCFA;
  border-color: #2A2A25;
}
.btn--dark:hover {
  background-color: #1C1C18;
  border-color: #1C1C18;
  transform: translateY(-2px);
}
.btn--ghost {
  background-color: transparent;
  color: #C8612A;
  border-color: #C8612A;
}
.btn--ghost:hover {
  background-color: #C8612A;
  color: #FDFCFA;
}
.btn--lg {
  padding: 1.125rem 2.75rem;
  font-size: 1.05rem;
}
.btn--sm {
  padding: 0.625rem 1.5rem;
  font-size: 0.9rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none;
}

.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  transition: all 0.5s ease;
  background-color: rgba(253, 252, 250, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  pointer-events: none;
}
.main-nav .menu, .main-nav .site-logo {
  pointer-events: auto;
}
.hero-page .main-nav {
  top: 10px;
  left: 3rem;
  right: 3rem;
  background-color: transparent;
  backdrop-filter: none;
  border-radius: 60px;
  padding: 0.3rem 1.5rem;
}
.main-nav.nav-scrolled {
  top: 3px;
  left: 1.5rem;
  right: 1.5rem;
  background-color: rgba(253, 252, 250, 0.97);
  border-bottom: none;
  border-radius: 60px;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  padding: 0.35rem 1.75rem;
}
.main-nav .menu {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav .menu--left {
  justify-content: flex-end;
}
.main-nav .menu--right {
  justify-content: flex-start;
}
.main-nav .menu li {
  position: relative;
  list-style: none;
}
.main-nav .menu li a {
  display: block;
  padding: 0.6rem 1rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2A2A25;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 50px;
}
.main-nav .menu li a:hover {
  color: #C8612A;
  border-color: #C8612A;
}
.main-nav .menu li.current_page_item a {
  color: #C8612A;
  font-weight: 700;
  border-color: #C8612A;
}
@media (min-width: 769px) {
  .hero-page .main-nav:not(.nav-scrolled) .menu li a {
    color: #FDFCFA;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  }
  .hero-page .main-nav:not(.nav-scrolled) .menu li.current_page_item a {
    color: #FDFCFA;
    border-color: #FDFCFA;
  }
}

.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 1.75rem;
  width: 75px;
  height: 75px;
  background: transparent;
  transition: all 0.35s ease;
  position: relative;
}
.hero-page .site-logo {
  width: 65px;
  height: 65px;
  top: 0;
  background: #FDFCFA;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin: 0 1.25rem;
}
.hero-page .nav-scrolled .site-logo {
  background: transparent;
  box-shadow: none;
}
.nav-scrolled .site-logo {
  top: 0;
  width: 55px;
  height: 55px;
  margin: 0 1.25rem;
}
.site-logo img {
  height: 75px;
  width: auto;
  transition: all 0.35s ease;
}
.hero-page .site-logo img {
  height: 58px;
}
.nav-scrolled .site-logo img {
  height: 59px;
}

.site-logo-mobile {
  display: none;
}

.menu-toggle {
  display: none;
}

.menu-overlay {
  display: none;
}

@media (max-width: 768px) {
  .site-header {
    display: none;
  }
  .main-nav .site-logo {
    display: none;
  }
  .main-nav {
    background: none;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    border-radius: 0;
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    width: 300px;
    height: 100vh;
    max-width: none;
    padding: 0;
    background-color: #FDFCFA;
    flex-direction: column;
    justify-content: center;
    transition: right 0.35s ease;
    box-shadow: 0 8px 32px rgba(42, 42, 37, 0.14);
    z-index: 1001;
    pointer-events: auto;
  }
  .main-nav.nav-scrolled {
    top: 0;
    left: auto;
    right: -100%;
    border-radius: 0;
    backdrop-filter: none;
    padding: 0;
  }
  .main-nav.open {
    right: 0;
  }
  .main-nav.open.nav-scrolled {
    right: 0;
  }
  .hero-page .main-nav {
    top: 0;
    left: auto;
    right: -100%;
    border-radius: 0;
    background-color: #FDFCFA;
    padding: 0;
  }
  .hero-page .main-nav.open {
    right: 0;
  }
  .main-nav .menu {
    flex-direction: column;
    gap: 0;
    pointer-events: auto;
  }
  .main-nav .menu li a, .hero-page .main-nav .menu li a {
    padding: 1rem 2rem;
    font-size: 1rem;
    color: #2A2A25;
    text-shadow: none;
    border-color: transparent;
  }
  .main-nav .menu li a:hover, .hero-page .main-nav .menu li a:hover {
    color: #C8612A;
    border-color: transparent;
  }
  .main-nav .menu li a::after, .hero-page .main-nav .menu li a::after {
    display: none;
  }
  .main-nav .menu li.current_page_item a, .hero-page .main-nav .menu li.current_page_item a {
    color: #C8612A;
    border-color: #C8612A;
  }
  .menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  .menu-overlay.active {
    display: block;
  }
}
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  padding: 0.5rem 1rem calc(0.5rem + env(safe-area-inset-bottom, 0px));
  pointer-events: auto;
  background: #FDFCFA;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  transform: translateZ(0);
}
.mobile-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: rgba(250, 247, 243, 0.5);
  border-radius: 60px;
  padding: 0.35rem 2rem;
  width: fit-content;
  margin: 0 auto;
}
.mobile-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  padding: 0.5rem 1.25rem;
  text-decoration: none;
  color: #6B645C;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.25s ease;
  -webkit-tap-highlight-color: transparent;
  font-family: "Outfit", -apple-system, sans-serif;
}
.mobile-nav__item:hover, .mobile-nav__item:focus-visible {
  color: #C8612A;
}
.mobile-nav__item--active {
  color: #C8612A;
}
.mobile-nav__item--active .mobile-nav__icon {
  stroke-width: 2.5;
}
.mobile-nav__icon {
  transition: transform 0.25s ease;
}
.mobile-nav__item:active .mobile-nav__icon {
  transform: scale(0.9);
}
.mobile-nav__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
}
.page-banner {
  position: relative;
  height: 50vh;
  min-height: 380px;
  max-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #2A2A25;
  overflow: hidden;
  margin-top: 80px;
}
.hero-page .page-banner {
  margin-top: 0;
  height: 60vh;
  max-height: 600px;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-banner__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(28, 28, 24, 0.45) 0%, rgba(28, 28, 24, 0.1) 100%);
}
.page-banner__content {
  position: relative;
  z-index: 2;
  will-change: transform, opacity;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.page-banner__title {
  color: #FDFCFA;
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
@media (max-width: 768px) {
  .page-banner {
    height: 40vh;
    min-height: 280px;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero__slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.is-active {
  opacity: 1;
}
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 40%, rgba(28, 28, 24, 0.1) 0%, rgba(28, 28, 24, 0.35) 100%), linear-gradient(180deg, rgba(28, 28, 24, 0.3) 0%, rgba(28, 28, 24, 0.08) 30%, rgba(28, 28, 24, 0.05) 50%, rgba(28, 28, 24, 0.08) 70%, rgba(28, 28, 24, 0.4) 100%);
}
.hero__mobile-logo {
  display: none;
}
@media (max-width: 768px) {
  .hero__mobile-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: #FDFCFA;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 1.25rem;
  }
  .hero__mobile-logo img {
    height: 65px;
    width: auto;
  }
}
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 860px;
  padding: 0 1.5rem;
}
.hero__badge {
  display: inline-block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(1.2rem, 6vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
  line-height: 1.2;
  white-space: nowrap;
}
.hero__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: #FDFCFA;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.01em;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 2.3rem;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 1.7rem;
  }
}
.hero__subtitle {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.5rem;
  color: #ff7f5d;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 2.25rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
}
@media (max-width: 576px) {
  .hero__subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
}
.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 576px) {
  .hero__buttons {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
}
.hero__btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1;
  border-radius: 50px;
  transition: all 0.35s ease;
  cursor: pointer;
}
.hero__btn--primary {
  background: #C8612A;
  border: 2px solid #FDFCFA;
  color: #FDFCFA;
}
.hero__btn--primary:hover {
  background: #A8501F;
  border-color: #FDFCFA;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.hero__btn--outline {
  background: #FDFCFA;
  border: 2px solid #C8612A;
  color: #C8612A;
}
.hero__btn--outline:hover {
  background: #C8612A;
  color: #FDFCFA;
  border-color: #C8612A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
  .hero__btn {
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    width: 100%;
  }
}
.hero__nav {
  position: absolute;
  right: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (max-width: 768px) {
  .hero__nav {
    right: 1rem;
  }
}
@media (max-width: 576px) {
  .hero__nav {
    right: 0.5rem;
  }
}
.hero__counter {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(253, 252, 250, 0.8);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.hero__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(253, 252, 250, 0.15);
  background: transparent;
  color: #FDFCFA;
  cursor: pointer;
  transition: all 0.35s ease;
}
.hero__arrow:hover {
  background: rgba(253, 252, 250, 0.1);
  border-color: rgba(253, 252, 250, 0.3);
}
.hero__arrow--next {
  margin-bottom: 2px;
}
.hero__arrow svg {
  width: 17px;
  height: 17px;
}
@media (max-width: 768px) {
  .hero__arrow {
    width: 40px;
    height: 40px;
  }
  .hero__arrow svg {
    width: 14px;
    height: 14px;
  }
}
@media (max-width: 576px) {
  .hero__arrow {
    width: 34px;
    height: 34px;
  }
  .hero__arrow svg {
    width: 12px;
    height: 12px;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: gentleBounce 3s infinite;
  cursor: pointer;
  transition: opacity 0.35s ease;
}
.hero__scroll:hover {
  opacity: 1;
}
.hero__scroll svg {
  width: 48px;
  height: 48px;
  fill: rgba(253, 252, 250, 0.9);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
.hero__fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero__fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__fade-in:nth-child(1) {
  transition-delay: 0s;
}
.hero__fade-in:nth-child(2) {
  transition-delay: 0.15s;
}
.hero__fade-in:nth-child(3) {
  transition-delay: 0.3s;
}
.hero__fade-in:nth-child(4) {
  transition-delay: 0.45s;
}
.hero__fade-in:nth-child(5) {
  transition-delay: 0.6s;
}
.hero__fade-in:nth-child(6) {
  transition-delay: 0.75s;
}

@keyframes gentleBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.4;
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
    opacity: 0.9;
  }
}
.services {
  padding: 5rem 0;
  background-color: #FAF7F3;
}
.services__head {
  text-align: center;
  margin-bottom: 6rem;
}
.services__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: #C8612A;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.services__title strong, .services__title b {
  color: #C8612A;
  font-weight: 500;
}
.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 560px;
    margin: 0 auto;
  }
}
.services__card {
  display: flex;
  flex-direction: column;
  cursor: default;
}
.services__card:hover .services__card-img img {
  transform: scale(1.04);
}
.services__card-img {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 1.5rem;
  background: #F0EBE3;
}
.services__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.services__card-content {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 0.75rem;
  flex: 1;
}
.services__card-num {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #C8612A;
  letter-spacing: 0.05em;
}
.services__card-name {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #2A2A25;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.services__card-desc {
  width: 100%;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.1rem;
  color: #6B645C;
  line-height: 1.7;
  margin-top: 0.75rem;
}
.services__card-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}
.services__card-list li {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  color: #6B645C;
  letter-spacing: 0.02em;
  padding-left: 0.85rem;
  position: relative;
}
.services__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #C8612A;
}
.services__link {
  display: inline-block;
  position: relative;
  width: 150px;
  height: 56px;
  overflow: hidden;
  margin-top: auto;
  padding-top: 1.25rem;
  padding-bottom: 2em;
  text-decoration: none;
  color: #C8612A;
  cursor: pointer;
}
.services__link::before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: bottom right;
  background: #C8612A;
  transition: transform 0.25s ease-out;
}
.services__link:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.services__link > svg {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-50deg);
  transition: 0.2s ease-out;
  color: #C8612A;
}
.services__link:hover > svg {
  transform: translateY(-50%) rotate(-90deg);
}
.services__link-text, .services__link-clone {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
}
.services__link-text span, .services__link-clone span {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #C8612A;
  transition: 0.2s;
  margin-right: 5px;
}
.services__link-clone span {
  transform: translateY(60px);
}
.services__link:hover .services__link-clone span {
  transform: translateY(0);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.services__link:hover .services__link-text span {
  transform: translateY(-60px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.services__link:hover .services__link-clone span:nth-child(1) {
  transition-delay: 0.15s;
}
.services__link:hover .services__link-clone span:nth-child(2) {
  transition-delay: 0.2s;
}
.services__link:hover .services__link-text span:nth-child(1) {
  transition-delay: 0.15s;
}
.services__link:hover .services__link-text span:nth-child(2) {
  transition-delay: 0.2s;
}

.services-page {
  padding: 8rem 0;
  background-color: #FAF7F3;
}
.services-page__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 6rem;
  color: #6B645C;
  font-size: 1.2rem;
  line-height: 1.8;
}

.services-detail-list {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.service-detail--reversed .service-detail__image {
  order: 2;
}
.service-detail--reversed .service-detail__content {
  order: 1;
}
@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
  }
  .service-detail--reversed .service-detail__image {
    order: 0;
  }
  .service-detail--reversed .service-detail__content {
    order: 0;
  }
}
.service-detail__image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #F0EBE3;
}
.service-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-detail__image:hover img {
  transform: scale(1.04);
}
.service-detail__content {
  padding: 1rem 0;
}
.service-detail__num {
  display: inline-block;
  font-family: "Outfit", -apple-system, sans-serif;
  color: #C8612A;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 500;
}
.service-detail__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #2A2A25;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.service-detail__desc {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.1rem;
  color: #6B645C;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.service-detail__prestations {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.service-detail__prestations li {
  position: relative;
  padding-left: 1.25rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.05rem;
  color: #6B645C;
  line-height: 1.5;
}
.service-detail__prestations li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #C8612A;
}
.service-detail__link {
  display: inline-block;
  position: relative;
  width: 150px;
  height: 56px;
  overflow: hidden;
  margin-top: 1.75rem;
  padding-bottom: 2em;
  text-decoration: none;
  color: #C8612A;
  cursor: pointer;
}
.service-detail__link::before {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: scaleX(0);
  transform-origin: bottom right;
  background: #C8612A;
  transition: transform 0.25s ease-out;
}
.service-detail__link:hover::before {
  transform: scaleX(1);
  transform-origin: bottom left;
}
.service-detail__link > svg {
  position: absolute;
  width: 20px;
  height: 20px;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-50deg);
  transition: 0.2s ease-out;
  color: #C8612A;
}
.service-detail__link:hover > svg {
  transform: translateY(-50%) rotate(-90deg);
}
.service-detail__link-text, .service-detail__link-clone {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  top: 0;
  left: 0;
}
.service-detail__link-text span, .service-detail__link-clone span {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #C8612A;
  transition: 0.2s;
  margin-right: 5px;
}
.service-detail__link-clone span {
  transform: translateY(60px);
}
.service-detail__link:hover .service-detail__link-clone span {
  transform: translateY(0);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.service-detail__link:hover .service-detail__link-text span {
  transform: translateY(-60px);
  transition: all 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.service-detail__link:hover .service-detail__link-clone span:nth-child(1) {
  transition-delay: 0.15s;
}
.service-detail__link:hover .service-detail__link-clone span:nth-child(2) {
  transition-delay: 0.2s;
}
.service-detail__link:hover .service-detail__link-text span:nth-child(1) {
  transition-delay: 0.15s;
}
.service-detail__link:hover .service-detail__link-text span:nth-child(2) {
  transition-delay: 0.2s;
}

.svc-detail__section-title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  font-weight: 500;
  color: #2A2A25;
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 2.5rem;
}
.svc-detail .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}
.svc-detail .word .word__inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-detail .is-revealed .word .word__inner {
  transform: translateY(0);
}
.svc-detail .is-revealed .word:nth-child(1) .word__inner {
  transition-delay: 0s;
}
.svc-detail .is-revealed .word:nth-child(2) .word__inner {
  transition-delay: 0.06s;
}
.svc-detail .is-revealed .word:nth-child(3) .word__inner {
  transition-delay: 0.12s;
}
.svc-detail .is-revealed .word:nth-child(4) .word__inner {
  transition-delay: 0.18s;
}
.svc-detail .is-revealed .word:nth-child(5) .word__inner {
  transition-delay: 0.24s;
}
.svc-detail .is-revealed .word:nth-child(6) .word__inner {
  transition-delay: 0.3s;
}
.svc-detail .is-revealed .word:nth-child(7) .word__inner {
  transition-delay: 0.36s;
}
.svc-detail .is-revealed .word:nth-child(8) .word__inner {
  transition-delay: 0.42s;
}
.svc-detail__intro {
  padding: 2.5rem 0 1rem;
}
.svc-detail__intro-text {
  max-width: 800px;
  margin: 0 auto;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6B645C;
  text-align: left;
}
.svc-detail__intro-text strong, .svc-detail__intro-text b {
  color: #C8612A;
  font-weight: 700;
}
.svc-detail__intro-text p {
  margin-bottom: 0.5rem;
}
.svc-detail__intro-text p:last-child {
  margin-bottom: 0;
}
.svc-detail__process {
  padding: 3.5rem 0;
}
.svc-detail__process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
@media (max-width: 768px) {
  .svc-detail__process-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}
.svc-detail__step {
  padding: 0 2.5rem;
  border-right: 1px solid #E0D6CB;
  clip-path: inset(100% 0 0 0);
  filter: blur(6px);
  opacity: 0;
  transition: clip-path 0.85s cubic-bezier(0.16, 1, 0.3, 1), filter 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-detail__step:first-child {
  padding-left: 0;
}
.svc-detail__step:last-child {
  border-right: none;
  padding-right: 0;
}
@media (max-width: 768px) {
  .svc-detail__step {
    border-right: none;
    border-bottom: 1px solid #E0D6CB;
    padding: 1.5rem 0;
  }
  .svc-detail__step:first-child {
    padding-top: 0;
  }
  .svc-detail__step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.svc-detail__process-grid.is-animated .svc-detail__step {
  clip-path: none;
  filter: blur(0);
  opacity: 1;
}
.svc-detail__process-grid.is-animated .svc-detail__step:nth-child(1) {
  transition-delay: 0s;
}
.svc-detail__process-grid.is-animated .svc-detail__step:nth-child(2) {
  transition-delay: 0.18s;
}
.svc-detail__process-grid.is-animated .svc-detail__step:nth-child(3) {
  transition-delay: 0.36s;
}
.svc-detail__step-num {
  display: block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: #C8612A;
  line-height: 1;
  margin-bottom: 1rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), color 0.5s ease;
  will-change: transform;
}
.svc-detail__step:hover .svc-detail__step-num {
  transform: scale(1.12) translateY(-2px);
  color: #D49A2A;
}
.svc-detail__step-title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2A2A25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.svc-detail__step:hover .svc-detail__step-title {
  color: #C8612A;
}
.svc-detail__step-text {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6B645C;
}
.svc-detail__gallery {
  padding: 1rem 0 3.5rem;
}
.svc-detail__gallery-grid {
  display: grid;
  gap: 1rem;
}
.svc-detail__gallery-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 380px;
}
.svc-detail__gallery-grid--2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 260px;
}
.svc-detail__gallery-grid--1 {
  grid-template-columns: 1fr;
  grid-template-rows: 300px;
}
@media (max-width: 768px) {
  .svc-detail__gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .svc-detail__gallery-grid .svc-detail__gallery-item:first-child {
    grid-row: auto !important;
  }
}
.svc-detail__gallery-item {
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .svc-detail__gallery-item {
    height: 200px;
  }
}
.svc-detail__gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-detail__gallery-item:hover img {
  transform: scale(1.03);
}
.svc-detail__prestations {
  padding: 3.5rem 0;
}
.svc-detail__prestations-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 900px;
}
@media (max-width: 768px) {
  .svc-detail__prestations-list {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}
.svc-detail__prestations-list li {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2A2A25;
  background: #F0EBE3;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 1rem 1.25rem 1rem 3rem;
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  filter: blur(4px);
  transition: opacity 0.65s cubic-bezier(0.33, 1, 0.68, 1), transform 0.65s cubic-bezier(0.33, 1, 0.68, 1), filter 0.65s cubic-bezier(0.33, 1, 0.68, 1), border-color 0.3s ease;
}
.svc-detail__prestations-list li:hover {
  border-color: #C8612A;
}
.svc-detail__prestations-list li::before {
  content: "✓";
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%) scale(0) rotate(-20deg);
  font-size: 0.85rem;
  font-weight: 700;
  color: #C8612A;
  line-height: 1;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-detail__prestations-list.is-animated li {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.svc-detail__prestations-list.is-animated li::before {
  transform: translateY(-50%) scale(1) rotate(0deg);
}
.svc-detail__prestations-list.is-animated li:nth-child(1) {
  transition-delay: 0s;
}
.svc-detail__prestations-list.is-animated li:nth-child(1)::before {
  transition-delay: 0.25s;
}
.svc-detail__prestations-list.is-animated li:nth-child(2) {
  transition-delay: 0.06s;
}
.svc-detail__prestations-list.is-animated li:nth-child(2)::before {
  transition-delay: 0.31s;
}
.svc-detail__prestations-list.is-animated li:nth-child(3) {
  transition-delay: 0.12s;
}
.svc-detail__prestations-list.is-animated li:nth-child(3)::before {
  transition-delay: 0.37s;
}
.svc-detail__prestations-list.is-animated li:nth-child(4) {
  transition-delay: 0.18s;
}
.svc-detail__prestations-list.is-animated li:nth-child(4)::before {
  transition-delay: 0.43s;
}
.svc-detail__prestations-list.is-animated li:nth-child(5) {
  transition-delay: 0.24s;
}
.svc-detail__prestations-list.is-animated li:nth-child(5)::before {
  transition-delay: 0.49s;
}
.svc-detail__prestations-list.is-animated li:nth-child(6) {
  transition-delay: 0.3s;
}
.svc-detail__prestations-list.is-animated li:nth-child(6)::before {
  transition-delay: 0.55s;
}
.svc-detail__prestations-list.is-animated li:nth-child(7) {
  transition-delay: 0.36s;
}
.svc-detail__prestations-list.is-animated li:nth-child(7)::before {
  transition-delay: 0.61s;
}
.svc-detail__prestations-list.is-animated li:nth-child(8) {
  transition-delay: 0.42s;
}
.svc-detail__prestations-list.is-animated li:nth-child(8)::before {
  transition-delay: 0.67s;
}
.svc-detail__prestations-list.is-animated li:nth-child(9) {
  transition-delay: 0.48s;
}
.svc-detail__prestations-list.is-animated li:nth-child(9)::before {
  transition-delay: 0.73s;
}
.svc-detail__prestations-list.is-animated li:nth-child(10) {
  transition-delay: 0.54s;
}
.svc-detail__prestations-list.is-animated li:nth-child(10)::before {
  transition-delay: 0.79s;
}
.svc-detail__advantages {
  padding: 3.5rem 0 4rem;
  margin: 0 calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.svc-detail__advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 768px) {
  .svc-detail__advantages-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 500px;
  }
}
.svc-detail__advantage {
  background: #FDFCFA;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  will-change: transform;
  transform-style: preserve-3d;
  opacity: 0;
  transform: perspective(800px) rotateX(6deg) translateY(30px);
  filter: blur(4px);
}
.svc-detail__advantage::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1.75rem;
  right: 1.75rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, #C8612A, #D49A2A, transparent);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-detail__advantage:hover::after {
  transform: scaleX(1);
}
.svc-detail__advantages-grid.is-animated .svc-detail__advantage {
  opacity: 1;
  transform: perspective(800px) rotateX(0deg) translateY(0);
  filter: blur(0);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1), filter 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-detail__advantages-grid.is-animated .svc-detail__advantage:nth-child(1) {
  transition-delay: 0s;
}
.svc-detail__advantages-grid.is-animated .svc-detail__advantage:nth-child(2) {
  transition-delay: 0.12s;
}
.svc-detail__advantages-grid.is-animated .svc-detail__advantage:nth-child(3) {
  transition-delay: 0.24s;
}
.svc-detail__advantage-num {
  display: block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: #C8612A;
  margin-bottom: 1rem;
  line-height: 1;
  transition: color 0.4s ease;
}
.svc-detail__advantage:hover .svc-detail__advantage-num {
  color: #D49A2A;
}
.svc-detail__advantage-title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2A2A25;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.svc-detail__advantage-text {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #6B645C;
}

.pres__label {
  display: block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8612A;
  margin-bottom: 1.25rem;
}
.pres__manifeste {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background: #F0EBE3;
}
.pres__manifeste-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.pres__manifeste-text {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  font-weight: 400;
  line-height: 1.5;
  color: #2A2A25;
  letter-spacing: -0.02em;
}
.pres__manifeste-text::before, .pres__manifeste-text::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #C8612A;
  margin: 0 auto;
}
.pres__manifeste-text::before {
  margin-bottom: 1.5rem;
}
.pres__manifeste-text::after {
  margin-top: 1.5rem;
}
.pres__savoir {
  background: #F0EBE3;
}
.pres__savoir-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 768px) {
  .pres__savoir-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.pres__savoir-visual {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 480px;
}
.pres__savoir-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.pres__savoir-visual:hover img {
  transform: scale(1.03);
}
@media (max-width: 768px) {
  .pres__savoir-visual {
    aspect-ratio: 16/10;
    max-height: 300px;
  }
}
.pres__savoir-title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 500;
  color: #2A2A25;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}
.pres__savoir-text {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #6B645C;
  margin-bottom: 1.75rem;
}
.pres__savoir-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #C8612A;
  transition: gap 0.35s ease;
}
.pres__savoir-link:hover {
  gap: 0.85rem;
}
.pres__savoir-link svg {
  transition: transform 0.35s ease;
}
.pres__savoir-link:hover svg {
  transform: translateX(3px);
}
.pres__divider {
  position: relative;
  background: #F0EBE3;
  overflow: hidden;
  line-height: 0;
  font-size: 0;
}
.pres__divider-skyline {
  display: block;
  width: 100%;
  height: auto;
}

.about {
  position: relative;
  padding: 8rem 0 6rem;
  overflow: hidden;
  background-color: #1C1C18;
}
.about__bg {
  position: absolute;
  inset: -15% 0;
  z-index: 0;
}
.about__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.about__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 40%, rgba(28, 28, 24, 0.15) 0%, rgba(28, 28, 24, 0.4) 100%), linear-gradient(180deg, rgba(28, 28, 24, 0.5) 0%, rgba(28, 28, 24, 0.25) 35%, rgba(28, 28, 24, 0.2) 55%, rgba(28, 28, 24, 0.3) 75%, rgba(28, 28, 24, 0.55) 100%);
}
.about .container {
  position: relative;
  z-index: 2;
}
.about__label {
  display: block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C8612A;
  margin-bottom: 1.25rem;
}
.about__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: #FDFCFA;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 4.5rem;
  max-width: 700px;
}
.about__accent {
  display: block;
  width: 50px;
  height: 2px;
  background-color: #C8612A;
  margin-top: 1.5rem;
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .about__accent {
    margin-bottom: 3rem;
  }
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 6rem;
}
@media (max-width: 576px) {
  .about__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.about__stat {
  background: rgba(253, 252, 250, 0.06);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(253, 252, 250, 0.08);
  border-top: 2px solid #C8612A;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  transition: background 0.35s ease, border-color 0.35s ease;
}
.about__stat:hover {
  background: rgba(253, 252, 250, 0.1);
  border-top-color: #D49A2A;
}
@media (max-width: 768px) {
  .about__stat {
    padding: 1.5rem 1.25rem;
  }
}
.about__stat-value {
  display: block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 500;
  color: #FDFCFA;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.about__stat-label {
  display: block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.82rem;
  color: rgba(253, 252, 250, 0.6);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.about__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 768px) {
  .about__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
}
.about__text {
  max-width: 560px;
}
.about__text p {
  color: rgba(253, 252, 250, 0.95);
  line-height: 1.85;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}
.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  color: #FDFCFA;
  background: #C8612A;
  border: 2px solid #C8612A;
  border-radius: 50px;
  transition: all 0.35s ease;
}
.about__btn svg {
  transition: transform 0.35s ease;
}
.about__btn:hover {
  background: #FDFCFA;
  color: #C8612A;
  border-color: #C8612A;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(200, 97, 42, 0.3);
}
.about__btn:hover svg {
  transform: translateX(4px);
  stroke: #C8612A;
}

.tax-credit {
  padding: 6rem 0;
  background-color: #FAF7F3;
}
.tax-credit__card {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0;
  border-radius: 20px;
  cursor: default;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  overflow: visible;
  border: 1px solid rgba(200, 97, 42, 0.5);
}
.tax-credit__card::before {
  content: "";
  position: absolute;
  inset: -4px;
  background: linear-gradient(135deg, #C8612A, #A8501F, #7A3B2E, #C8612A);
  border-radius: 24px;
  z-index: -2;
  transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0.7;
  transform: rotate(-2deg) scale(0.99);
}
.tax-credit__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #FDFCFA;
  border-radius: 20px;
  z-index: -1;
}
.tax-credit__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(200, 97, 42, 0.12);
}
.tax-credit__card:hover::before {
  opacity: 1;
  transform: rotate(2deg) scale(1.01);
}
@media (max-width: 768px) {
  .tax-credit__card {
    grid-template-columns: 1fr;
  }
  .tax-credit__card::before {
    inset: -3px;
    border-radius: 23px;
  }
}
.tax-credit__info {
  position: relative;
  z-index: 1;
  padding: 3rem;
}
@media (max-width: 576px) {
  .tax-credit__info {
    padding: 2rem;
  }
}
.tax-credit__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 500;
  color: #C8612A;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.tax-credit__highlight {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #A8501F;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.tax-credit__desc {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.1rem;
  color: #6B645C;
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.tax-credit__limit {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(200, 97, 42, 0.06), rgba(212, 154, 42, 0.08));
  border-left: 3px solid #C8612A;
  border-radius: 0 12px 12px 0;
}
.tax-credit__limit-label {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8612A;
}
.tax-credit__limit-amount {
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 600;
  color: #2A2A25;
}
.tax-credit__side {
  position: relative;
  z-index: 1;
  padding: 3rem;
  background: rgba(200, 97, 42, 0.03);
  border-left: 1px solid rgba(200, 97, 42, 0.1);
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .tax-credit__side {
    border-left: none;
    border-top: 1px solid rgba(200, 97, 42, 0.1);
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 576px) {
  .tax-credit__side {
    padding: 2rem;
  }
}
.tax-credit__payments-title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #2A2A25;
  margin-bottom: 1rem;
}
.tax-credit__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.tax-credit__option {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #C8612A;
  background: rgba(200, 97, 42, 0.06);
  border: 1.5px solid rgba(200, 97, 42, 0.25);
  border-radius: 50px;
}
.tax-credit__avance {
  padding: 1.5rem;
  background: #C8612A;
  border-radius: 16px;
}
.tax-credit__avance-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FDFCFA;
  margin-bottom: 0.75rem;
}
.tax-credit__avance-title svg {
  flex-shrink: 0;
}
.tax-credit__avance-text {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1rem;
  color: #FDFCFA;
  line-height: 1.7;
}

.experience {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-color: #1C1C18;
}
.experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
@media (max-width: 768px) {
  .experience {
    min-height: 400px;
    background-attachment: scroll;
  }
}
.experience .container {
  position: relative;
  z-index: 2;
}
.experience__content {
  max-width: 640px;
  margin: 0 auto;
  padding: 6rem 0;
}
.experience__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #FDFCFA;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.experience__text {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.2rem;
  color: rgba(253, 252, 250, 0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.experience__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #FDFCFA;
  background: #C8612A;
  border: 2px solid #C8612A;
  border-radius: 50px;
  transition: all 0.35s ease;
}
.experience__btn svg {
  transition: transform 0.35s ease;
}
.experience__btn:hover {
  background: #FDFCFA;
  color: #C8612A;
  border-color: #C8612A;
}
.experience__btn:hover svg {
  transform: translateX(4px);
  stroke: #C8612A;
}

.cta {
  background-color: #F0EBE3;
  padding: 6rem 0;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta__leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.cta .leaf {
  position: absolute;
  top: -10%;
  width: 35px;
  height: 35px;
  opacity: 0.6;
  will-change: transform;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 10 C110 30, 130 40, 140 60 C150 80, 170 80, 160 100 C150 120, 180 130, 160 150 C140 170, 120 150, 100 160 C80 170, 60 150, 40 150 C20 130, 50 120, 40 100 C30 80, 50 80, 60 60 C70 40, 90 30, 100 10Z' fill='orange' stroke='brown' stroke-width='2'/%3E%3Cpath d='M100 160 L100 190 M95 185 L105 185' stroke='brown' stroke-width='3'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cpath d='M100 10 C110 30, 130 40, 140 60 C150 80, 170 80, 160 100 C150 120, 180 130, 160 150 C140 170, 120 150, 100 160 C80 170, 60 150, 40 150 C20 130, 50 120, 40 100 C30 80, 50 80, 60 60 C70 40, 90 30, 100 10Z' fill='orange' stroke='brown' stroke-width='2'/%3E%3Cpath d='M100 160 L100 190 M95 185 L105 185' stroke='brown' stroke-width='3'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.cta .leaf:nth-child(40n+1) {
  background: #C8612A;
  left: 2%;
  animation: falling1 22s linear infinite;
  animation-delay: -2s;
}
.cta .leaf:nth-child(40n+2) {
  background: #8B6F55;
  left: 5%;
  animation: falling2 25s linear infinite;
  animation-delay: -4s;
}
.cta .leaf:nth-child(40n+3) {
  background: #D49A2A;
  left: 8%;
  animation: falling3 23s linear infinite;
  animation-delay: -6s;
}
.cta .leaf:nth-child(40n+4) {
  background: #C4A97D;
  left: 12%;
  animation: falling1 26s linear infinite;
  animation-delay: -1s;
}
.cta .leaf:nth-child(40n+5) {
  background: #C8612A;
  left: 15%;
  animation: falling2 24s linear infinite;
  animation-delay: -8s;
}
.cta .leaf:nth-child(40n+6) {
  background: #7A3B2E;
  left: 18%;
  animation: falling3 27s linear infinite;
  animation-delay: -3s;
}
.cta .leaf:nth-child(40n+7) {
  background: #D49A2A;
  left: 22%;
  animation: falling1 22s linear infinite;
  animation-delay: -10s;
}
.cta .leaf:nth-child(40n+8) {
  background: #8B6F55;
  left: 25%;
  animation: falling2 29s linear infinite;
  animation-delay: -5s;
}
.cta .leaf:nth-child(40n+9) {
  background: #C8612A;
  left: 28%;
  animation: falling3 24s linear infinite;
  animation-delay: -12s;
}
.cta .leaf:nth-child(40n+10) {
  background: #C4A97D;
  left: 32%;
  animation: falling1 26s linear infinite;
  animation-delay: -7s;
}
.cta .leaf:nth-child(40n+11) {
  background: #D49A2A;
  left: 35%;
  animation: falling2 23s linear infinite;
  animation-delay: -14s;
}
.cta .leaf:nth-child(40n+12) {
  background: #7A3B2E;
  left: 38%;
  animation: falling3 28s linear infinite;
  animation-delay: -9s;
}
.cta .leaf:nth-child(40n+13) {
  background: #8B6F55;
  left: 42%;
  animation: falling1 25s linear infinite;
  animation-delay: -16s;
}
.cta .leaf:nth-child(40n+14) {
  background: #C8612A;
  left: 45%;
  animation: falling2 22s linear infinite;
  animation-delay: -11s;
}
.cta .leaf:nth-child(40n+15) {
  background: #C4A97D;
  left: 48%;
  animation: falling3 27s linear infinite;
  animation-delay: -2s;
}
.cta .leaf:nth-child(40n+16) {
  background: #D49A2A;
  left: 52%;
  animation: falling1 24s linear infinite;
  animation-delay: -13s;
}
.cta .leaf:nth-child(40n+17) {
  background: #8B6F55;
  left: 55%;
  animation: falling2 29s linear infinite;
  animation-delay: -6s;
}
.cta .leaf:nth-child(40n+18) {
  background: #C8612A;
  left: 58%;
  animation: falling3 23s linear infinite;
  animation-delay: -15s;
}
.cta .leaf:nth-child(40n+19) {
  background: #7A3B2E;
  left: 62%;
  animation: falling1 26s linear infinite;
  animation-delay: -8s;
}
.cta .leaf:nth-child(40n+20) {
  background: #C4A97D;
  left: 65%;
  animation: falling2 25s linear infinite;
  animation-delay: -17s;
}
.cta .leaf:nth-child(40n+21) {
  background: #D49A2A;
  left: 68%;
  animation: falling3 22s linear infinite;
  animation-delay: -4s;
}
.cta .leaf:nth-child(40n+22) {
  background: #8B6F55;
  left: 72%;
  animation: falling1 28s linear infinite;
  animation-delay: -10s;
}
.cta .leaf:nth-child(40n+23) {
  background: #C8612A;
  left: 75%;
  animation: falling2 24s linear infinite;
  animation-delay: -18s;
}
.cta .leaf:nth-child(40n+24) {
  background: #C4A97D;
  left: 78%;
  animation: falling3 27s linear infinite;
  animation-delay: -3s;
}
.cta .leaf:nth-child(40n+25) {
  background: #7A3B2E;
  left: 82%;
  animation: falling1 23s linear infinite;
  animation-delay: -12s;
}
.cta .leaf:nth-child(40n+26) {
  background: #D49A2A;
  left: 85%;
  animation: falling2 26s linear infinite;
  animation-delay: -19s;
}
.cta .leaf:nth-child(40n+27) {
  background: #8B6F55;
  left: 88%;
  animation: falling3 25s linear infinite;
  animation-delay: -7s;
}
.cta .leaf:nth-child(40n+28) {
  background: #C8612A;
  left: 92%;
  animation: falling1 29s linear infinite;
  animation-delay: -14s;
}
.cta .leaf:nth-child(40n+29) {
  background: #C4A97D;
  left: 95%;
  animation: falling2 22s linear infinite;
  animation-delay: -1s;
}
.cta .leaf:nth-child(40n+30) {
  background: #D49A2A;
  left: 98%;
  animation: falling3 24s linear infinite;
  animation-delay: -16s;
}
.cta .leaf:nth-child(40n+31) {
  background: #C8612A;
  left: 7%;
  animation: falling1 27s linear infinite;
  animation-delay: -9s;
  width: 22px;
  height: 22px;
}
.cta .leaf:nth-child(40n+32) {
  background: #8B6F55;
  left: 20%;
  animation: falling2 23s linear infinite;
  animation-delay: -11s;
  width: 25px;
  height: 25px;
}
.cta .leaf:nth-child(40n+33) {
  background: #7A3B2E;
  left: 33%;
  animation: falling3 26s linear infinite;
  animation-delay: -5s;
  width: 20px;
  height: 20px;
}
.cta .leaf:nth-child(40n+34) {
  background: #D49A2A;
  left: 40%;
  animation: falling1 24s linear infinite;
  animation-delay: -15s;
  width: 28px;
  height: 28px;
}
.cta .leaf:nth-child(40n+35) {
  background: #C4A97D;
  left: 53%;
  animation: falling2 28s linear infinite;
  animation-delay: -3s;
  width: 22px;
  height: 22px;
}
.cta .leaf:nth-child(40n+36) {
  background: #C8612A;
  left: 60%;
  animation: falling3 25s linear infinite;
  animation-delay: -13s;
  width: 26px;
  height: 26px;
}
.cta .leaf:nth-child(40n+37) {
  background: #8B6F55;
  left: 70%;
  animation: falling1 22s linear infinite;
  animation-delay: -7s;
  width: 24px;
  height: 24px;
}
.cta .leaf:nth-child(40n+38) {
  background: #D49A2A;
  left: 80%;
  animation: falling2 27s linear infinite;
  animation-delay: -17s;
  width: 20px;
  height: 20px;
}
.cta .leaf:nth-child(40n+39) {
  background: #7A3B2E;
  left: 87%;
  animation: falling3 24s linear infinite;
  animation-delay: -10s;
  width: 23px;
  height: 23px;
}
.cta .leaf:nth-child(40n+40) {
  background: #C4A97D;
  left: 93%;
  animation: falling1 26s linear infinite;
  animation-delay: -6s;
  width: 27px;
  height: 27px;
}
.cta .container {
  position: relative;
  z-index: 1;
}
.cta__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.cta__content {
  max-width: 560px;
}
.cta__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  color: #C8612A;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.cta__text {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.2rem;
  color: #6B645C;
  line-height: 1.8;
}
.cta__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 576px) {
  .cta__actions {
    flex-direction: column;
    gap: 1rem;
  }
}
.cta__btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  background: #C8612A;
  color: #FDFCFA;
  border: 2px solid #C8612A;
  border-radius: 50px;
  transition: all 0.35s ease;
  white-space: nowrap;
}
.cta__btn:hover {
  background: #FDFCFA;
  color: #C8612A;
  border-color: #C8612A;
}
.cta__phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  transition: transform 0.35s ease;
}
.cta__phone:hover {
  transform: translateY(-2px);
}
.cta__phone:hover .cta__phone-icon {
  color: #FDFCFA;
  background: #C8612A;
}
.cta__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #2A2A25;
  flex-shrink: 0;
  transition: background 0.35s ease;
}
.cta__phone-number {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2A2A25;
  letter-spacing: 0.04em;
}

@keyframes falling1 {
  0% {
    top: -10%;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.5;
  }
  100% {
    top: 110%;
    transform: translateX(-80px) rotate(360deg);
    opacity: 0;
  }
}
@keyframes falling2 {
  0% {
    top: -10%;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    top: 110%;
    transform: translateX(60px) rotate(-300deg);
    opacity: 0;
  }
}
@keyframes falling3 {
  0% {
    top: -10%;
    transform: translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.55;
  }
  90% {
    opacity: 0.45;
  }
  100% {
    top: 110%;
    transform: translateX(-40px) rotate(270deg);
    opacity: 0;
  }
}
.realisations-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.realisations-filters .filter-btn {
  padding: 0.5rem 1.5rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6B645C;
  background-color: transparent;
  border: 1.5px solid #E0D6CB;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.realisations-filters .filter-btn:hover, .realisations-filters .filter-btn.active {
  color: #C8612A;
  background-color: rgba(200, 97, 42, 0.06);
  border-color: #C8612A;
}

.realisations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .realisations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .realisations-grid {
    grid-template-columns: 1fr;
  }
}
.realisations-grid > * {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.realisations-grid .hidden {
  opacity: 0;
  transform: scale(0.9);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
.realisations-grid .visible {
  opacity: 1;
  transform: scale(1);
}

.realisation-card {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.6s ease;
  box-shadow: 0 4px 16px rgba(42, 42, 37, 0.1);
}
.realisation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(42, 42, 37, 0.18);
}
.realisation-card:hover .realisation-card__image img {
  transform: scale(1.08);
}
.realisation-card:hover .realisation-card__overlay {
  background: linear-gradient(to top, rgba(28, 28, 24, 0.95) 0%, rgba(28, 28, 24, 0.5) 60%, rgba(28, 28, 24, 0.2) 100%);
}
.realisation-card:hover .realisation-card__meta,
.realisation-card:hover .realisation-card__description {
  opacity: 1;
  transform: translateY(0);
}
.realisation-card__image {
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: #F0EBE3;
}
.realisation-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.realisation-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28, 28, 24, 0.8) 0%, rgba(28, 28, 24, 0.05) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background 0.5s ease;
}
.realisation-card__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 500;
  color: #FDFCFA;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.realisation-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  color: #C4A97D;
  letter-spacing: 0.02em;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease;
}
.realisation-card__description {
  color: rgba(253, 252, 250, 0.8);
  font-size: 1rem;
  margin-top: 0.5rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.05s;
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(28, 28, 24, 0.97);
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  color: #FDFCFA;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10000;
  opacity: 0.7;
  transition: opacity 0.35s ease;
}
.lightbox__close:hover {
  opacity: 1;
}
.lightbox__image {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #FDFCFA;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.35s ease;
}
.lightbox__nav:hover {
  opacity: 1;
}
.lightbox__nav--prev {
  left: 1rem;
}
.lightbox__nav--next {
  right: 1rem;
}

.flip-card {
  perspective: 1400px;
}
.flip-card__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(42, 42, 37, 0.1);
  cursor: pointer;
}
.flip-card:hover .flip-card__inner {
  transform: rotateY(180deg);
  box-shadow: 0 16px 48px rgba(42, 42, 37, 0.18);
}
.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
  box-shadow: 0 16px 48px rgba(42, 42, 37, 0.18);
}
.flip-card__front, .flip-card__back {
  position: absolute;
  inset: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}
.flip-card__front img, .flip-card__back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flip-card__front {
  z-index: 1;
  transform: rotateY(0deg);
}
.flip-card__back {
  transform: rotateY(180deg);
}
.flip-card__label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.9rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #FDFCFA;
  background: #C8612A;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  z-index: 3;
}
.flip-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.35rem 2rem;
  padding-top: 1.5rem;
  background: linear-gradient(to top, rgba(28, 28, 24, 0.45), transparent);
}
.flip-card__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 500;
  color: #FDFCFA;
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.flip-card__hint {
  position: absolute;
  bottom: 0.6rem;
  right: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.9rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FDFCFA;
  background: #C8612A;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-radius: 50px;
  z-index: 3;
  transition: opacity 0.35s ease;
}
.flip-card__hint::before {
  content: "↻";
  font-size: 0.85rem;
}
.flip-card:hover .flip-card__hint {
  opacity: 0;
}
.flip-card--large {
  max-width: 800px;
  margin: 3rem 0;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 6rem;
  padding-top: 3rem;
}
.pagination__item a,
.pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 0.75rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #3A3632;
  background: #FDFCFA;
  border: 1.5px solid #E0D6CB;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.35s ease;
}
.pagination__item a svg,
.pagination__item span svg {
  width: 20px;
  height: 20px;
}
.pagination__item a:hover {
  color: #C8612A;
  border-color: #C8612A;
  background: rgba(200, 97, 42, 0.04);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(42, 42, 37, 0.1);
}
.pagination__item .current {
  color: #FDFCFA;
  background: #C8612A;
  border-color: #C8612A;
  box-shadow: 0 4px 12px rgba(200, 97, 42, 0.3);
}
.pagination__item .dots {
  border: none;
  background: transparent;
  color: #6B645C;
  min-width: 32px;
  letter-spacing: 0.15em;
}
.pagination__item:first-child a, .pagination__item:last-child a {
  background: #FAF7F3;
  border-color: #E0D6CB;
}
.pagination__item:first-child a:hover, .pagination__item:last-child a:hover {
  background: #C8612A;
  border-color: #C8612A;
  color: #FDFCFA;
}
.pagination__item:first-child a:hover svg, .pagination__item:last-child a:hover svg {
  stroke: #FDFCFA;
}
@media (max-width: 576px) {
  .pagination {
    gap: 0.35rem;
  }
  .pagination__item a,
  .pagination__item span {
    min-width: 40px;
    height: 40px;
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: #C8612A;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.contact-info__subtitle {
  color: #6B645C;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.contact-info__items {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  transition: all 0.35s ease;
  text-decoration: none;
  border: 1.5px solid transparent;
}
.contact-info__item:hover {
  background-color: #FDFCFA;
  border-color: #E0D6CB;
  box-shadow: 0 2px 8px rgba(42, 42, 37, 0.06);
}
.contact-info__item-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background-color: rgba(200, 97, 42, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}
.contact-info__item-icon svg {
  width: 22px;
  height: 22px;
  stroke: #C8612A;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-info__item:hover .contact-info__item-icon {
  background-color: #C8612A;
  box-shadow: 0 4px 12px rgba(200, 97, 42, 0.25);
}
.contact-info__item:hover .contact-info__item-icon svg {
  stroke: #FDFCFA;
}
.contact-info__item-content h4 {
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A08B72;
  margin-bottom: 0.15rem;
}
.contact-info__item-content p, .contact-info__item-content a {
  color: #2A2A25;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}
.contact-info__image {
  margin-top: 2rem;
  border-radius: 20px;
  overflow: hidden;
}
.contact-info__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.contact-form {
  background-color: #FDFCFA;
  padding: 2rem 1.75rem;
  border-radius: 20px;
  border: 1px solid #E0D6CB;
  box-shadow: 0 8px 32px rgba(42, 42, 37, 0.14);
}
@media (max-width: 576px) {
  .contact-form {
    padding: 1.25rem;
  }
}
.contact-form__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #2A2A25;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 576px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}
.contact-form .wpcf7-form br,
.contact-form form br {
  display: none;
}
.contact-form .wpcf7-form .wpcf7-form-control-wrap,
.contact-form form .wpcf7-form-control-wrap {
  display: block;
}
.contact-form .wpcf7-form label,
.contact-form form label {
  display: block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A08B72;
  margin-bottom: 0.15rem;
  margin-top: 0.75rem;
}
.contact-form .wpcf7-form input[type=text],
.contact-form .wpcf7-form input[type=email],
.contact-form .wpcf7-form input[type=tel],
.contact-form .wpcf7-form select,
.contact-form .wpcf7-form textarea,
.contact-form form input[type=text],
.contact-form form input[type=email],
.contact-form form input[type=tel],
.contact-form form select,
.contact-form form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #E0D6CB;
  border-radius: 10px;
  background-color: #FAF7F3;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  color: #2A2A25;
  transition: all 0.35s ease;
}
.contact-form .wpcf7-form input[type=text]::placeholder,
.contact-form .wpcf7-form input[type=email]::placeholder,
.contact-form .wpcf7-form input[type=tel]::placeholder,
.contact-form .wpcf7-form select::placeholder,
.contact-form .wpcf7-form textarea::placeholder,
.contact-form form input[type=text]::placeholder,
.contact-form form input[type=email]::placeholder,
.contact-form form input[type=tel]::placeholder,
.contact-form form select::placeholder,
.contact-form form textarea::placeholder {
  color: #A08B72;
}
.contact-form .wpcf7-form input[type=text]:focus,
.contact-form .wpcf7-form input[type=email]:focus,
.contact-form .wpcf7-form input[type=tel]:focus,
.contact-form .wpcf7-form select:focus,
.contact-form .wpcf7-form textarea:focus,
.contact-form form input[type=text]:focus,
.contact-form form input[type=email]:focus,
.contact-form form input[type=tel]:focus,
.contact-form form select:focus,
.contact-form form textarea:focus {
  outline: none;
  border-color: #C8612A;
  box-shadow: 0 0 0 3px rgba(200, 97, 42, 0.1);
  background-color: #FDFCFA;
}
.contact-form .wpcf7-form select,
.contact-form form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8612A' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.contact-form .wpcf7-form textarea,
.contact-form form textarea {
  min-height: 120px;
  resize: none;
}
.contact-form .wpcf7-form input[type=submit],
.contact-form form input[type=submit] {
  display: block;
  width: 100%;
  padding: 0.85rem 2rem;
  margin-top: 1rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FDFCFA;
  background-color: #C8612A;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.contact-form .wpcf7-form input[type=submit]:hover,
.contact-form form input[type=submit]:hover {
  background-color: #FDFCFA;
  color: #C8612A;
  border: 2px solid #C8612A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 97, 42, 0.3);
}
.contact-form .wpcf7-form .wpcf7-not-valid-tip,
.contact-form form .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.contact-form .wpcf7-form .wpcf7-response-output,
.contact-form form .wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: 2px solid #C8612A;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #3A3632;
}
.contact-form .wpcf7-form > label:first-child,
.contact-form .wpcf7-form .form-row:first-child label,
.contact-form form > label:first-child,
.contact-form form .form-row:first-child label {
  margin-top: 0;
}

.contact-map {
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.contact-map iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}
@media (max-width: 768px) {
  .contact-map {
    margin-bottom: 4.5rem;
  }
}

.newsletter-page {
  padding: 8rem 0;
  background-color: #FAF7F3;
}
.newsletter-page__hero {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 6rem;
}
.newsletter-page__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: #C8612A;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.newsletter-page__desc {
  font-size: 1.15rem;
  color: #6B645C;
  line-height: 1.8;
}
.newsletter-page__form-card {
  max-width: 520px;
  margin: 0 auto 6rem;
}
.newsletter-page__form-card .newsletter-form {
  background-color: #FDFCFA;
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid #E0D6CB;
  box-shadow: 0 4px 16px rgba(42, 42, 37, 0.1);
}
.newsletter-page__form-card .newsletter-form .mailpoet_form .mailpoet_paragraph {
  margin-bottom: 0.75rem;
}
.newsletter-page__form-card .newsletter-form .mailpoet_form .mailpoet_paragraph:last-child {
  margin-bottom: 0;
}
.newsletter-page__form-card .newsletter-form .mailpoet_form label {
  display: block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A08B72;
  margin-bottom: 0.25rem;
}
.newsletter-page__form-card .newsletter-form .mailpoet_form input[type=email],
.newsletter-page__form-card .newsletter-form .mailpoet_form input[type=text] {
  width: 100%;
  padding: 1.1rem 1.5rem;
  border: 1.5px solid #E0D6CB;
  border-radius: 10px;
  background-color: #FAF7F3;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1rem;
  color: #2A2A25;
  transition: all 0.35s ease;
  box-sizing: border-box;
}
.newsletter-page__form-card .newsletter-form .mailpoet_form input[type=email]:focus,
.newsletter-page__form-card .newsletter-form .mailpoet_form input[type=text]:focus {
  outline: none;
  border-color: #C8612A;
  box-shadow: 0 0 0 3px rgba(200, 97, 42, 0.1);
  background-color: #FDFCFA;
}
.newsletter-page__form-card .newsletter-form .mailpoet_form input[type=email]::placeholder,
.newsletter-page__form-card .newsletter-form .mailpoet_form input[type=text]::placeholder {
  color: #A08B72;
}
.newsletter-page__form-card .newsletter-form .mailpoet_form input[type=submit],
.newsletter-page__form-card .newsletter-form .mailpoet_form button[type=submit] {
  display: block;
  width: 100% !important;
  padding: 0.9rem 2rem !important;
  font-family: "Outfit", -apple-system, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FDFCFA !important;
  background-color: #C8612A !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer;
  transition: all 0.35s ease;
  margin-top: 0.5rem;
}
.newsletter-page__form-card .newsletter-form .mailpoet_form input[type=submit]:hover,
.newsletter-page__form-card .newsletter-form .mailpoet_form button[type=submit]:hover {
  background-color: #FDFCFA !important;
  color: #C8612A !important;
  border: 2px solid #C8612A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 97, 42, 0.3);
}
.newsletter-page__form-card .newsletter-form .mailpoet_form .mailpoet_validate_error {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.newsletter-page__form-card .newsletter-form .mailpoet_form .mailpoet_validate_success {
  margin-top: 1rem;
  padding: 1rem;
  border: 2px solid #C8612A;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #3A3632;
  text-align: center;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 100%;
  margin: 0 auto;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form br,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) br {
  display: none;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form label,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) label {
  display: block;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A08B72;
  margin-bottom: 0.15rem;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form .wpcf7-form-control-wrap,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) .wpcf7-form-control-wrap {
  display: block;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form input[type=email],
.newsletter-page__form-card .newsletter-form .wpcf7-form input[type=text],
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) input[type=email],
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) input[type=text] {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid #E0D6CB;
  border-radius: 10px;
  background-color: #FAF7F3;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1rem;
  color: #2A2A25;
  transition: all 0.35s ease;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form input[type=email]:focus,
.newsletter-page__form-card .newsletter-form .wpcf7-form input[type=text]:focus,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) input[type=email]:focus,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) input[type=text]:focus {
  outline: none;
  border-color: #C8612A;
  box-shadow: 0 0 0 3px rgba(200, 97, 42, 0.1);
  background-color: #FDFCFA;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form input[type=email]::placeholder,
.newsletter-page__form-card .newsletter-form .wpcf7-form input[type=text]::placeholder,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) input[type=email]::placeholder,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) input[type=text]::placeholder {
  color: #A08B72;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form input[type=submit],
.newsletter-page__form-card .newsletter-form .wpcf7-form button[type=submit],
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) input[type=submit],
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) button[type=submit] {
  display: block;
  width: 100%;
  padding: 0.9rem 2rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FDFCFA;
  background-color: #C8612A;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s ease;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form input[type=submit]:hover,
.newsletter-page__form-card .newsletter-form .wpcf7-form button[type=submit]:hover,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) input[type=submit]:hover,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) button[type=submit]:hover {
  background-color: #FDFCFA;
  color: #C8612A;
  border: 2px solid #C8612A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 97, 42, 0.3);
}
.newsletter-page__form-card .newsletter-form .wpcf7-form .wpcf7-not-valid-tip,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}
.newsletter-page__form-card .newsletter-form .wpcf7-form .wpcf7-response-output,
.newsletter-page__form-card .newsletter-form form:not(.mailpoet_form) .wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border: 2px solid #C8612A;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #3A3632;
  text-align: center;
}
.newsletter-page__form-card .newsletter-form > p {
  text-align: center;
  color: #6B645C;
  font-size: 0.95rem;
}
.newsletter-page__benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .newsletter-page__benefits {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}
.newsletter-page__benefit {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #FDFCFA;
  border-radius: 16px;
  border: 1px solid #E0D6CB;
  transition: all 0.35s ease;
}
.newsletter-page__benefit:hover {
  border-color: rgba(200, 97, 42, 0.25);
  box-shadow: 0 4px 16px rgba(42, 42, 37, 0.1);
  transform: translateY(-4px);
}
.newsletter-page__benefit-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(200, 97, 42, 0.08);
  border-radius: 50%;
  color: #C8612A;
  transition: all 0.35s ease;
}
.newsletter-page__benefit-icon svg {
  width: 24px;
  height: 24px;
}
.newsletter-page__benefit:hover .newsletter-page__benefit-icon {
  background-color: #C8612A;
  color: #FDFCFA;
  box-shadow: 0 4px 12px rgba(200, 97, 42, 0.25);
}
.newsletter-page__benefit-title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #2A2A25;
  margin-bottom: 0.5rem;
}
.newsletter-page__benefit-text {
  font-size: 0.95rem;
  color: #6B645C;
  line-height: 1.6;
}
@media (max-width: 576px) {
  .newsletter-page {
    padding: 6rem 0;
  }
  .newsletter-page__form-card .newsletter-form {
    padding: 2rem;
  }
}

.services-timeline {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0;
  pointer-events: none;
  z-index: 2;
}
.services-timeline__track {
  position: absolute;
  top: 0;
  left: -1px;
  width: 2px;
  height: 100%;
  background: rgba(42, 42, 37, 0.08);
  border-radius: 1px;
}
.services-timeline__progress {
  position: absolute;
  top: 0;
  left: -1px;
  width: 2px;
  height: 0;
  background: #C8612A;
  border-radius: 1px;
  will-change: height;
}
.services-timeline__progress::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #C8612A;
  box-shadow: 0 0 10px rgba(200, 97, 42, 0.5), 0 0 24px rgba(200, 97, 42, 0.25), 0 0 40px rgba(200, 97, 42, 0.1);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.services-timeline--active .services-timeline__progress::after {
  opacity: 1;
}
.services-timeline__dot {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(42, 42, 37, 0.1);
  background: #FAF7F3;
  z-index: 3;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.services-timeline__dot::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.services-timeline__dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.services-timeline__dot.is-active {
  border-color: #C8612A;
  background: #FDFCFA;
  transform: translate(-50%, -50%) scale(1.2);
}
.services-timeline__dot.is-active::before {
  background: #C8612A;
}
.services-timeline__dot.is-active::after {
  animation: timelineDotPulse 1s ease-out forwards;
}
@media (max-width: 768px) {
  .services-timeline {
    display: none;
  }
}

@keyframes timelineDotPulse {
  0% {
    transform: scale(1);
    border-color: rgba(200, 97, 42, 0.5);
    opacity: 1;
  }
  100% {
    transform: scale(2.8);
    border-color: rgba(200, 97, 42, 0);
    opacity: 0;
  }
}
.site-footer {
  background-color: #2C3E50;
  color: rgba(255, 255, 255, 0.85);
}

.footer-top {
  padding: 6rem 0 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col--brand {
  padding-right: 2rem;
}
@media (max-width: 1024px) {
  .footer-col--brand {
    grid-column: 1/-1;
    padding-right: 0;
    max-width: 480px;
  }
}
.footer-col__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #C8612A;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #C8612A;
}
.footer-col__desc {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.footer-logo {
  margin-bottom: 1.25rem;
}
.footer-logo img {
  height: 110px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.footer-logo__text {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.5rem;
  color: #FFFFFF;
}

.footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav__list li {
  margin-bottom: 0.65rem;
}
.footer-nav__list a {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: all 0.35s ease;
}
.footer-nav__list a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-contact__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.35s ease;
}
.footer-contact__item svg {
  color: #C8612A;
  flex-shrink: 0;
}
.footer-contact__item:hover {
  color: #FFFFFF;
}
.footer-contact a.footer-contact__item:hover {
  color: #FFFFFF;
}

.footer-horaires {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-horaires p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.15rem;
}
.footer-horaires__hours {
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 0.75rem !important;
}

.footer-bottom {
  background-color: #233140;
}
.footer-bottom__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 1.25rem 0;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}
.footer-bottom__text {
  color: #C8612A;
}
.footer-bottom__credit {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.35s ease;
}
.footer-bottom a:hover {
  color: #FFFFFF;
}
.footer-bottom__credit a {
  color: #C8612A;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.footer-bottom__credit a svg {
  transition: transform 0.35s ease;
}
.footer-bottom__credit a:hover {
  color: #FFFFFF;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom__credit a:hover svg {
  transform: translate(2px, -2px);
}

.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FDFCFA;
  border: 2px solid #C8612A;
  color: #C8612A;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.35s ease;
  z-index: 99;
  box-shadow: 0 4px 16px rgba(42, 42, 37, 0.1);
}
.scroll-to-top svg {
  stroke: #C8612A;
}
.scroll-to-top:hover {
  background-color: #C8612A;
  box-shadow: 0 8px 32px rgba(42, 42, 37, 0.14);
  transform: translateY(-2px);
}
.scroll-to-top:hover svg {
  stroke: #FDFCFA;
}
.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.accent-line {
  display: block;
  width: 40px;
  height: 1.5px;
  background-color: #C8612A;
  margin: 1rem 0;
}
.accent-line--center {
  margin-left: auto;
  margin-right: auto;
}
.accent-line--long {
  width: 60px;
}

.section--cream {
  background-color: #F0EBE3;
}

.section--white {
  background-color: #FDFCFA;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #C8612A, #D49A2A);
  z-index: 9999;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(200, 97, 42, 0.4);
}

[data-reveal] {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal=up] {
  transform: translateY(50px);
}

[data-reveal=left] {
  transform: translateX(-50px);
}

[data-reveal=right] {
  transform: translateX(50px);
}

[data-reveal=scale] {
  transform: scale(0.9);
}

[data-reveal=fade] {
  transform: none;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal-stagger].is-revealed > * {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-stagger].is-revealed > *:nth-child(1) {
  transition-delay: 0s;
}

[data-reveal-stagger].is-revealed > *:nth-child(2) {
  transition-delay: 0.15s;
}

[data-reveal-stagger].is-revealed > *:nth-child(3) {
  transition-delay: 0.3s;
}

[data-reveal-stagger].is-revealed > *:nth-child(4) {
  transition-delay: 0.45s;
}

[data-reveal-stagger].is-revealed > *:nth-child(5) {
  transition-delay: 0.6s;
}

[data-reveal-stagger].is-revealed > *:nth-child(6) {
  transition-delay: 0.75s;
}

[data-reveal-stagger].is-revealed > *:nth-child(7) {
  transition-delay: 0.9s;
}

[data-reveal-stagger].is-revealed > *:nth-child(8) {
  transition-delay: 1.05s;
}

.parallax-img {
  overflow: hidden;
}
.parallax-img img {
  will-change: transform;
  backface-visibility: hidden;
}

[data-scroll-zoom] {
  overflow: hidden;
}
[data-scroll-zoom] img {
  will-change: transform;
  backface-visibility: hidden;
}

@media (max-width: 1024px) {
  .services,
  .services-page {
    padding: 6rem 0;
  }
  .about {
    padding: 6rem 0 3rem;
  }
  .service-detail__link {
    width: auto;
    height: auto;
  }
  .main-nav {
    padding: 0.5rem 1rem;
  }
  .main-nav .menu li a {
    padding: 0.5rem 0.6rem;
    font-size: 0.78rem;
  }
  .site-logo {
    width: 60px;
    height: 60px;
    margin: 0 1rem;
  }
  .site-logo img {
    height: 60px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    width: 100%;
    max-width: 340px;
    padding-top: 4.5rem;
    z-index: 1001;
    border-radius: 0;
  }
  .main-nav .menu {
    width: 100%;
  }
  .menu-overlay {
    z-index: 1000;
  }
  .menu-toggle {
    z-index: 1002;
  }
  h3 {
    font-size: 1.35rem;
  }
  h4 {
    font-size: 1.1rem;
  }
  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  .section {
    padding: 3rem 0;
  }
  .hero {
    padding-top: 0;
  }
  .hero__badge {
    white-space: normal;
    font-size: clamp(1.1rem, 5vw, 2.5rem);
    line-height: 1.25;
  }
  .hero__content {
    padding: 0 1.5rem;
  }
  .btn {
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
  }
  .btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
  }
  .page-banner {
    margin-top: 0;
  }
  .services {
    padding: 3rem 0;
  }
  .services__head {
    margin-bottom: 3rem;
  }
  .services__card-name {
    font-size: 1.2rem;
  }
  .services__card-desc {
    font-size: 1rem;
  }
  .services-page {
    padding: 3rem 0;
  }
  .services-page__intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  .services-detail-list {
    gap: 3rem;
  }
  .service-detail__desc {
    font-size: 1rem;
  }
  .service-detail__prestations li {
    font-size: 0.95rem;
  }
  .service-detail__link-text span, .service-detail__link-clone span {
    font-size: 1.05rem;
  }
  .svc-detail__section-title {
    margin-bottom: 2rem;
  }
  .svc-detail__intro-text {
    font-size: 1rem;
  }
  .svc-detail__process {
    padding: 2.5rem 0;
  }
  .svc-detail__gallery {
    padding: 1rem 0 2.5rem;
  }
  .svc-detail__prestations {
    padding: 2.5rem 0;
  }
  .svc-detail__advantages {
    padding: 2.5rem 0 3rem;
  }
  .pres__label {
    font-size: 1.1rem;
  }
  .pres__savoir-text {
    font-size: 1rem;
  }
  .about {
    padding: 6rem 0 3rem;
  }
  .about__text p {
    font-size: 1.05rem;
  }
  .about__btn {
    padding: 0.875rem 2rem;
    font-size: 0.85rem;
  }
  .tax-credit__card::before {
    transform: none;
    inset: -2px;
    border-radius: 22px;
    opacity: 0.5;
  }
  .tax-credit__card:hover::before {
    transform: none;
  }
  .tax-credit__highlight {
    font-size: 1.1rem;
  }
  .tax-credit__desc {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
  .tax-credit__info {
    padding: 2rem;
  }
  .tax-credit__side {
    padding: 2rem;
  }
  .experience__text {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  .experience__content {
    padding: 3rem 0;
  }
  .experience__btn {
    padding: 0.875rem 2rem;
  }
  .cta {
    padding: 3rem 0;
  }
  .cta__text {
    font-size: 1.1rem;
  }
  .cta__phone-number {
    font-size: 1.3rem;
  }
  .cta .leaf:nth-child(2n) {
    display: none;
  }
  .contact-map iframe {
    height: 300px;
  }
  .newsletter-page {
    padding: 3rem 0;
  }
  .filter-btn {
    padding: 0.4rem 1.1rem;
    font-size: 0.85rem;
  }
  .lightbox__nav {
    font-size: 2rem;
    padding: 0.75rem;
  }
  .footer-top {
    padding: 3rem 0;
  }
  .mentions-legales h2 {
    font-size: 1.5rem;
  }
  .mentions-legales p {
    font-size: 0.95rem;
  }
  .hide-mobile {
    display: none;
  }
}
@media (max-width: 576px) {
  h3 {
    font-size: 1.2rem;
  }
  h4 {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .container {
    padding: 0 1.25rem;
  }
  .hero {
    padding-top: 0;
  }
  .hero__badge {
    font-size: clamp(1rem, 4.5vw, 1.8rem);
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
  }
  .hero__content {
    padding: 0 1rem;
  }
  .hero__subtitle {
    max-width: 100%;
  }
  .hero__nav {
    right: 0.35rem;
  }
  .main-nav {
    max-width: 100%;
    padding-top: 4rem;
    border-radius: 0;
  }
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }
  .btn--lg {
    padding: 0.875rem 2rem;
    font-size: 0.9rem;
  }
  .btn--sm {
    width: auto;
  }
  .page-banner {
    margin-top: 0;
    min-height: 220px;
  }
  .page-banner__content {
    padding: 0 1rem;
  }
  .services {
    padding: 2rem 0;
  }
  .services__head {
    margin-bottom: 2rem;
  }
  .services__card-img {
    margin-bottom: 1rem;
  }
  .services__card-num {
    font-size: 1.25rem;
  }
  .services__card-name {
    font-size: 1.15rem;
  }
  .services__card-desc {
    font-size: 0.95rem;
    margin-top: 0.5rem;
  }
  .services__card-list {
    gap: 0.25rem 1rem;
  }
  .services__card-list li {
    font-size: 0.88rem;
  }
  .services-page {
    padding: 2rem 0;
  }
  .services-page__intro {
    font-size: 1rem;
    line-height: 1.7;
  }
  .services-detail-list {
    gap: 3rem;
  }
  .service-detail {
    gap: 2rem;
  }
  .service-detail__content {
    padding: 0;
  }
  .service-detail__num {
    font-size: 1.25rem;
  }
  .service-detail__desc {
    font-size: 0.95rem;
    margin-bottom: 1rem;
  }
  .service-detail__prestations li {
    font-size: 0.9rem;
  }
  .service-detail__link {
    margin-top: 1.25rem;
  }
  .service-detail__link-text span, .service-detail__link-clone span {
    font-size: 1rem;
  }
  .svc-detail__section-title {
    margin-bottom: 1.5rem;
  }
  .svc-detail__intro {
    padding: 1.5rem 0 0.5rem;
  }
  .svc-detail__intro-text {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .svc-detail__process {
    padding: 2rem 0;
  }
  .svc-detail__step-num {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  .svc-detail__step-title {
    font-size: 1rem;
  }
  .svc-detail__step-text {
    font-size: 0.9rem;
  }
  .svc-detail__gallery {
    padding: 0.5rem 0 2rem;
  }
  .svc-detail__prestations {
    padding: 2rem 0;
  }
  .svc-detail__prestations-list li {
    font-size: 0.9rem;
    padding: 0.85rem 1rem 0.85rem 2.75rem;
  }
  .svc-detail__advantages {
    padding: 2rem 0 2.5rem;
  }
  .svc-detail__advantage {
    padding: 1.5rem 1.25rem;
    border-radius: 16px;
  }
  .svc-detail__advantage-num {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .svc-detail__advantage-title {
    font-size: 1rem;
  }
  .svc-detail__advantage-text {
    font-size: 0.9rem;
  }
  .pres__label {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }
  .pres__manifeste-text::before, .pres__manifeste-text::after {
    width: 40px;
  }
  .pres__manifeste-text::before {
    margin-bottom: 1rem;
  }
  .pres__manifeste-text::after {
    margin-top: 1rem;
  }
  .pres__savoir-text {
    font-size: 0.95rem;
  }
  .pres__savoir-title {
    margin-bottom: 1rem;
  }
  .pres__savoir-link {
    font-size: 0.85rem;
  }
  .about {
    padding: 3rem 0 2rem;
  }
  .about__accent {
    margin-top: 1.25rem;
    margin-bottom: 2rem;
    width: 40px;
  }
  .about__stats {
    margin-bottom: 2rem;
  }
  .about__stat {
    padding: 1.25rem 1rem;
  }
  .about__stat-label {
    font-size: 0.78rem;
  }
  .about__text p {
    font-size: 1rem;
    line-height: 1.7;
  }
  .about__btn {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-size: 0.82rem;
  }
  .tax-credit {
    padding: 2rem 0;
  }
  .tax-credit__card {
    border-radius: 16px;
  }
  .tax-credit__card::before {
    border-radius: 18px;
    inset: -2px;
  }
  .tax-credit__card::after {
    border-radius: 16px;
  }
  .tax-credit__info {
    padding: 1.25rem;
  }
  .tax-credit__title {
    margin-bottom: 0.75rem;
  }
  .tax-credit__highlight {
    font-size: 1rem;
  }
  .tax-credit__desc {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }
  .tax-credit__limit {
    padding: 0.875rem 1rem;
  }
  .tax-credit__limit-label {
    font-size: 0.75rem;
  }
  .tax-credit__limit-amount {
    font-size: 0.95rem;
  }
  .tax-credit__side {
    padding: 1.25rem;
  }
  .tax-credit__payments-title {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }
  .tax-credit__options {
    gap: 0.4rem;
  }
  .tax-credit__option {
    padding: 0.45rem 0.9rem;
    font-size: 0.8rem;
  }
  .tax-credit__avance {
    padding: 1rem;
  }
  .tax-credit__avance-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
  }
  .tax-credit__avance-text {
    font-size: 0.85rem;
  }
  .experience {
    min-height: 340px;
  }
  .experience__content {
    padding: 2rem 0;
  }
  .experience__text {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  .experience__btn {
    padding: 0.8rem 1.75rem;
    font-size: 0.85rem;
  }
  .cta {
    padding: 2rem 0;
  }
  .cta__grid {
    gap: 1.25rem;
  }
  .cta__text {
    font-size: 1rem;
  }
  .cta__btn {
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
  }
  .cta__phone {
    gap: 0.4rem;
  }
  .cta__phone-icon {
    width: 44px;
    height: 44px;
  }
  .cta__phone-icon svg {
    width: 18px;
    height: 18px;
  }
  .cta__phone-number {
    font-size: 1.2rem;
  }
  .cta .leaf {
    width: 22px;
    height: 22px;
  }
  .cta .leaf:nth-child(3n) {
    display: none;
  }
  .contact-info__subtitle {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }
  .contact-info__item {
    padding: 0.9rem 1rem;
    gap: 0.9rem;
  }
  .contact-info__item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
  }
  .contact-info__item-icon svg {
    width: 20px;
    height: 20px;
  }
  .contact-info__item-content h4 {
    font-size: 0.75rem;
  }
  .contact-info__item-content p, .contact-info__item-content a {
    font-size: 0.95rem;
  }
  .contact-form__title {
    font-size: 1.25rem;
  }
  .contact-form .wpcf7-form input[type=text],
  .contact-form .wpcf7-form input[type=email],
  .contact-form .wpcf7-form input[type=tel],
  .contact-form .wpcf7-form select,
  .contact-form .wpcf7-form textarea,
  .contact-form form input[type=text],
  .contact-form form input[type=email],
  .contact-form form input[type=tel],
  .contact-form form select,
  .contact-form form textarea {
    font-size: 1rem;
  }
  .contact-map iframe {
    height: 250px;
  }
  .newsletter-page {
    padding: 2rem 0;
  }
  .newsletter-page__hero {
    margin-bottom: 2rem;
  }
  .newsletter-page__desc {
    font-size: 1rem;
  }
  .newsletter-page__form-card {
    margin-bottom: 2rem;
  }
  .newsletter-page__benefit {
    padding: 1rem;
  }
  .newsletter-page__benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.75rem;
  }
  .newsletter-page__benefit-icon svg {
    width: 22px;
    height: 22px;
  }
  .newsletter-page__benefit-title {
    font-size: 1rem;
  }
  .newsletter-page__benefit-text {
    font-size: 0.9rem;
  }
  .realisations-filters {
    gap: 0.35rem;
    margin-bottom: 2rem;
  }
  .filter-btn {
    padding: 0.35rem 0.9rem;
    font-size: 0.8rem;
  }
  .realisations-grid {
    gap: 1rem;
  }
  .realisation-card__overlay {
    padding: 1rem;
  }
  .realisation-card__title {
    font-size: 1.1rem;
  }
  .realisation-card__meta {
    font-size: 0.8rem;
  }
  .realisation-card__description {
    font-size: 0.88rem;
  }
  .flip-card__hint {
    display: none;
  }
  .flip-card__label {
    font-size: 0.65rem;
    padding: 0.25rem 0.7rem;
  }
  .flip-card__title {
    font-size: 0.8rem;
  }
  .flip-card__info {
    padding: 0.25rem 1rem;
    padding-top: 1.25rem;
  }
  .lightbox__close {
    top: 1rem;
    right: 1rem;
    font-size: 1.25rem;
  }
  .lightbox__nav {
    font-size: 1.8rem;
    padding: 0.5rem;
  }
  .lightbox__nav--prev {
    left: 0.5rem;
  }
  .lightbox__nav--next {
    right: 0.5rem;
  }
  .lightbox__image {
    max-width: 95vw;
    max-height: 80vh;
  }
  .footer-top {
    padding: 2rem 0;
  }
  .footer-bottom__inner {
    padding-bottom: 5rem;
  }
  .footer-logo img {
    height: 60px;
  }
  .footer-col__title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  .footer-col__desc {
    font-size: 0.95rem;
  }
  .footer-nav__list a {
    font-size: 0.95rem;
  }
  .footer-contact__item {
    font-size: 0.95rem;
  }
  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: 5.5rem;
    right: 1.25rem;
  }
  .mentions-legales h2 {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  .mentions-legales p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
}
@media (max-width: 768px) {
  .services__link,
  .service-detail__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: auto;
    height: auto;
    overflow: visible;
  }
  .services__link::before,
  .service-detail__link::before {
    display: none;
  }
  .services__link > svg,
  .service-detail__link > svg {
    position: relative;
    top: auto;
    transform: rotate(-50deg);
    flex-shrink: 0;
  }
  .services__link:hover > svg,
  .service-detail__link:hover > svg {
    transform: rotate(-50deg);
  }
  .services__link-text,
  .service-detail__link-text {
    position: relative;
    display: inline-flex;
  }
  .services__link-text span,
  .service-detail__link-text span {
    transition: none;
  }
  .services__link-clone,
  .service-detail__link-clone {
    display: none;
  }
  .services__link:hover .services__link-text span,
  .service-detail__link:hover .service-detail__link-text span {
    transform: none;
    transition: none;
  }
}
@media (hover: none) and (pointer: coarse) {
  .flip-card:hover .flip-card__inner {
    transform: none;
  }
  .flip-card.is-flipped .flip-card__inner {
    transform: rotateY(180deg);
  }
  .flip-card .realisation-card__meta,
  .flip-card .realisation-card__description {
    opacity: 1;
    transform: translateY(0);
  }
  .realisation-card__meta, .realisation-card__description {
    opacity: 1;
    transform: translateY(0);
  }
  .tax-credit__card:hover {
    transform: none;
  }
}
@media (min-width: 769px) {
  .hide-desktop {
    display: none;
  }
}

/* ============================================================
   VIGNETTE RECRUTEMENT FLOTTANTE
   ============================================================ */

.recruit-widget {
  position: fixed;
  right: 1.5rem;
  bottom: 5rem;
  z-index: 9990;
  width: 270px;
  background: #FDFCFA;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(42, 42, 37, 0.18), 0 2px 8px rgba(200, 97, 42, 0.12);
  border: 1.5px solid #E0D6CB;
  padding: 1.5rem 1.5rem 1.25rem;
  overflow: hidden;
  /* Entrée : masqué par défaut, slide depuis la droite */
  opacity: 0;
  transform: translateX(calc(100% + 2rem));
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.26, 0.64, 1);
  pointer-events: none;
}
.recruit-widget--visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.recruit-widget--hiding {
  opacity: 0;
  transform: translateX(calc(100% + 2rem));
}

.recruit-widget__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F0EBE3;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #6B645C;
  transition: background 0.25s ease, color 0.25s ease;
  flex-shrink: 0;
}
.recruit-widget__close:hover {
  background: #C8612A;
  color: #FDFCFA;
}

.recruit-widget__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.recruit-widget__label {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8612A;
}

.recruit-widget__title {
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: #2A2A25;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.recruit-widget__meta {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.recruit-widget__meta li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: #6B645C;
  line-height: 1.4;
}
.recruit-widget__meta li svg {
  stroke: #C8612A;
  flex-shrink: 0;
}

.recruit-widget__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #FDFCFA;
  background: #C8612A;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.recruit-widget__btn svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.recruit-widget__btn:hover {
  background: #7A3B2E;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200, 97, 42, 0.35);
}
.recruit-widget__btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .recruit-widget {
    right: 1rem;
    bottom: 4.5rem;
    width: calc(100vw - 2rem);
    max-width: 320px;
  }
}

/* ============================================================
   BANNIÈRE RECRUTEMENT SANS IMAGE
   ============================================================ */
.page-banner--recruit {
  background: linear-gradient(135deg, #C8612A 0%, #D4845A 50%, #E0B090 100%);
  margin-top: 80px;
}
.page-banner--recruit .page-banner__overlay {
  background: linear-gradient(to bottom, rgba(28, 28, 24, 0.1) 0%, rgba(28, 28, 24, 0.05) 100%);
}

/* ============================================================
   PAGE RECRUTEMENT
   ============================================================ */
.job__intro {
  padding: 4rem 0 2rem;
  text-align: center;
}
.job__intro-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.job__intro-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 500;
  color: #2A2A25;
  letter-spacing: -0.02em;
  margin: 0;
}
.job__intro-sub {
  font-size: 1.1rem;
  color: #C8612A;
  font-weight: 600;
  margin: 0;
}

.job__meta-bar {
  background: #F0EBE3;
  padding: 1.75rem 0;
  border-top: 1px solid #E0D6CB;
  border-bottom: 1px solid #E0D6CB;
}
.job__meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.job__meta-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #3A3632;
}
.job__meta-item svg {
  stroke: #C8612A;
  flex-shrink: 0;
}
.job__meta-item strong {
  font-weight: 700;
  color: #2A2A25;
  margin-right: 0.25rem;
}
@media (max-width: 640px) {
  .job__meta-list {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
}

.job__body {
  padding: 5rem 0 6rem;
}
.job__grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .job__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.job__block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #E0D6CB;
}
.job__block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.job__block-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #C8612A;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.job__block-title svg {
  stroke: #C8612A;
  flex-shrink: 0;
}
.job__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.job__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
  color: #3A3632;
  line-height: 1.6;
}
.job__list li::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #C8612A;
  margin-top: 0.55rem;
  flex-shrink: 0;
}

.job__sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 900px) {
  .job__sidebar {
    position: static;
  }
}

.job__offer-card {
  background: #FDFCFA;
  border: 1.5px solid #E0D6CB;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 4px 24px rgba(42, 42, 37, 0.06);
}
.job__offer-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2A2A25;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.job__offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.job__offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: #3A3632;
  line-height: 1.55;
}
.job__offer-list li svg {
  stroke: #C8612A;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.job__apply-card {
  background: #C8612A;
  border-radius: 16px;
  padding: 1.75rem 2rem;
  box-shadow: 0 8px 32px rgba(200, 97, 42, 0.3);
}
.job__apply-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FDFCFA;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.job__apply-text {
  font-size: 0.88rem;
  color: rgba(253, 252, 250, 0.8);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.job__apply-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-family: "Outfit", -apple-system, sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #C8612A;
  background: #FDFCFA;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.35s ease;
  word-break: break-all;
  margin-bottom: 0.9rem;
}
.job__apply-btn:hover {
  background: #2A2A25;
  color: #FDFCFA;
  transform: translateY(-2px);
}
.job__apply-btn svg {
  flex-shrink: 0;
}
.job__apply-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(253, 252, 250, 0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.35s ease;
}
.job__apply-link:hover {
  color: #FDFCFA;
}
.job__apply-link svg {
  flex-shrink: 0;
  transition: transform 0.35s ease;
}
.job__apply-link:hover svg {
  transform: translateX(3px);
}
