@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@font-face {
  font-family: "DelicateStellar";
  src: url("../assets/fonts/DelicateStellar.woff") format("woff"), url("../assets/fonts/DelicateStellar.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "PrestigeEdition";
  src: url("../assets/fonts/Prestige Edition - Regular.woff2") format("woff2"), url("../assets/fonts/Prestige Edition - Regular.woff") format("woff"), url("../assets/fonts/Prestige Edition - Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
  text-rendering: optimizeLegibility;
}
@font-face {
  font-family: "KinnedaDevelin";
  src: url("../assets/fonts/KinnedaDevelin.woff") format("woff"), url("../assets/fonts/KinnedaDevelin.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  text-rendering: optimizeLegibility;
}
::-moz-selection {
  background: #c2a06c;
  color: #320d1c;
  text-shadow: none;
}
::selection {
  background: #c2a06c;
  color: #320d1c;
  text-shadow: none;
}

::-moz-selection {
  background: #c2a06c;
  color: #eee;
  text-shadow: none;
}

.grecaptcha-badge {
  display: none !important;
}

body {
  font-family: "Outfit", sans-serif;
  background: #f9f5f2;
  color: #624f47;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "KinnedaDevelin", serif;
  margin-bottom: 12px;
  font-weight: normal;
  line-height: 1.2;
}

h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading,
h4.wp-block-heading,
h5.wp-block-heading,
h6.wp-block-heading {
  font-family: "KinnedaDevelin", serif;
  margin-bottom: 12px;
  font-weight: normal;
  line-height: 1.2;
}

h1 {
  font-size: 5.2rem;
  line-height: 1.5;
  font-family: "KinnedaDevelin", sans-serif !important;
}
@media (max-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }
}

.button__group {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.button__primary {
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #b39656;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background-image: linear-gradient(to right, #7b5f30, #b79c5a);
  background-position: left center;
  background-size: 100% auto;
}
.button__primary img {
  transition: all 0.3s ease-in-out;
  transform: translateX(0);
}
.button__primary:hover {
  background-size: 200% auto;
  background-position: right center;
}
.button__primary:hover img {
  transform: translateX(4px);
}

.button__secondary {
  background-color: rgba(242, 236, 227, 0.3);
  color: #7f6333;
  padding: 12px 24px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 1px solid #eae1d4;
}
.button__secondary img {
  transition: all 0.3s ease-in-out;
  filter: invert(0);
  transform: translateX(0);
}
.button__secondary:hover {
  background: #c2a06c;
  color: #fff;
}
.button__secondary:hover img {
  filter: brightness(0) saturate(100%) invert(93%) sepia(0%) saturate(0%) hue-rotate(248deg) brightness(107%) contrast(106%);
  transform: translateX(4px);
}

.button__tertiary {
  color: #7f6333;
  padding: 12px 0;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  position: relative;
}
.button__tertiary:before {
  content: "";
  background: #f1e1d4;
  width: 62px;
  height: 62px;
  position: absolute;
  left: 32px;
  top: 12px;
  z-index: -1;
  border-radius: 50%;
  top: 0px;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}
.button__tertiary img {
  transition: all 0.3s ease-in-out;
  transform: translateX(0);
}
.button__tertiary span {
  transition: all 0.3s ease-in-out;
  transform: translateX(0);
}
.button__tertiary:hover:before {
  transform: scale(0.75);
}
.button__tertiary:hover img {
  transform: translateX(4px);
}
.button__tertiary:hover span {
  transform: translateX(4px);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(249, 245, 242, 0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);
  transition: all 0.3s ease-in-out;
}
body.admin-bar header {
  top: 32px;
}
header .language-switcher {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 20px;
}
header .language-switcher .lang-switch {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  padding: 4px 6px;
  background-image: linear-gradient(to right, #7b5f30, #b79c5a);
  background-position: left center;
  background-size: 100% auto;
  border: 1px solid #b39656;
}
header .language-switcher .lang-switch:hover {
  background-size: 200% auto;
  background-position: right center;
}
header.is-fixed {
  background-color: #f9f5f2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
body.admin-bar header.is-fixed {
  top: 0;
}
header .header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
header .site-branding {
  position: relative;
  z-index: 1001;
}
header .site-branding img {
  max-width: 80px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  header .site-branding img {
    max-width: 60px;
  }
}
header .site-branding:hover img {
  transform: scale(1.05);
}
header .main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .main-navigation .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  header .main-navigation .menu {
    display: none;
    justify-content: center;
  }
}
header .main-navigation .menu li {
  position: relative;
  margin: 0;
}
header .main-navigation .menu li a {
  color: #212121;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}
header .main-navigation .menu li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  background-image: linear-gradient(to right, transparent, #c2a06c, transparent);
}
header .main-navigation .menu li a:hover {
  color: #c2a06c;
}
header .main-navigation .menu li a:hover:before {
  width: 100%;
}
header .main-navigation .menu li:last-child a {
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #b39656;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background-image: linear-gradient(to right, #7b5f30, #b79c5a);
  background-position: left center;
  background-size: 100% auto;
}
header .main-navigation .menu li:last-child a img {
  transition: all 0.3s ease-in-out;
  transform: translateX(0);
}
header .main-navigation .menu li:last-child a:hover {
  background-size: 200% auto;
  background-position: right center;
}
header .main-navigation .menu li:last-child a:hover img {
  transform: translateX(4px);
}
header .main-navigation .menu li:last-child a {
  padding: 12px 24px;
  border-radius: 0;
}
header .main-navigation .menu li:last-child a:before, header .main-navigation .menu li:last-child a:after {
  display: none;
}
header .main-navigation .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 1001;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 767px) {
  header .main-navigation .menu-toggle {
    display: flex;
  }
}
header .main-navigation .menu-toggle {
  font-size: 0;
  color: transparent;
}
header .main-navigation .menu-toggle:before, header .main-navigation .menu-toggle:after {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  background: #c2a06c;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header .main-navigation .menu-toggle span {
  display: block;
  width: 30px;
  height: 3px;
  background: #c2a06c;
  border-radius: 3px;
  transition: all 0.3s ease;
}
header .main-navigation .menu-toggle.toggled {
  gap: 0;
}
header .main-navigation .menu-toggle.toggled:before {
  transform: rotate(45deg) translateY(4px);
}
header .main-navigation .menu-toggle.toggled span {
  opacity: 0;
  transform: scale(0);
}
header .main-navigation .menu-toggle.toggled:after {
  transform: rotate(-45deg) translateY(-4px);
}
header .main-navigation .menu-toggle:hover:before,
header .main-navigation .menu-toggle:hover span, header .main-navigation .menu-toggle:hover:after {
  background: rgb(177.3894230769, 136.3605769231, 73.6105769231);
}
header .main-navigation .menu-toggle:hover.toggled:before, header .main-navigation .menu-toggle:hover.toggled:after {
  background: #320d1c;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(50, 13, 28, 0);
  backdrop-filter: blur(0px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  background: rgba(50, 13, 28, 0.5);
  backdrop-filter: blur(8px);
}

@media (max-width: 767px) {
  .main-navigation .menu {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    background: linear-gradient(135deg, #f9f5f2 0%, rgb(253.8315789474, 253.0526315789, 252.4684210526) 100%);
    padding: 120px 40px 40px;
    gap: 0;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    align-items: center;
    text-align: center;
  }
  .main-navigation .menu:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(180deg, rgba(194, 160, 108, 0.1) 0%, transparent 100%);
    pointer-events: none;
  }
  .main-navigation .menu li {
    width: 100%;
    margin: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
  }
  .main-navigation .menu li a {
    display: block;
    padding: 20px 24px;
    font-size: 1.125rem;
    position: relative;
    transition: all 0.3s ease;
  }
  .main-navigation .menu li a:hover {
    color: #c2a06c;
    background: rgba(194, 160, 108, 0.05);
  }
  .main-navigation .menu li:last-child {
    margin-top: 24px;
    padding: 0 24px;
  }
  .main-navigation .menu li:last-child a {
    color: #fff;
    padding: 12px 24px;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid #b39656;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background-image: linear-gradient(to right, #7b5f30, #b79c5a);
    background-position: left center;
    background-size: 100% auto;
  }
  .main-navigation .menu li:last-child a img {
    transition: all 0.3s ease-in-out;
    transform: translateX(0);
  }
  .main-navigation .menu li:last-child a:hover {
    background-size: 200% auto;
    background-position: right center;
  }
  .main-navigation .menu li:last-child a:hover img {
    transform: translateX(4px);
  }
  .main-navigation .menu li:last-child a {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: none;
    border-radius: 4px;
    padding: 16px 24px;
    text-align: center;
  }
  .main-navigation.toggled .menu {
    right: 0;
  }
  .main-navigation.toggled .menu li {
    opacity: 1;
    transform: translateY(0);
  }
  .main-navigation.toggled .menu li:nth-child(1) {
    transition-delay: 0.08s;
  }
  .main-navigation.toggled .menu li:nth-child(2) {
    transition-delay: 0.16s;
  }
  .main-navigation.toggled .menu li:nth-child(3) {
    transition-delay: 0.24s;
  }
  .main-navigation.toggled .menu li:nth-child(4) {
    transition-delay: 0.32s;
  }
  .main-navigation.toggled .menu li:nth-child(5) {
    transition-delay: 0.4s;
  }
  .main-navigation.toggled .menu li:nth-child(6) {
    transition-delay: 0.48s;
  }
  .main-navigation.toggled .menu li:nth-child(7) {
    transition-delay: 0.56s;
  }
  .main-navigation.toggled .menu li:nth-child(8) {
    transition-delay: 0.64s;
  }
  .main-navigation.toggled .menu li:nth-child(9) {
    transition-delay: 0.72s;
  }
  .main-navigation.toggled .menu li:nth-child(10) {
    transition-delay: 0.8s;
  }
}
body.menu-open {
  overflow: hidden;
}
@media (max-width: 767px) {
  body.menu-open header .site-branding img {
    filter: brightness(0.8);
  }
}

.section__base {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .section__base {
    padding: 80px 0;
  }
}
.section__base h2 {
  font-size: 3.5rem;
  line-height: 1.3;
  margin-top: 0;
}
@media (max-width: 768px) {
  .section__base h2 {
    font-size: 2.5rem;
  }
}
.section__base h2.first-letter span {
  color: #c2a06c;
  font-family: "DelicateStellar", serif;
  font-size: 6rem;
  margin-top: 20px;
  line-height: 1;
  position: relative;
  top: 16px;
}

.section__hero {
  background-size: cover;
  background-position: center;
  min-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.section__hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f9f5f2, rgba(249, 245, 242, 0.6) 50%, rgba(249, 245, 242, 0));
  z-index: 1;
}
.section__hero .container {
  position: relative;
  z-index: 2;
}
.section__hero h1 {
  color: #320d1c;
  margin: 0;
  line-height: 1.3;
  font-weight: bold;
}
@media (max-width: 768px) {
  .section__hero h1 {
    font-size: 3.2rem;
  }
}
.section__hero h1 span {
  font-family: "KinnedaDevelin", serif !important;
  display: block;
  font-weight: normal;
  font-size: 4.5rem;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .section__hero h1 span {
    font-size: 2.5rem;
  }
}
.section__hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 32px auto 52px 0;
}
@media (max-width: 768px) {
  .section__hero p {
    font-size: 1.1rem;
  }
}
.section__hero .half-circle-svg {
  position: absolute;
  bottom: -32px;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 200px;
  z-index: 3;
}
@media (max-width: 768px) {
  .section__hero .half-circle-svg {
    height: 130px;
  }
}
.section__hero .half-circle-svg svg {
  width: 100%;
  height: 100%;
  fill: #f9f5f2;
  position: absolute;
  bottom: -20px;
  left: 0;
}

.section__base {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .section__base {
    padding: 80px 0;
  }
}
.section__base h2 {
  font-size: 3.5rem;
}
@media (max-width: 768px) {
  .section__base h2 {
    font-size: 2.5rem;
  }
}

.section-footer-cta {
  background: #fef2e0;
  text-align: center;
  position: relative;
  padding: 160px 0 160px 0;
  z-index: 1;
  overflow: hidden;
}
.section-footer-cta .col-12 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.section-footer-cta .col-12 h2 {
  margin: 0;
}
.section-footer-cta .col-12 p {
  margin: 0;
}
.section-footer-cta .half-circle-svg {
  position: absolute;
  bottom: auto;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 200px;
}
@media (max-width: 768px) {
  .section-footer-cta .half-circle-svg {
    top: -80px;
  }
}
.section-footer-cta .half-circle-svg svg {
  width: 100%;
  height: 100%;
  fill: #f9f5f2;
}

footer {
  background: #c2a06c;
  color: #402c0d;
  padding: 72px 0 52px 0;
  position: relative;
  z-index: 2;
}
footer .half-circle-svg {
  z-index: 1;
  position: absolute;
  overflow: hidden;
  top: -92px;
  bottom: auto;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
}
@media (max-width: 768px) {
  footer .half-circle-svg {
    top: -112px;
  }
}
footer .half-circle-svg svg {
  width: 100%;
  height: 100%;
  fill: #f9f5f2;
  position: absolute;
  top: 0;
  left: -25%;
  right: 0;
  width: 150%;
}
footer .footer__inner {
  position: relative;
  z-index: 2;
}
footer .footer__inner .custom-logo-link img {
  filter: brightness(0) saturate(100%) invert(14%) sepia(9%) saturate(5204%) hue-rotate(3deg) brightness(102%) contrast(90%);
  max-width: 100px;
}
footer .footer__inner h2 {
  font-size: 1.25rem;
  font-family: "Outfit", sans-serif;
}
footer .footer__inner h3 {
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
}
footer .footer__inner h3:after {
  content: "";
  display: block;
  margin: 12px auto 0 0;
  height: 2px;
  width: 80px;
  background-image: linear-gradient(to right, #e3c89e, transparent);
}
footer .footer__inner .footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
footer .footer__inner .footer-menu li {
  margin-bottom: 12px;
}
footer .footer__inner .footer-menu li a {
  color: #402c0d;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .footer__inner .footer-menu li a:hover {
  color: #f0e9dd;
}
footer .footer__inner .footer-contact-item {
  display: flex;
  gap: 4px;
  align-items: center;
}
footer .footer__inner .footer-contact-item a {
  color: #402c0d;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
footer .footer__inner .footer-contact-item a:hover {
  color: #f0e9dd;
}
footer .site-info {
  padding: 0 20px;
  text-align: center;
  margin-top: 52px;
  font-size: 0.875rem;
}
footer .site-info a {
  color: #402c0d;
  text-decoration: underline;
}

.luxury-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f9f5f2 0%, #ffffff 50%, #f9f5f2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.luxury-loader.loaded {
  opacity: 0;
  visibility: hidden;
}
.luxury-loader .loader-content {
  text-align: center;
  animation: fadeInScale 1.2s ease-out;
}
.luxury-loader .loader-logo {
  margin-bottom: 40px;
  animation: logoFloat 3s ease-in-out infinite;
}
.luxury-loader .loader-logo img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(194, 160, 108, 0.3));
}
.luxury-loader .loader-animation {
  margin: 40px 0;
}
.luxury-loader .luxury-spinner {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto;
}
.luxury-loader .luxury-spinner .spinner-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #c2a06c;
  animation: luxuryRotate 2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}
.luxury-loader .luxury-spinner .spinner-ring:nth-child(1) {
  animation-delay: 0s;
  border-top-color: #c2a06c;
  opacity: 1;
}
.luxury-loader .luxury-spinner .spinner-ring:nth-child(2) {
  width: 85%;
  height: 85%;
  top: 7.5%;
  left: 7.5%;
  animation-delay: -0.4s;
  border-top-color: rgba(194, 160, 108, 0.7);
  animation-direction: reverse;
}
.luxury-loader .luxury-spinner .spinner-ring:nth-child(3) {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-delay: -0.8s;
  border-top-color: rgba(194, 160, 108, 0.4);
}
.luxury-loader .loader-text {
  font-family: "PrestigeEdition", serif;
  font-size: 1.2rem;
  color: #320d1c;
  letter-spacing: 3px;
  margin-top: 30px;
  animation: textPulse 2s ease-in-out infinite;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes luxuryRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes textPulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
body.page-enter #primary,
body.page-enter #colophon,
body.page-enter .section__base {
  animation: fadeInUp 0.6s ease-out;
}
body.page-enter #masthead {
  animation: fadeIn 0.3s ease-out;
}

body.page-exit #primary,
body.page-exit #colophon,
body.page-exit .section__base {
  animation: fadeOutDown 0.6s ease-in forwards;
}
body.page-exit #masthead {
  animation: fadeOut 0.3s ease-in forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.separator {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.separator .right-line {
  background-image: linear-gradient(to right, #b8985f, transparent);
  height: 2px;
  width: 100%;
  flex-grow: 1;
}
.separator .left-line {
  background-image: linear-gradient(to left, #b8985f, transparent);
  height: 2px;
  width: 100%;
  flex-grow: 1;
}
.separator .separator-dot {
  display: flex;
  gap: 12px;
  align-items: center;
}
.separator .separator-dot .dot {
  width: 12px;
  height: 12px;
  background: #c2a06c;
  transform-origin: center;
  transform: rotate(45deg);
  flex-shrink: 1;
}
.separator .separator-dot:before {
  content: "";
  width: 4px;
  height: 4px;
  background: #c2a06c;
  transform: rotate(-45deg);
  display: inline-block;
}
.separator .separator-dot:after {
  content: "";
  width: 4px;
  height: 4px;
  background: #c2a06c;
  transform: rotate(-45deg);
  display: inline-block;
}

.section-compagnon {
  position: relative;
  text-align: center;
}
.section-compagnon:before {
  content: "";
  width: 100%;
  max-width: 700px;
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  background-image: url("../assets/img/bg-eiffel-tower.jpg");
  background-size: cover;
  z-index: -1;
  mix-blend-mode: darken;
}
@media (max-width: 768px) {
  .section-compagnon:before {
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    background-position: bottom right;
  }
}
.section-compagnon .container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.section-compagnon .container h3 {
  color: #c2a06c;
  margin-top: 0;
  font-size: 1.5rem;
}
.section-compagnon .container h3:after {
  content: "";
  display: block;
  margin: 12px auto 0 auto;
  height: 2px;
  width: 120px;
  background-image: linear-gradient(to right, transparent, #c2a06c, transparent);
}
.section-compagnon .container .separator:first-child {
  width: 60%;
  margin: 0 auto 0 auto;
  margin-bottom: 52px;
}
.section-compagnon .container .separator:last-child {
  margin-top: 72px;
}

.section-services h2 {
  text-align: center;
  margin-bottom: 52px;
}
.section-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 400px));
  gap: 32px;
  justify-content: center;
}
.section-services .services-grid .service-card {
  max-width: 400px;
  margin: 0 auto;
}
.section-services .services-grid .service-card h3 {
  font-size: 2rem;
}
.section-services .services-grid .service-card img {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.section-services .services-grid .service-card:hover img {
  opacity: 0.9;
}
.section-services .services-grid .service-card .service-pricing p {
  color: #c2a06c;
  font-family: "PrestigeEdition", serif;
  font-size: 1.25rem;
}
.section-services .services-grid .service-card .service-details h4 {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}
.section-services .services-grid .service-card .service-details h4:before {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("../assets/img/arrow-gold.svg");
  display: inline-block;
}
.section-services .services-grid .service-card .service-details ul {
  padding: 0 0 0 32px;
  margin: 0;
  margin-bottom: 16px;
}
.section-services .services-grid .service-card .service-details ul li {
  list-style: none;
}
.section-services .services-grid .service-card .service-details ul li:before {
  content: "-";
  color: #c2a06c;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.section-services .services-grid .service-card .service-details p {
  font-size: 1rem;
}

.section-testimonies h2 {
  text-align: center;
  margin-bottom: 52px;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  align-items: center;
}
@media (max-width: 1200px) {
  .references-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .references-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .references-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.references-grid .reference-item {
  width: 100%;
  aspect-ratio: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.references-grid .reference-item a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.references-grid .reference-item img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: darken;
  transition: filter 0.3s ease;
}
.references-grid .reference-item:hover img {
  filter: grayscale(0%);
}

.testimonials-slider-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0 0 0;
}

.testimonials-swiper {
  padding: 0 50px 0;
}
@media (max-width: 768px) {
  .testimonials-swiper {
    padding: 0 40px 0;
  }
}
.testimonials-swiper .swiper-slide {
  height: auto;
}
.testimonials-swiper .testimonial-card {
  padding: 20px;
  text-align: center;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .testimonials-swiper .testimonial-card {
    padding: 30px 20px;
    min-height: 200px;
  }
}
.testimonials-swiper .testimonial-card .testimonial-content {
  position: relative;
  margin-bottom: 24px;
}
.testimonials-swiper .testimonial-card .testimonial-content .quote-icon {
  font-size: 16rem;
  line-height: 1;
  color: rgba(194, 160, 108, 0.2);
  font-family: "KinnedaDevelin", serif;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonials-swiper .testimonial-card .testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #624f47;
  margin: 32px 0 0 0;
}
@media (max-width: 768px) {
  .testimonials-swiper .testimonial-card .testimonial-content p {
    font-size: 1rem;
  }
}
.testimonials-swiper .testimonial-card .testimonial-author {
  font-family: "PrestigeEdition", serif;
  color: #c2a06c;
  font-size: 0.875rem;
}
.testimonials-swiper .swiper-button-next,
.testimonials-swiper .swiper-button-prev {
  color: #c2a06c;
}
.testimonials-swiper .swiper-button-next:after,
.testimonials-swiper .swiper-button-prev:after {
  font-size: 24px;
}
@media (max-width: 768px) {
  .testimonials-swiper .swiper-button-next:after,
  .testimonials-swiper .swiper-button-prev:after {
    font-size: 20px;
  }
}
.testimonials-swiper .swiper-pagination-bullet {
  background: #c2a06c;
  opacity: 0.3;
  width: 10px;
  height: 4px;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}
.testimonials-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
}

.ovale-picture img {
  clip-path: ellipse(50% 50% at 50% 50%);
  position: relative;
}
.ovale-picture {
  position: relative;
}
.ovale-picture:before {
  content: "";
  width: 110%;
  height: 110%;
  border: 2px solid #c2a06c;
  position: absolute;
  top: -5%;
  left: -5%;
}

.image-ovale {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 3/4;
  padding: 12px;
  border-radius: 50%;
  background: #f9f5f2;
  border: 1.5px solid #c2a06c;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .image-ovale {
    max-width: 240px;
  }
}
.image-ovale img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  display: block;
}

.image-square {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1/1;
  padding: 12px;
  background: #f9f5f2;
  border: 1.5px solid #c2a06c;
  box-sizing: border-box;
}
.image-square img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.section-intro div.first-letter {
  font-size: 2.3rem;
  line-height: 1.4;
  font-family: "Georgia ", serif;
  text-align: center;
  color: #624f47;
}
@media (max-width: 768px) {
  .section-intro div.first-letter {
    font-size: 1.5rem;
  }
}
.section-intro div.first-letter span {
  color: #c2a06c;
  font-family: "DelicateStellar", serif;
  font-size: 6rem;
  margin-top: 20px;
  line-height: 1;
  position: relative;
  top: 16px;
}

.section-details {
  text-align: center;
  overflow: hidden;
}
.section-details h2 {
  margin-bottom: 72px;
}
.section-details h3 {
  font-size: 2rem;
}
.section-details h3:after {
  content: "";
  display: block;
  margin: 12px auto 0 auto;
  height: 2px;
  width: 120px;
  background-image: linear-gradient(to right, transparent, #c2a06c, transparent);
}
.section-details h3.separator-top:after {
  display: none;
}
.section-details h3.separator-top:before {
  content: "";
  display: block;
  margin: 0 auto 12px auto;
  height: 2px;
  width: 120px;
  background-image: linear-gradient(to right, transparent, #c2a06c, transparent);
}
.section-details img {
  width: 80px;
  height: auto;
  margin: 0 auto 24px auto;
  mix-blend-mode: darken;
}
.section-details .col-4:nth-child(2),
.section-details .col-4:nth-child(5) {
  position: relative;
}
.section-details .col-4:nth-child(2):before,
.section-details .col-4:nth-child(5):before {
  content: "";
  position: absolute;
  left: -32px;
  top: 10%;
  width: 2px;
  height: 80%;
  background-image: linear-gradient(to bottom, transparent, #c2a06c, transparent);
  opacity: 0.2;
}
.section-details .col-4:nth-child(2):after,
.section-details .col-4:nth-child(5):after {
  content: "";
  position: absolute;
  right: -32px;
  top: 10%;
  width: 2px;
  height: 80%;
  background-image: linear-gradient(to bottom, transparent, #c2a06c, transparent);
  opacity: 0.2;
}
.section-details .grid-cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .section-details .grid-cols-3 {
    grid-template-columns: 1fr;
  }
}
.section-details .grid-cols-3 .details-item {
  position: relative;
  padding: 0 20px;
}
.section-details .grid-cols-3 .details-item img {
  margin: 0;
}
.section-details .grid-cols-3 .details-item:nth-child(2):before,
.section-details .grid-cols-3 .details-item:nth-child(5):before {
  content: "";
  position: absolute;
  left: -32px;
  top: 10%;
  width: 2px;
  height: 80%;
  background-image: linear-gradient(to bottom, transparent, #c2a06c, transparent);
  opacity: 0.2;
}
.section-details .grid-cols-3 .details-item:nth-child(2):after,
.section-details .grid-cols-3 .details-item:nth-child(5):after {
  content: "";
  position: absolute;
  right: -32px;
  top: 10%;
  width: 2px;
  height: 80%;
  background-image: linear-gradient(to bottom, transparent, #c2a06c, transparent);
  opacity: 0.2;
}

/** PAGES **/
.heading__page {
  padding: 180px 0 60px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .heading__page {
    padding: 120px 20px 40px 20px;
  }
}
.heading__page h1 {
  margin: 0;
}
.heading__page h2 {
  margin: 0;
}
@media (max-width: 768px) {
  .heading__page h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .heading__page p {
    font-size: 1rem;
  }
}

.content__page {
  padding: 120px 20px 52px 20px;
}
@media (max-width: 768px) {
  .content__page {
    padding: 80px 20px 40px 20px;
  }
}
.content__page.is-only-text {
  max-width: 800px;
  padding-bottom: 120px;
  margin: 0 auto;
}

/** CONTACT FORM **/
.form-group-row {
  display: flex;
  gap: 20px;
}
@media (max-width: 768px) {
  .form-group-row {
    flex-direction: column;
  }
}
.form-group-row .form-group {
  flex-grow: 1;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 500;
  font-size: 1rem;
}
.form-group br {
  content: " ";
  display: none;
}
.form-group p {
  margin: 0;
}
.form-group input[type=text],
.form-group input[type=email],
.form-group input[type=tel],
.form-group input[type=date],
.form-group input[type=time],
.form-group textarea,
.form-group select {
  border: 1px solid #c2a06c;
  padding: 12px 16px;
  border-radius: 0;
  width: 100%;
  font-family: "Outfit", sans-serif;
  font-size: 1rem;
  color: #212121;
  background-color: #fff;
  box-sizing: border-box;
}
.form-group input[type=text]:focus,
.form-group input[type=email]:focus,
.form-group input[type=tel]:focus,
.form-group input[type=date]:focus,
.form-group input[type=time]:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: rgb(177.3894230769, 136.3605769231, 73.6105769231);
}
.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c2a06c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-group input[type=submit] {
  border-radius: 0;
  color: #fff;
  padding: 12px 24px;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #b39656;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background-image: linear-gradient(to right, #7b5f30, #b79c5a);
  background-position: left center;
  background-size: 100% auto;
}
.form-group input[type=submit] img {
  transition: all 0.3s ease-in-out;
  transform: translateX(0);
}
.form-group input[type=submit]:hover {
  background-size: 200% auto;
  background-position: right center;
}
.form-group input[type=submit]:hover img {
  transform: translateX(4px);
}
.form-group input[type=submit] {
  color: #fff !important;
  padding: 16px 24px !important;
}
.form-group.form-group--checkbox p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.form-group.form-group--checkbox p br {
  content: " ";
  display: none;
}
.form-group .wpcf7-list-item {
  margin: 0;
}
.form-group.form-group-services .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.form-group.form-group-services .wpcf7-form-control .wpcf7-list-item label {
  font-weight: normal;
  display: flex;
  gap: 12px;
  align-items: center;
}

.section-compagnon-details {
  padding-top: 0;
}
.section-compagnon-details .compagnon-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .section-compagnon-details .compagnon-detail-grid {
    grid-template-columns: 1fr;
  }
}
.section-compagnon-details .compagnon-detail-grid .compagnon-detail-item {
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.section-compagnon-details .compagnon-detail-grid .compagnon-detail-item img {
  width: 80px;
  height: auto;
}
.section-compagnon-details .compagnon-detail-grid .compagnon-detail-item h3 {
  margin: 0;
  font-size: 1.75rem;
}
.section-compagnon-details .compagnon-detail-grid .compagnon-detail-item p {
  margin: 0;
  font-size: 1rem;
}/*# sourceMappingURL=style.css.map */