.img-64x64 {
  aspect-ratio: 64/64;
}

.img-320x240 {
  aspect-ratio: 320/240;
}

.img-320x300 {
  aspect-ratio: 320/300;
}

.img-408x260 {
  aspect-ratio: 408/260;
}

.callback-button {
  position: fixed;
  bottom: 4.375rem;
  right: 0.625rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #D1A054;
  color: #2C1B12;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  animation: pulse 2s infinite;
  z-index: 1000;
}
.callback-button svg {
  width: 1.5rem;
  height: 1.5rem;
  fill: currentColor;
}

@keyframes pulse {
  0%, 100% {
    transform: rotate(0deg);
  }
  20% {
    transform: rotate(5deg);
  }
  40% {
    transform: rotate(-5deg);
  }
  60% {
    transform: rotate(3deg);
  }
  80% {
    transform: rotate(-3deg);
  }
}
.callback-form-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.callback-form-overlay.active {
  opacity: 1;
  transform: translateY(0);
}

.callback-form {
  background: #1F1F1F;
  padding: 1.5rem;
  border-radius: 0.5rem;
  color: #ffffff;
  width: 100%;
  max-width: 22.5rem;
  position: relative;
}
.callback-form h3 {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  color: #D1A054;
}
.callback-form form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.callback-form form input,
.callback-form form textarea {
  width: 100%;
  padding: 0.625rem;
  border: 1px solid #CCCCCC;
  border-radius: 0.25rem;
  background: #121212;
  color: #ffffff;
  resize: none;
  font-size: 1rem;
}
.callback-form form button[type=submit] {
  background: #D1A054;
  color: #2C1B12;
  padding: 0.625rem;
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}
.callback-form__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: #D1A054;
  cursor: pointer;
}
.callback-form__close svg {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  color: #D1A054;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: clamp(10px, 2vw, 30px);
}
@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1430px;
  }
}

@layer reset, lazy, ratios;
@layer reset {
  img[src$=".svg"],
  picture img[src$=".svg"] {
    opacity: 1 !important;
    filter: none !important;
    transform: none;
  }
  img:not(.logo),
  picture img:not(.logo) {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    will-change: opacity, filter, transform;
    opacity: 0;
    filter: blur(20px);
    transform: scale(0.98);
    transition: opacity 0.5s ease, filter 0.5s ease, transform 0.4s ease;
  }
  img.logo {
    max-width: none !important;
    opacity: 1;
    filter: none;
    transform: none;
    object-fit: contain;
  }
}
@layer lazy {
  img.loading:not(.logo),
  picture img.loading:not(.logo) {
    opacity: 0.4;
    filter: blur(10px);
    transform: scale(0.99);
  }
  img.loaded:not(.logo),
  picture img.loaded:not(.logo) {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }
}
@layer ratios {
  .img-64x64:not(.logo) {
    aspect-ratio: 64/64;
  }
  .img-320x240:not(.logo) {
    aspect-ratio: 320/240;
  }
  .img-320x300:not(.logo) {
    aspect-ratio: 320/300;
  }
  .img-408x260:not(.logo) {
    aspect-ratio: 408/260;
  }
}
.observe {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.observe.visible {
  opacity: 1;
  transform: translateY(0);
}

img.lazy.loading {
  filter: blur(20px);
  transition: filter 0.3s ease;
}

img.lazy.loaded {
  filter: none;
}

body {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  background: #181818;
}

.theme-offer {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: rgba(20, 20, 20, 0.9);
  color: #fff;
  padding: 1.6rem 2rem 1.6rem 1.6rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 280px;
  font-family: "Inter", sans-serif;
  z-index: 9999;
  animation: fadeInUp 0.8s ease forwards;
  position: fixed;
}
.theme-offer p {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  line-height: 1.4;
}
.theme-offer__button {
  display: inline-block;
  background: #ffd700;
  color: #000;
  padding: 0.5rem 1.2rem;
  border-radius: 0.6rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.theme-offer__button:hover {
  background: #ffe76a;
  transform: translateY(-2px);
}
.theme-offer__close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.theme-offer__close:hover {
  opacity: 0.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Reset the default margin, padding, and box-sizing */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Set default font and line-height */
html {
  font-family: sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
  scroll-behavior: smooth; /* Smooth scrolling */
}

/* Remove default body margin and set height to 100% */
body {
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeSpeed; /* Speed up text rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Improve media elements default styles */
img,
picture,
video,
canvas {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
  background-color: transparent;
  border: none;
}

/* Remove built-in form element styles */
button,
input {
  overflow: visible;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/* Remove additional space for inputs on iOS */
textarea {
  overflow: auto;
}

/* Remove default list styles */
ul,
ol {
  list-style: none;
}

/* Make links consistent across browsers */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove animations for people who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Table border collapse */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Reset for iframe */
iframe {
  border: 0;
}

.scroll-top {
  position: fixed;
  bottom: 0.625rem;
  right: 0.625rem;
  width: 3rem;
  height: 3rem;
  background-color: #D1A054;
  color: #2C1B12;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, background 0.3s ease;
  z-index: 1000;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}
.scroll-top:hover {
  background-color: rgb(190.7004608295, 136.0552995392, 51.2995391705);
}

.header {
  position: relative;
  z-index: 1;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 5vw, 12.3125rem);
  padding: clamp(1rem, 4vw, 2rem);
}
@media (min-width: 1024px) {
  .header__container {
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .header__container {
    justify-content: space-between;
  }
}
.header__logo {
  width: clamp(7.5rem, 10vw, 11.875rem);
  z-index: 9999;
}
.header__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.header__burger {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  width: 1.5rem;
  height: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  display: block;
  height: 2px;
  width: 1.5rem;
  background: #ffffff;
  transition: 0.3s;
  margin-bottom: 0.3125rem;
}
.header__burger span:last-child {
  margin-bottom: 0;
}
.header__burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.header__nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  align-items: flex-start;
  justify-content: center;
  background: #1F1F1F;
  height: 100vh;
  width: 100%;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  padding: 0 1.25rem;
}
.header__nav.active {
  transform: translateX(0);
  display: flex;
}
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    height: auto;
    width: auto;
    transform: none;
    background: none;
    margin-right: 2.1875rem;
    padding: 0;
  }
}
.header__nav-list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding: 0.9375rem 1rem;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .header__nav-list {
    flex-direction: row;
    align-items: center;
  }
}
.header__nav-item {
  margin: 0;
  padding: 0;
  transform: translateY(0);
  transition: all 0.2s ease-in;
}
.header__nav-item:hover {
  transform: translateY(-5px);
}
.header__nav-link {
  font-size: clamp(0.875rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1.25rem;
  color: #ffffff;
  opacity: 0.8;
  transition: color 0.3s ease-in;
}
.header__nav-link:hover {
  color: #D1A054;
}
.header__actions {
  margin-left: clamp(1.25rem, 4vw, 2.1875rem);
  display: none;
}
@media (min-width: 1024px) {
  .header__actions {
    display: block;
  }
}
.header__button {
  width: 7.8125rem;
  height: 2.75rem;
  color: #ffffff;
  background: #D1A054;
  font-size: 1rem;
  line-height: 1.25rem;
  font-weight: 400;
  padding: 0.75rem 1.0625rem;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
  transform: translateY(0);
  transition: all 0.2s ease-in;
}
.header__button:hover {
  transform: translateY(-5px);
  color: #D1A054;
  background: #2A2A2A;
}

.hero {
  height: calc(var(--vh, 1vh) * 100);
  position: relative;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute;
  top: -118px;
  left: 0;
  width: 100%;
  height: calc(100% + 118px);
  z-index: -1;
  background: linear-gradient(to bottom, rgba(18, 18, 18, 0.8), rgba(44, 44, 44, 0.8)), url("../img/hero-bg.jpg") no-repeat center/cover;
}
.hero__wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(1.25rem, 5vw, 3.75rem);
  padding-top: clamp(9.375rem, 6vw, 6.5625rem);
  padding-bottom: 0;
}
@media (min-width: 375px) {
  .hero__wrapper {
    padding-left: clamp(0.3125rem, 5vw, 5.9375rem);
    padding-right: clamp(0.3125rem, 5vw, 5.9375rem);
  }
}
.hero__title {
  font-size: clamp(3.5rem, 6vw, 6.625rem);
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
}
.hero__title span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero__text {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 120%;
  color: #CCCCCC;
  max-width: clamp(18.75rem, 40vw, 37.5rem);
}
.hero__button {
  width: 14.0625rem;
  height: 2.75rem;
  padding: 0.75rem 1.25rem;
  color: #ffffff;
  opacity: 0.8;
  background: #D1A054;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.25rem;
  border-radius: 0.3125rem;
  transform: translateY(0);
  transition: transform 0.2s ease-in, background 0.2s ease-in, color 0.2s ease-in;
  transform: translateY(0);
  transition: all 0.2s ease-in;
  margin-top: 1.25rem;
}
.hero__button:hover {
  transform: translateY(-5px);
  color: #D1A054;
  background: #2A2A2A;
}
.hero__button:hover {
  transform: translateY(-5px);
}

.animateItem {
  will-change: transform, opacity;
}

.about {
  background: linear-gradient(to bottom, #6B4637 0%, #402B20 50%, #2C1B12 100%), #2C1B12;
}
.about__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  padding-top: clamp(2.5rem, 10vw, 6.25rem);
  padding-bottom: clamp(4rem, 15vw, 13.875rem);
  padding-left: 0;
  padding-right: 0;
}
.about__wrapper::after {
  content: "";
  width: 0.0625rem;
  height: 7.5rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #D1A054;
}
.about__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 120%;
  color: #D1A054;
  text-align: center;
  margin-top: 1.875rem;
}
@media (min-width: 768px) {
  .about__subtitle {
    margin-top: 0;
  }
}
.about__title {
  font-size: clamp(1.875rem, 6vw, 4.6875rem);
  line-height: 120%;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  color: #F1E7DA;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
.about__title:after {
  content: "";
  display: block;
  background: url("../img/icons/bow-fashion.svg") no-repeat center/contain;
  width: 4rem;
  height: 4rem;
}
.about__text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 150%;
  color: #ffffff;
  opacity: 0.8;
  text-align: center;
  width: 100%;
}
@media (min-width: 768px) {
  .about__text {
    max-width: 36.25rem;
  }
}
.about__list {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .about__list {
    flex-direction: row;
  }
}
.about__item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about__item-icon {
  width: clamp(3.5rem, 5vw, 4rem);
  height: clamp(3.5rem, 5vw, 4rem);
  object-fit: contain;
  display: block;
}
.about__item-title {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 150%;
  color: #ffffff;
  opacity: 0.8;
  max-width: 8.125rem;
  width: 100%;
}

.services {
  background: linear-gradient(to bottom, rgba(44, 27, 18, 0.8) 0%, rgba(64, 43, 32, 0.8) 50%, rgba(107, 70, 55, 0.8) 100%);
  padding-top: clamp(2.5rem, 8vw, 6.25rem);
  padding-bottom: clamp(3rem, 10vw, 9.375rem);
  padding-inline: 0;
}
.services__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.services__divider {
  display: block;
  width: 0.125rem;
  height: clamp(4.5rem, 8vw, 7.5rem);
  background: #D1A054;
  margin: 0 auto;
}
.services__title {
  font-size: clamp(1.875rem, 6vw, 4.6875rem);
  line-height: 120%;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  color: #F1E7DA;
  text-align: center;
}
.services__text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 120%;
  color: #D1A054;
  text-align: center;
  margin-bottom: 2.5rem;
}
.services__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 18.75rem;
  height: 18.75rem;
  border-radius: 1rem;
  position: relative;
  padding-top: clamp(2rem, 6vw, 3.5625rem);
  padding-bottom: clamp(2rem, 6vw, 3.5625rem);
  padding-left: clamp(1.5rem, 5vw, 2.875rem);
  padding-right: clamp(1.5rem, 5vw, 2.875rem);
  background: rgba(42, 42, 42, 0.5);
  overflow: hidden;
}
.services__card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 375px) {
  .services__card {
    width: 21.875rem;
  }
}
.services__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.2;
}
.services__card-icon {
  width: 2.375rem;
  height: 2.375rem;
  background: #CCCCCC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services__card-icon svg {
  width: 1.875rem;
  height: 1.875rem;
}
.services__card-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.25rem, 4vw, 2.125rem);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 700;
  line-height: 120%;
  color: #D1A054;
  margin-bottom: 2rem;
}
.services__card-text {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 150%;
  color: #CCCCCC;
}

.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 1.875rem !important;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #D1A054 !important;
}

.services__cards .owl-stage {
  margin-left: auto !important;
  margin-right: auto !important;
}

.gallery {
  padding: clamp(2.5rem, 5vw, 3.125rem) 0 clamp(5rem, 10vw, 9.375rem) 0;
  background: linear-gradient(to bottom, rgba(44, 27, 18, 0.8) 0%, rgba(35, 22, 16, 0.8) 50%, rgba(15, 8, 6, 0.8) 100%);
}
.gallery__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.gallery__divider {
  display: block;
  width: 0.125rem;
  height: clamp(4.5rem, 8vw, 7.5rem);
  background: #D1A054;
  margin: 0 auto;
}
.gallery__title {
  font-size: clamp(1.875rem, 6vw, 4.6875rem);
  line-height: 120%;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  color: #F1E7DA;
  text-align: center;
}
.gallery__text {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 120%;
  color: #D1A054;
  text-align: center;
  margin-bottom: 2.5rem;
}
.gallery__items {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.gallery__item {
  width: 18.75rem;
  flex-shrink: 0;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease-in;
  cursor: pointer;
}
.gallery__item:hover {
  transform: scale(1.05);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 375px) {
  .gallery__item {
    width: 21.875rem;
  }
}
@media (min-width: 1280px) {
  .gallery__item {
    width: 25.5rem;
  }
}

.reverse {
  direction: rtl;
}

.gallery__items.swiper-wrapper {
  display: flex;
}

.testimonials {
  padding: 3.125rem 0 6.25rem;
  background: linear-gradient(to bottom, #2C1B12 0%, #332017 50%, #523328 100%);
}
.testimonials__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.testimonials__divider {
  display: block;
  width: 0.125rem;
  height: clamp(4.5rem, 8vw, 7.5rem);
  background: #D1A054;
  margin: 0 auto;
}
.testimonials__title {
  font-size: clamp(1.875rem, 6vw, 4.6875rem);
  line-height: 120%;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  color: #F1E7DA;
  text-align: center;
}
.testimonials__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 120%;
  color: #D1A054;
  text-align: center;
  margin-bottom: 1.875rem;
}
.testimonials__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 18.75rem !important;
  height: 18.75rem !important;
  border-radius: 1rem;
  padding: clamp(0.9375rem, 4vw, 4.5rem) clamp(0.625rem, 4vw, 1.5rem);
  padding: 35px 20px;
  background: #1F1F1F;
  cursor: pointer;
  transform: translateY(0);
  transition: all 0.2s ease-in;
}
.testimonials__card:hover {
  transform: translateY(-5px);
}
@media (min-width: 375px) {
  .testimonials__card {
    width: 21.25rem !important;
  }
}
@media (min-width: 576px) {
  .testimonials__card {
    width: 21.875rem !important;
  }
}
.testimonials__text {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.125rem;
  margin-bottom: 1.25rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
  line-height: 150%;
  color: #CCCCCC;
}
.testimonials__text img {
  display: block;
  width: 1.875rem !important;
  height: 1.875rem !important;
  object-fit: contain;
}
.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.testimonials__img {
  width: 4rem;
  height: 4rem;
}
.testimonials__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials__name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 150%;
  color: #ffffff;
  opacity: 0.8;
}
.testimonials__role {
  font-size: 0.875rem;
  line-height: 140%;
  color: #AAA;
}

.testimonials__cards .owl-stage {
  margin-left: auto !important;
  margin-right: auto !important;
}

.team {
  padding-top: clamp(0.625rem, 5vw, 3.125rem);
  padding-bottom: clamp(1.875rem, 5vw, 9.375rem);
  background: linear-gradient(to bottom, rgba(44, 27, 18, 0.8) 0%, rgba(54, 35, 25, 0.8) 50%, rgba(107, 70, 55, 0.8) 100%), #1F1F1F;
}
.team__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.team__divider {
  display: block;
  width: 0.125rem;
  height: clamp(4.5rem, 8vw, 7.5rem);
  background: #D1A054;
  margin: 0 auto;
}
.team__title {
  font-size: clamp(1.875rem, 6vw, 4.6875rem);
  line-height: 120%;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  color: #F1E7DA;
  text-align: center;
}
.team__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 120%;
  color: #D1A054;
  text-align: center;
  margin-bottom: 1.875rem;
}
.team__cards {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 6rem);
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .team__cards {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .team__cards {
    justify-content: center;
    flex-wrap: nowrap;
  }
}
.team__card {
  max-width: 18.75rem;
  height: 23.75rem;
  background: rgba(42, 42, 42, 0.5);
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (min-width: 1280px) {
  .team__card {
    width: 20rem;
    height: 26.25rem;
  }
}
.team__card-photo {
  position: relative;
}
.team__card-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 42, 42, 0.5);
  z-index: 1;
  transition: background 0.3s ease-in;
}
.team__card-photo img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}
.team__card-photo:hover::before {
  background: transparent;
}
.team__card-info {
  margin: clamp(1rem, 4vw, 2.125rem) clamp(0.875rem, 4vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.625rem;
}
.team__card-name {
  font-size: clamp(0.875rem, 2vw, 1.125rem);
  font-weight: 700;
  line-height: 120%;
  color: #ffffff;
  opacity: 0.8;
}
.team__card-role {
  margin-bottom: 0.3125rem;
  font-size: 0.875rem;
  line-height: 120%;
  color: #D1A054;
}
.team__card-descr {
  font-size: 0.875rem;
  line-height: 150%;
  color: #CCCCCC;
}

.cta {
  padding-top: clamp(0.625rem, 5vw, 2.75rem);
  padding-bottom: clamp(2.5rem, 5vw, 5.875rem);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%), url("../img/cta-bg.jpg") no-repeat center/cover;
}
.cta__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.cta__divider {
  display: block;
  width: 0.125rem;
  height: clamp(4.5rem, 8vw, 7.5rem);
  background: #D1A054;
  margin: 0 auto;
}
.cta__title {
  font-size: clamp(1.875rem, 6vw, 4.6875rem);
  line-height: 120%;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  color: #F1E7DA;
  text-align: center;
}
.cta__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  line-height: 120%;
  color: #D1A054;
  text-align: center;
  margin-bottom: 1.25rem;
}
.cta__button {
  width: 14.0625rem;
  height: 2.75rem;
  padding: 0.75rem 1.25rem;
  color: #ffffff;
  opacity: 0.8;
  background: #D1A054;
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 400;
  line-height: 1.25rem;
  border-radius: 0.3125rem;
  transform: translateY(0);
  transition: transform 0.2s ease-in, background 0.2s ease-in, color 0.2s ease-in;
}
.cta__button:hover {
  transform: translateY(-5px);
  color: #D1A054;
  background: #2A2A2A;
}

.footer {
  padding: clamp(1.25rem, 5vw, 2.5rem) 0;
  background: linear-gradient(to right, #2C1B12 0%, #362319 50%, #6B4637 100%), #121212;
}
@media (min-width: 1024px) {
  .footer {
    padding: clamp(2.5rem, 5vw, 3.125rem) clamp(2.5rem, 6vw, 5rem) clamp(2rem, 4vw, 2.5rem) clamp(2.5rem, 6vw, 5rem);
  }
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: clamp(1.875rem, 5vw, 6.25rem);
  padding: clamp(0.9375rem, 2vw, 1.25rem) 0;
}
@media (min-width: 768px) {
  .footer__wrapper {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .footer__wrapper {
    justify-content: space-around;
  }
}
@media (min-width: 1280px) {
  .footer__wrapper {
    justify-content: center;
  }
}
.footer__info {
  width: 100%;
  padding: 0.9375rem 0;
}
@media (min-width: 768px) {
  .footer__info {
    flex: 1 1 30%;
  }
}
@media (min-width: 1280px) {
  .footer__info {
    max-width: 19.0625rem;
    flex: unset;
  }
}
.footer__logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1.5625rem;
}
@media (min-width: 1280px) {
  .footer__logo {
    width: 11.9375rem;
    height: 2.3125rem;
  }
}
.footer__text {
  font-size: 1rem;
  line-height: 150%;
  text-align: left;
  color: #CCCCCC;
}
.footer__links {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__links {
    flex: 1 1 30%;
  }
}
@media (min-width: 1280px) {
  .footer__links {
    padding: clamp(0.625rem, 4vw, 1.5rem);
    max-width: 8.1875rem;
    flex: unset;
  }
}
.footer__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.25rem;
}
.footer__item {
  transform: translateY(0);
  transition: all 0.2s ease-in;
}
.footer__item:hover {
  transform: translateY(-5px);
}
.footer__link {
  font-size: 1rem;
  line-height: 1.1875rem;
  color: #CCCCCC;
}
.footer__contact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.125rem 0;
}
@media (min-width: 768px) {
  .footer__contact {
    flex: 1 1 30%;
  }
}
@media (min-width: 1280px) {
  .footer__contact {
    max-width: 16.6875rem;
    flex: unset;
  }
}
.footer__title {
  font-size: 1.125rem;
  line-height: 1.375rem;
  font-weight: 700;
  color: #ffffff;
  font-style: normal;
}
.footer__contacts-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.625rem;
  transform: translateY(0);
  transition: all 0.2s ease-in;
}
.footer__contact-item:hover {
  transform: translateY(-5px);
}
.footer__contact-item img {
  width: 1.1875rem;
  height: 1.1875rem;
  object-fit: contain;
}
.footer__contact-item a {
  font-size: 1rem;
  line-height: 1.1875rem;
  color: #CCCCCC;
  font-style: normal;
}
.footer__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.9375rem 0;
  gap: 1.875rem;
}
@media (min-width: 768px) {
  .footer__aside {
    flex: 1 1 30%;
  }
}
@media (min-width: 1280px) {
  .footer__aside {
    flex: unset;
  }
}
.footer__hours {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.footer__hours img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}
.footer__hours p {
  font-size: 1rem;
  line-height: 1.1875rem;
  color: #CCCCCC;
  margin-bottom: 0.625rem;
}
.footer__hours p:last-child {
  margin-bottom: 0;
}
.footer__socials {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.25rem;
}
.footer__social {
  width: 2rem;
  height: 2rem;
  transform: translateY(0);
  transition: all 0.2s ease-in;
}
.footer__social:hover {
  transform: translateY(-5px);
}
.footer__social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.footer__copyright {
  display: block;
  margin: 3.8125rem auto 0;
  text-align: left;
}
.footer__copyright p {
  font-size: 0.875rem;
  line-height: 1.1875rem;
  color: #666666;
}
@media (min-width: 1280px) {
  .footer__copyright {
    text-align: center;
  }
}