* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
  scroll-behavior: auto;
  overflow-x: hidden;
}

html.lenis,
html.lenis-smooth {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.lenis.lenis-scrolling [data-lenis-prevent] {
  overscroll-behavior: contain;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #0E0E0E;
  color: #F2F1EE;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: #F2F1EE;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #A8934A;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

::selection {
  background-color: #A8934A;
  color: #0E0E0E;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0E0E0E;
}

::-webkit-scrollbar-thumb {
  background: #2A2A2A;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #A8934A;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", sans-serif;
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 1.35rem 2.65rem;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1), height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover:before {
  width: 300px;
  height: 300px;
}

.btn--primary {
  background-color: #3A1E24;
  color: #F2F1EE;
  border: 1px solid #3A1E24;
}

.btn--primary:hover {
  background-color: #29151a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(58, 30, 36, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background-color: transparent;
  color: #A8934A;
  border: 1px solid #A8934A;
}

.btn--secondary:hover {
  background-color: #A8934A;
  color: #0E0E0E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(168, 147, 74, 0.3);
}

.btn--secondary:active {
  transform: translateY(0);
}

.btn--full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.6s cubic-bezier(0.4, 0, 0.2, 1) ease-in-out, background 0.6s cubic-bezier(0.4, 0, 0.2, 1) ease-in-out, backdrop-filter 0.6s cubic-bezier(0.4, 0, 0.2, 1) ease-in-out, box-shadow 0.6s cubic-bezier(0.4, 0, 0.2, 1) ease-in-out, border-bottom 0.6s cubic-bezier(0.4, 0, 0.2, 1) ease-in-out, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) ease-in-out;
  transform: translateY(0);
  background-color: transparent;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
}

.header.scrolled, .header.scrolled.header {
  background: #0E0E0E !important;
  background-color: #0E0E0E !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(168, 147, 74, 0.2) !important;
  box-shadow: 0 4px 20px rgba(14, 14, 14, 0.5) !important;
  transform: translateY(0);
}

@media (max-width: 1023px) {
  .header.scrolled, .header.scrolled.header {
    background: #0E0E0E !important;
    background-color: #0E0E0E !important;
  }
}

@media (min-width: 1024px) {
  .header.scrolled, .header.scrolled.header {
    background: #0E0E0E !important;
    background-color: #0E0E0E !important;
  }
}

.header__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

@media (min-width: 768px) {
  .header__container {
    height: 85px;
  }
}

.header__logo a {
  display: flex;
  align-items: center;
}

.header__logo .logo__name {
  display: block;
  height: 25px;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .header__logo .logo__name {
    height: 30px;
  }
}

.header__logo .logo__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #BEBEBE;
  text-transform: lowercase;
}

@media (max-width: 1023px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #0E0E0E;
    padding: 5.3rem 2.65rem;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(14, 14, 14, 0.1);
    z-index: 1020;
    overflow-y: auto;
    pointer-events: auto;
  }
  .header__nav.active {
    right: 0;
  }
}

@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}

.header .nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  list-style: none;
}

@media (min-width: 1024px) {
  .header .nav__list {
    flex-direction: row;
    align-items: center;
    gap: 2.65rem;
  }
}

.header .nav__link {
  font-family: "Inter", sans-serif;
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #BEBEBE;
  position: relative;
  padding: 0.45rem 0;
}

.header .nav__link:not(.nav__link--button):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #A8934A;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header .nav__link:hover:not(.nav__link--button) {
  color: #F2F1EE;
}

.header .nav__link:hover:not(.nav__link--button):after {
  width: 100%;
}

.header .nav__link--button {
  background-color: #A8934A;
  color: #0E0E0E;
  padding: 0.45rem 1.35rem;
  border-radius: 2px;
  border: 1px solid #A8934A;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
}

.header .nav__link--button:hover {
  background-color: transparent;
  color: #A8934A;
  transform: translateY(-2px);
}

.header .nav__link--button:active {
  transform: translateY(0);
}

.header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 1025;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  position: relative;
}

@media (min-width: 1024px) {
  .header__toggle {
    display: none;
  }
}

.header__toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #F2F1EE;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.header__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__toggle:hover span {
  background-color: #A8934A;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to bottom, transparent 0%, rgba(14, 14, 14, 0.3) 30%, rgba(14, 14, 14, 0.7) 70%, #0E0E0E 100%);
  z-index: 3;
  pointer-events: none;
}

@media (min-width: 768px) {
  .hero::after {
    height: 300px;
  }
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%) brightness(0.6);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(14, 14, 14, 0.5) 0%, rgba(14, 14, 14, 0.7) 100%);
  z-index: 1;
}

.hero__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 120px 1.5rem 5.3rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__container {
    padding: 140px 1.5rem 7rem;
  }
}

.hero__content {
  max-width: 900px;
}

.hero__divider {
  width: 60px;
  height: 1px;
  background-color: #A8934A;
  margin-bottom: 1.8rem;
  animation: expandWidth 1s ease-out;
}

.hero__title {
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2F1EE;
  margin-bottom: 1.8rem;
}

@media (min-width: 768px) {
  .hero__title {
    font-size: 2.65rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 3.3rem;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}

.hero__description {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-size: 1rem;
  color: #BEBEBE;
  margin-bottom: 3.5rem;
  max-width: 700px;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .hero__description {
    font-size: 1.1rem;
  }
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 5.3rem;
}

@media (min-width: 640px) {
  .hero__cta {
    flex-direction: row;
  }
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2.65rem;
  padding-top: 2.65rem;
  border-top: 1px solid rgba(168, 147, 74, 0.2);
  max-width: 600px;
}

@media (min-width: 768px) {
  .hero__stats {
    gap: 3.5rem;
    padding-top: 3.5rem;
    margin-top: 3.5rem;
  }
}

.hero .stat {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.hero .stat:hover {
  transform: translateY(-2px);
}

.hero .stat:hover .stat__number {
  color: #F2F1EE;
  transform: scale(1.1);
}

.hero .stat:hover .stat__label {
  color: #F2F1EE;
}

.hero .stat__number {
  font-family: "Libre Baskerville", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #A8934A;
  line-height: 1;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .hero .stat__number {
    font-size: 2.65rem;
  }
}

.hero .stat__label {
  font-family: "Inter", sans-serif;
  font-size: 0.775rem;
  font-weight: 500;
  color: #BEBEBE;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .stat__divider {
  width: 1px;
  height: 60px;
  background-color: rgba(168, 147, 74, 0.3);
}

@keyframes expandWidth {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.section__label {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-bottom: 1.8rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.section__label:hover .label__line {
  width: 80px;
  background-color: #A8934A;
}

.section__label:hover .label__text {
  color: #F2F1EE;
}

.section__label .label__line {
  width: 60px;
  height: 1px;
  background-color: #A8934A;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section__label .label__text {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #BEBEBE;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.section__title {
  font-family: "Libre Baskerville", serif;
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #F2F1EE;
  margin-bottom: 2.65rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .section__title {
    font-size: 2rem;
  }
}

.section__title:hover {
  color: #A8934A;
}

.section__header {
  margin-bottom: 5.3rem;
  max-width: 800px;
}

.about {
  padding: 7rem 0;
}

.about__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.3rem;
}

@media (min-width: 1024px) {
  .about__container {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.about__text p {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #BEBEBE;
}

.about__text p strong {
  color: #F2F1EE;
  font-weight: 600;
}

.about__credentials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.8rem;
  margin-top: 3.5rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(168, 147, 74, 0.2);
}

.about .credential {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.about .credential:hover {
  transform: translateX(4px);
}

.about .credential:hover .credential__value {
  color: #F2F1EE;
}

.about .credential__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #BEBEBE;
}

.about .credential__value {
  font-family: "Libre Baskerville", serif;
  font-size: 1rem;
  font-weight: 700;
  color: #A8934A;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__image .image__frame {
  position: relative;
  aspect-ratio: 3/4;
  background-color: #2A2A2A;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.about__image .image__frame:hover {
  transform: translateY(-8px);
}

.about__image .image__frame:hover:before {
  border-color: #A8934A;
}

.about__image .image__frame:hover .image__photo {
  filter: grayscale(0%) brightness(1);
}

.about__image .image__frame:before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 1px solid #A8934A;
  z-index: -1;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about__image .image__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: grayscale(20%) brightness(0.9);
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.practice {
  padding: 7rem 0;
  background-color: #2A2A2A;
}

.practice__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.practice__swiper {
  background-color: transparent;
  overflow: hidden;
}

@media (min-width: 768px) {
  .practice__swiper {
    display: none;
  }
}

.practice__swiper .swiper-wrapper {
  background-color: transparent;
  padding-bottom: 0;
  margin: 0;
}

.practice__swiper .swiper-slide {
  height: auto;
  overflow: hidden;
  border: none;
  margin: 0;
  padding: 0;
}

.practice__swiper .swiper-slide::before, .practice__swiper .swiper-slide::after {
  display: none;
}

.practice__grid {
  display: none;
}

@media (min-width: 768px) {
  .practice__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: rgba(168, 147, 74, 0.1);
  }
}

@media (min-width: 1024px) {
  .practice__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.practice__pagination {
  position: relative;
  margin-top: 2.65rem;
  text-align: center;
}

.practice__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #BEBEBE;
  opacity: 0.5;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.practice__pagination .swiper-pagination-bullet-active {
  background-color: #A8934A;
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.practice__card {
  background-color: #0E0E0E;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  margin: 0;
}

.practice__card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #A8934A;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.practice__card:after {
  display: none;
}

.practice__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(168, 147, 74, 0.2);
}

.practice__card:hover:before {
  width: 100%;
}

.practice__card:hover .card__number {
  color: #A8934A;
}

.practice__card:hover .card__image {
  transform: scale(1.05);
}

.practice__card:hover .card__img {
  opacity: 0.8;
}

.practice .card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .practice .card__image {
    height: 240px;
  }
}

.practice .card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.6;
  filter: grayscale(40%) brightness(0.7);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.practice .card__number {
  font-family: "Libre Baskerville", serif;
  font-size: 0.775rem;
  font-weight: 700;
  color: #BEBEBE;
  margin: 1.35rem 2.65rem 0;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.practice .card__title {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #A8934A;
  margin: 1.35rem 2.65rem;
  line-height: 1.4;
}

.practice .card__description {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #BEBEBE;
  font-size: 0.775rem;
  margin: 0 2.65rem 2.65rem;
  flex-grow: 1;
}

.differential {
  padding: 7rem 0;
  background-color: #0E0E0E;
}

.differential__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.differential__content {
  margin-bottom: 7rem;
  max-width: 700px;
  text-align: left;
}

.differential__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.3rem;
}

@media (min-width: 768px) {
  .differential__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7rem;
  }
}

@media (min-width: 1024px) {
  .differential__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5.3rem;
  }
}

.differential__item {
  display: flex;
  flex-direction: column;
  text-align: left;
  padding: 2.65rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.differential__item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.differential__item:hover .item__title {
  color: #F2F1EE;
}

.differential__item:hover .item__title:before {
  height: 40px;
  background-color: #A8934A;
}

.differential__item:hover .item__description {
  color: #F2F1EE;
}

.differential__divider {
  display: none;
}

.differential .item__title {
  font-family: "Libre Baskerville", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #A8934A;
  margin-bottom: 1.35rem;
  text-align: left;
  position: relative;
  padding-left: 1.35rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.differential .item__title:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 30px;
  background-color: #A8934A;
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.differential .item__description {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #BEBEBE;
  font-size: 0.9rem;
  text-align: left;
  line-height: 1.7;
  padding-left: 1.35rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact {
  padding: 7rem 0;
  background-color: #0E0E0E;
}

.contact__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.3rem;
}

@media (min-width: 1024px) {
  .contact__container {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact__description {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: #BEBEBE;
  margin-bottom: 3.5rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 2.65rem;
}

.contact .detail {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.contact .detail:hover .detail__value {
  color: #A8934A;
}

.contact .detail__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #BEBEBE;
}

.contact .detail__value {
  font-size: 1rem;
  color: #F2F1EE;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .detail__value a {
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact .detail__value a:hover {
  color: #A8934A;
}

.form {
  background-color: #0E0E0E;
  padding: 3.5rem;
  border: 1px solid rgba(168, 147, 74, 0.2);
}

@media (min-width: 768px) {
  .form {
    padding: 5.3rem;
  }
}

.form__group {
  margin-bottom: 1.8rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

@media (min-width: 640px) {
  .form__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form__label {
  display: block;
  font-size: 0.775rem;
  font-weight: 500;
  color: #F2F1EE;
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}

.form__input, .form__textarea {
  width: 100%;
  padding: 1.35rem;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #F2F1EE;
  background-color: #2A2A2A;
  border: 1px solid rgba(168, 147, 74, 0.2);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form__input:focus, .form__textarea:focus {
  outline: none;
  border-color: #A8934A;
  box-shadow: 0 0 0 3px rgba(168, 147, 74, 0.2);
}

.form__input::placeholder, .form__textarea::placeholder {
  color: #BEBEBE;
}

.form__textarea {
  resize: vertical;
  min-height: 150px;
}

.form__message {
  margin-top: 1.35rem;
  padding: 1.35rem;
  border-radius: 2px;
  font-size: 0.775rem;
  text-align: center;
  display: none;
}

.form__message.success {
  display: block;
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form__message.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.footer {
  background-color: #0E0E0E;
  color: #F2F1EE;
  padding: 5.3rem 0 2.65rem;
}

.footer__container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.3rem;
  margin-bottom: 5.3rem;
}

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 1.5fr 2fr;
  }
}

.footer__brand {
  max-width: 400px;
}

.footer__logo {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}

.footer__logo .logo__name {
  display: block;
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-top: 0px;
}

@media (min-width: 768px) {
  .footer__logo .logo__name {
    height: 50px;
    margin-top: 0px;
  }
}

.footer__tagline {
  font-family: "Libre Baskerville", serif;
  font-size: 0.775rem;
  color: #BEBEBE;
  font-style: italic;
}

.footer__links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.65rem;
}

@media (min-width: 640px) {
  .footer__links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.footer__title {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #F2F1EE;
  margin-bottom: 0.45rem;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer__list a {
  font-size: 0.775rem;
  color: #BEBEBE;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer__list a:hover {
  color: #F2F1EE;
}

.footer__address {
  font-size: 0.775rem;
  color: #BEBEBE;
  font-style: normal;
  line-height: 1.7;
}

.footer__divider {
  height: 1px;
  background-color: rgba(168, 147, 74, 0.2);
  margin: 3.5rem 0;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

@media (min-width: 768px) {
  .footer__bottom {
    gap: 1.8rem;
  }
}

.footer__disclaimer, .footer__copyright, .footer__credits {
  font-size: 0.65rem;
  color: #BEBEBE;
  line-height: 1.7;
}

.footer__credits a {
  color: #F2F1EE;
  font-weight: 500;
}

.footer__credits a:hover {
  color: #A8934A;
}

.whatsapp {
  position: fixed;
  bottom: 2.65rem;
  right: 2.65rem;
  z-index: 999;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1023px) {
  .header__nav.active ~ .whatsapp, body.menu-open .whatsapp {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

.whatsapp__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp__button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp__button:active {
  transform: scale(0.95);
}

.whatsapp__button svg {
  width: 28px;
  height: 28px;
}

.whatsapp__button:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #25D366;
  opacity: 0.3;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.portfolio-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-modal.active {
  opacity: 1;
  visibility: visible;
}

.portfolio-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(14, 14, 14, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.portfolio-modal__content {
  position: relative;
  z-index: 1;
  background-color: #0E0E0E;
  border: 1px solid rgba(168, 147, 74, 0.3);
  border-radius: 4px;
  max-width: 600px;
  width: 90%;
  padding: 5.3rem;
  box-shadow: 0 20px 60px rgba(14, 14, 14, 0.8);
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-modal.active .portfolio-modal__content {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .portfolio-modal__content {
    padding: 7rem;
  }
}

.portfolio-modal__body {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  text-align: center;
}

.portfolio-modal__message {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  font-size: 0.9rem;
  color: #F2F1EE;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .portfolio-modal__message {
    font-size: 1rem;
  }
}

.portfolio-modal__button {
  align-self: center;
  min-width: 200px;
}

.container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.overlay {
  display: none;
}
