@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 991px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: #0a0a0a;
  background-color: #ffffff;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 991px) {
  body {
    cursor: auto;
  }
}
body.menu-open {
  overflow: hidden;
}
body.loading {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: none;
}
@media (max-width: 991px) {
  a {
    cursor: pointer;
  }
}

button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: none;
}
@media (max-width: 991px) {
  button {
    cursor: pointer;
  }
}

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

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
}

em {
  font-style: italic;
  color: #c8a97e;
}

::selection {
  background-color: #0a0a0a;
  color: #ffffff;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
  background: #333333;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0a0a0a;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .container {
    padding: 0 1.5rem;
  }
}

.section {
  padding: 10rem 0;
}
@media (max-width: 991px) {
  .section {
    padding: 8rem 0;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 6rem 0;
  }
}
.section--dark {
  background-color: #0a0a0a;
  color: #ffffff;
}
.section--dark .section__label {
  color: #c8a97e;
}
.section--dark .section__label::before {
  background-color: #c8a97e;
}
.section--dark .section__title {
  color: #ffffff;
}

.section__header {
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .section__header {
    margin-bottom: 4rem;
  }
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #707070;
  margin-bottom: 1rem;
}
.section__label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #707070;
}

.section__title {
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  .section__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .section__title {
    font-size: 2rem;
  }
}

.section__footer {
  text-align: center;
  margin-top: 6rem;
}
@media (max-width: 767px) {
  .section__footer {
    margin-top: 4rem;
  }
}

.main {
  min-height: 100vh;
}

.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid #0a0a0a;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), height 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.cursor__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background-color: #0a0a0a;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.cursor.hover {
  width: 60px;
  height: 60px;
  border-color: #c8a97e;
  background-color: rgba(200, 169, 126, 0.1);
}
.cursor.hover .cursor__inner {
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
}
.cursor.dark {
  border-color: #ffffff;
}
.cursor.dark .cursor__inner {
  background-color: #ffffff;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.loader.loaded {
  transform: translateY(-100%);
}
.loader__inner {
  text-align: center;
}
.loader__line {
  width: 60px;
  height: 2px;
  background-color: #1a1a1a;
  margin: 0 auto 1.5rem;
  position: relative;
  overflow: hidden;
}
.loader__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: loaderLine 1.5s ease-in-out infinite;
}
.loader__text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

@keyframes loaderLine {
  0% {
    left: -100%;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn__text {
  position: relative;
  z-index: 1;
}
.btn__icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover .btn__icon {
  transform: translateX(4px);
}
.btn--primary {
  background-color: #0a0a0a;
  color: #ffffff;
  border: 2px solid #0a0a0a;
}
.btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c8a97e;
  transform: translateX(-101%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn--primary:hover {
  border-color: #c8a97e;
}
.btn--primary:hover::before {
  transform: translateX(0);
}
.section--dark .btn--primary {
  background-color: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}
.section--dark .btn--primary:hover {
  border-color: #c8a97e;
  color: #ffffff;
}
.btn--outline {
  background-color: transparent;
  color: #0a0a0a;
  border: 2px solid #0a0a0a;
}
.btn--outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  transform: translateX(-101%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn--outline:hover {
  color: #ffffff;
}
.btn--outline:hover::before {
  transform: translateX(0);
}
.section--dark .btn--outline {
  color: #ffffff;
  border-color: #ffffff;
}
.section--dark .btn--outline::before {
  background-color: #ffffff;
}
.section--dark .btn--outline:hover {
  color: #0a0a0a;
}
.btn--large {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-arrow:hover {
  gap: 1rem;
  color: #c8a97e;
}
.link-arrow i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.link-arrow:hover i {
  transform: translateX(4px);
}

.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .page-hero {
    height: 40vh;
    min-height: 300px;
  }
}
.page-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transform: scale(1.1);
  transition: transform 8s ease;
}
.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.7) 100%);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 0 2rem;
}
.page-hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c8a97e;
  margin-bottom: 1rem;
}
.page-hero__label::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #c8a97e;
}
.page-hero__title {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .page-hero__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .page-hero__title {
    font-size: 2.5rem;
  }
}
.page-hero__description {
  font-size: 1.125rem;
  color: #d1d1d1;
  max-width: 500px;
  margin: 0 auto;
}

.blog-card__link {
  display: block;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.section--dark .blog-card__link {
  background: #111111;
}
.blog-card__link:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}
.blog-card__link:hover .blog-card__image {
  transform: scale(1.05);
}
.blog-card__link:hover .blog-card__read-more i {
  transform: translateX(4px);
}
.blog-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 16/10;
}
.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card__link:hover .blog-card__image {
  filter: grayscale(0%);
}
.blog-card__content {
  padding: 2rem;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.blog-card__category {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8a97e;
  font-weight: 500;
}
.blog-card__date {
  font-size: 0.75rem;
  color: #a0a0a0;
}
.blog-card__title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .blog-card__title {
    font-size: 1.25rem;
  }
}
.blog-card__excerpt {
  font-size: 0.875rem;
  color: #707070;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.section--dark .blog-card__excerpt {
  color: #a0a0a0;
}
.blog-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0a0a0a;
}
.section--dark .blog-card__read-more {
  color: #ffffff;
}
.blog-card__read-more i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 6rem;
}
.pagination__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #707070;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination__btn:hover:not(:disabled) {
  color: #0a0a0a;
}
.pagination__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.pagination__numbers {
  display: flex;
  gap: 0.5rem;
}
.pagination__number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #707070;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination__number.active, .pagination__number:hover {
  background-color: #0a0a0a;
  color: #ffffff;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 300;
  padding: 1.5rem 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.scrolled {
  padding: 0.5rem 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(10, 10, 10, 0.05);
}
.header.scrolled .header__logo-text {
  color: #0a0a0a;
}
.header.scrolled .header__nav-link {
  color: #333333;
}
.header.scrolled .header__nav-link:hover, .header.scrolled .header__nav-link.active {
  color: #0a0a0a;
}
.header.scrolled .header__burger-line {
  background-color: #0a0a0a;
}
.header.scrolled .header__theme-toggle {
  color: #0a0a0a;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
.header__logo {
  position: relative;
  z-index: 301;
}
.header__logo-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__logo-ampersand {
  color: #c8a97e;
  font-style: italic;
}
@media (max-width: 991px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  gap: 3rem;
}
.header__nav-link {
  position: relative;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  padding: 0.5rem 0;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #c8a97e;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.header__nav-link:hover, .header__nav-link.active {
  color: #ffffff;
}
.header__nav-link:hover::after, .header__nav-link.active::after {
  width: 100%;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  z-index: 301;
}
.header__theme-toggle {
  font-size: 1.25rem;
  color: #ffffff;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header__theme-toggle:hover {
  transform: rotate(15deg);
  color: #c8a97e;
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  padding: 4px 0;
  z-index: 301;
}
@media (max-width: 991px) {
  .header__burger {
    display: flex;
  }
}
.header__burger-line {
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.menu-open .header__burger-line {
  background-color: #ffffff;
}
.menu-open .header__burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-open .header__burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-open .header__burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  z-index: 400;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-open .mobile-menu {
  opacity: 1;
  visibility: visible;
}
.mobile-menu__inner {
  width: 100%;
  padding: 10rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 4rem;
}
.mobile-menu__link {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  color: #ffffff;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--i) * 0.08s);
}
.menu-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .mobile-menu__link {
    font-size: 2.5rem;
  }
}
.mobile-menu__link:hover {
  color: #c8a97e;
}
.mobile-menu__link.active {
  color: #c8a97e;
}
.mobile-menu__link-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  color: #505050;
  font-weight: 300;
}
.mobile-menu__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .mobile-menu__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.mobile-menu__social {
  display: flex;
  gap: 2rem;
}
.mobile-menu__social-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  color: #a0a0a0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu__social-link:hover {
  color: #ffffff;
}
.mobile-menu__email {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  color: #a0a0a0;
  letter-spacing: 0.05em;
}

.footer {
  background-color: #111111;
  color: #d1d1d1;
  padding-top: 0;
}
.footer__inner {
  padding-top: 8rem;
}
.footer__top {
  padding-bottom: 8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__cta {
  text-align: center;
}
.footer__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.footer__title em {
  font-style: italic;
  color: #c8a97e;
}
@media (max-width: 991px) {
  .footer__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .footer__title {
    font-size: 2rem;
  }
}
.footer__middle {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 6rem;
  padding: 6rem 0;
}
@media (max-width: 991px) {
  .footer__middle {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
@media (max-width: 767px) {
  .footer__middle {
    grid-template-columns: 1fr;
  }
}
.footer__logo-text {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.footer__logo-text span {
  color: #c8a97e;
}
.footer__description {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #707070;
  max-width: 300px;
}
.footer__col-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 2rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: #707070;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__links a:hover {
  color: #ffffff;
  padding-left: 0.5rem;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.875rem;
  color: #707070;
}
.footer__contact li i {
  color: #c8a97e;
  font-size: 1.125rem;
  margin-top: 2px;
}
.footer__contact li a {
  color: #707070;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__contact li a:hover {
  color: #ffffff;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 767px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
.footer__copyright {
  font-size: 0.75rem;
  color: #505050;
}
.footer__social {
  display: flex;
  gap: 1.5rem;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0a0a0;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__social-link:hover {
  border-color: #c8a97e;
  color: #c8a97e;
  transform: translateY(-2px);
}
.footer__back-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #707070;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__back-top:hover {
  color: #ffffff;
}
.footer__back-top:hover i {
  transform: translateY(-2px);
}
.footer__back-top i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-text.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.img-reveal {
  position: relative;
  overflow: hidden;
}
.img-reveal::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0a0a0a;
  z-index: 1;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.img-reveal.revealed::before {
  transform: scaleX(0);
  transform-origin: left;
}

.parallax {
  will-change: transform;
}

.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.revealed > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.revealed > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger-children.revealed > *:nth-child(2) {
  transition-delay: 0.1s;
}
.stagger-children.revealed > *:nth-child(3) {
  transition-delay: 0.15s;
}
.stagger-children.revealed > *:nth-child(4) {
  transition-delay: 0.2s;
}
.stagger-children.revealed > *:nth-child(5) {
  transition-delay: 0.25s;
}
.stagger-children.revealed > *:nth-child(6) {
  transition-delay: 0.3s;
}
.stagger-children.revealed > *:nth-child(7) {
  transition-delay: 0.35s;
}
.stagger-children.revealed > *:nth-child(8) {
  transition-delay: 0.4s;
}
.stagger-children.revealed > *:nth-child(9) {
  transition-delay: 0.45s;
}
.stagger-children.revealed > *:nth-child(10) {
  transition-delay: 0.5s;
}
.stagger-children.revealed > *:nth-child(11) {
  transition-delay: 0.55s;
}
.stagger-children.revealed > *:nth-child(12) {
  transition-delay: 0.6s;
}

img {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img.loaded, img[src] {
  opacity: 1;
}

.magnetic {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.split-text .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.split-text.revealed .char {
  opacity: 1;
  transform: translateY(0);
}
.split-text.revealed .char:nth-child(1) {
  transition-delay: 0.02s;
}
.split-text.revealed .char:nth-child(2) {
  transition-delay: 0.04s;
}
.split-text.revealed .char:nth-child(3) {
  transition-delay: 0.06s;
}
.split-text.revealed .char:nth-child(4) {
  transition-delay: 0.08s;
}
.split-text.revealed .char:nth-child(5) {
  transition-delay: 0.1s;
}
.split-text.revealed .char:nth-child(6) {
  transition-delay: 0.12s;
}
.split-text.revealed .char:nth-child(7) {
  transition-delay: 0.14s;
}
.split-text.revealed .char:nth-child(8) {
  transition-delay: 0.16s;
}
.split-text.revealed .char:nth-child(9) {
  transition-delay: 0.18s;
}
.split-text.revealed .char:nth-child(10) {
  transition-delay: 0.2s;
}
.split-text.revealed .char:nth-child(11) {
  transition-delay: 0.22s;
}
.split-text.revealed .char:nth-child(12) {
  transition-delay: 0.24s;
}
.split-text.revealed .char:nth-child(13) {
  transition-delay: 0.26s;
}
.split-text.revealed .char:nth-child(14) {
  transition-delay: 0.28s;
}
.split-text.revealed .char:nth-child(15) {
  transition-delay: 0.3s;
}
.split-text.revealed .char:nth-child(16) {
  transition-delay: 0.32s;
}
.split-text.revealed .char:nth-child(17) {
  transition-delay: 0.34s;
}
.split-text.revealed .char:nth-child(18) {
  transition-delay: 0.36s;
}
.split-text.revealed .char:nth-child(19) {
  transition-delay: 0.38s;
}
.split-text.revealed .char:nth-child(20) {
  transition-delay: 0.4s;
}
.split-text.revealed .char:nth-child(21) {
  transition-delay: 0.42s;
}
.split-text.revealed .char:nth-child(22) {
  transition-delay: 0.44s;
}
.split-text.revealed .char:nth-child(23) {
  transition-delay: 0.46s;
}
.split-text.revealed .char:nth-child(24) {
  transition-delay: 0.48s;
}
.split-text.revealed .char:nth-child(25) {
  transition-delay: 0.5s;
}
.split-text.revealed .char:nth-child(26) {
  transition-delay: 0.52s;
}
.split-text.revealed .char:nth-child(27) {
  transition-delay: 0.54s;
}
.split-text.revealed .char:nth-child(28) {
  transition-delay: 0.56s;
}
.split-text.revealed .char:nth-child(29) {
  transition-delay: 0.58s;
}
.split-text.revealed .char:nth-child(30) {
  transition-delay: 0.6s;
}
.split-text.revealed .char:nth-child(31) {
  transition-delay: 0.62s;
}
.split-text.revealed .char:nth-child(32) {
  transition-delay: 0.64s;
}
.split-text.revealed .char:nth-child(33) {
  transition-delay: 0.66s;
}
.split-text.revealed .char:nth-child(34) {
  transition-delay: 0.68s;
}
.split-text.revealed .char:nth-child(35) {
  transition-delay: 0.7s;
}
.split-text.revealed .char:nth-child(36) {
  transition-delay: 0.72s;
}
.split-text.revealed .char:nth-child(37) {
  transition-delay: 0.74s;
}
.split-text.revealed .char:nth-child(38) {
  transition-delay: 0.76s;
}
.split-text.revealed .char:nth-child(39) {
  transition-delay: 0.78s;
}
.split-text.revealed .char:nth-child(40) {
  transition-delay: 0.8s;
}
.split-text.revealed .char:nth-child(41) {
  transition-delay: 0.82s;
}
.split-text.revealed .char:nth-child(42) {
  transition-delay: 0.84s;
}
.split-text.revealed .char:nth-child(43) {
  transition-delay: 0.86s;
}
.split-text.revealed .char:nth-child(44) {
  transition-delay: 0.88s;
}
.split-text.revealed .char:nth-child(45) {
  transition-delay: 0.9s;
}
.split-text.revealed .char:nth-child(46) {
  transition-delay: 0.92s;
}
.split-text.revealed .char:nth-child(47) {
  transition-delay: 0.94s;
}
.split-text.revealed .char:nth-child(48) {
  transition-delay: 0.96s;
}
.split-text.revealed .char:nth-child(49) {
  transition-delay: 0.98s;
}
.split-text.revealed .char:nth-child(50) {
  transition-delay: 1s;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 1.5s ease, transform 8s ease;
}
.hero__slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.6) 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 2rem;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .hero__content {
    padding: 0 1.5rem;
  }
}
.hero__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c8a97e;
  margin-bottom: 2rem;
}
.hero__line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: #c8a97e;
}
.hero__title {
  margin-bottom: 2rem;
}
.hero__title-line {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 6rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero__title-line em {
  font-style: italic;
}
@media (max-width: 1199px) {
  .hero__title-line {
    font-size: 4.5rem;
  }
}
@media (max-width: 991px) {
  .hero__title-line {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .hero__title-line {
    font-size: 2.5rem;
  }
}
.hero__description {
  font-size: 1.125rem;
  color: #d1d1d1;
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .hero__description {
    font-size: 1rem;
  }
}
.hero__actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero__scroll {
    display: none;
  }
}
.hero__scroll-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a0a0a0;
}
.hero__scroll-line {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: scrollLine 2s ease-in-out infinite;
}
.hero__counter {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  display: flex;
  align-items: baseline;
  gap: 4px;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
}
@media (max-width: 767px) {
  .hero__counter {
    display: none;
  }
}
.hero__counter-current {
  font-size: 2rem;
  font-weight: 700;
}
.hero__counter-separator {
  font-size: 0.875rem;
  color: #707070;
  margin: 0 4px;
}
.hero__counter-total {
  font-size: 0.875rem;
  color: #707070;
}

@keyframes scrollLine {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
.intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
@media (max-width: 991px) {
  .intro__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.intro__text {
  font-size: 1.125rem;
  color: #505050;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.intro__stats {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.intro__stat {
  text-align: center;
}
.intro__stat-number {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.intro__stat-number::after {
  content: "+";
  font-size: 0.6em;
  color: #c8a97e;
}
.intro__stat-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #707070;
}

.featured__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .featured__grid {
    grid-template-columns: 1fr;
  }
}
.featured__item:nth-child(1) {
  grid-row: span 2;
}
.featured__item:nth-child(1) .featured__image-wrap {
  aspect-ratio: auto;
  height: 100%;
}
.featured__link {
  display: block;
  position: relative;
  overflow: hidden;
}
.featured__link:hover .featured__image {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.featured__link:hover .featured__overlay {
  opacity: 1;
}
.featured__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.featured__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.featured__view {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}
.featured__info {
  padding: 1.5rem 0;
}
.featured__category {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8a97e;
  margin-bottom: 0.5rem;
}
.featured__title {
  font-size: 1.5rem;
  color: #ffffff;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1199px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .services__grid {
    grid-template-columns: 1fr;
  }
}
.services__item {
  position: relative;
  padding: 4rem 2rem;
  border: 1px solid #e8e8e8;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.services__item:hover {
  border-color: #0a0a0a;
  transform: translateY(-4px);
}
.services__item:hover .services__icon {
  color: #c8a97e;
  transform: scale(1.1);
}
.services__item:hover .services__number {
  color: rgba(10, 10, 10, 0.05);
}
.services__icon {
  font-size: 2.5rem;
  color: #0a0a0a;
  margin-bottom: 2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.services__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.services__text {
  font-size: 0.875rem;
  color: #707070;
  line-height: 1.8;
}
.services__number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(10, 10, 10, 0.03);
  line-height: 1;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee {
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}
.marquee__inner {
  display: flex;
  width: max-content;
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.marquee__item {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #d1d1d1;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .marquee__item {
    font-size: 2rem;
  }
}
.marquee__separator {
  font-size: 0.875rem;
  color: #c8a97e;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.testimonials__slider {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonials__track {
  position: relative;
  min-height: 200px;
}
.testimonials__item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.testimonials__item.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}
.testimonials__quote {
  margin-bottom: 2rem;
}
.testimonials__quote::before {
  content: '"';
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 6rem;
  color: #c8a97e;
  line-height: 0.5;
  margin-bottom: 1.5rem;
}
.testimonials__quote p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #d1d1d1;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .testimonials__quote p {
    font-size: 1.25rem;
  }
}
.testimonials__name {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}
.testimonials__role {
  font-size: 0.875rem;
  color: #707070;
}
.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 4rem;
}
.testimonials__btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials__btn:hover {
  border-color: #c8a97e;
  color: #c8a97e;
}
.testimonials__dots {
  display: flex;
  gap: 0.5rem;
}
.testimonials__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonials__dot.active {
  width: 24px;
  border-radius: 4px;
  background-color: #c8a97e;
}

.latest-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .latest-blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .latest-blog__grid {
    grid-template-columns: 1fr;
  }
}

.portfolio__filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .portfolio__filters {
    margin-bottom: 4rem;
  }
}
.portfolio__filter {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a0a0a0;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio__filter:hover {
  color: #0a0a0a;
}
.portfolio__filter.active {
  color: #0a0a0a;
  border-color: #0a0a0a;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 991px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
}
.portfolio__item {
  overflow: hidden;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio__item.hidden {
  opacity: 0;
  transform: scale(0.8);
  position: absolute;
  visibility: hidden;
}
.portfolio__link {
  display: block;
  position: relative;
}
.portfolio__link:hover .portfolio__image {
  transform: scale(1.08);
  filter: grayscale(0%);
}
.portfolio__link:hover .portfolio__item-overlay {
  opacity: 1;
}
.portfolio__link:hover .portfolio__item-info {
  transform: translateY(0);
}
.portfolio__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.portfolio__image-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio__link:hover .portfolio__image-wrap::after {
  opacity: 1;
}
.portfolio__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio__item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
}
.portfolio__item-info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.portfolio__item-category {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #c8a97e;
  display: block;
  margin-bottom: 4px;
}
.portfolio__item-title {
  font-size: 1.25rem;
  color: #ffffff;
}
.portfolio__item-view {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.portfolio__item-view:hover {
  background-color: #ffffff;
  color: #0a0a0a;
}

.cta__inner {
  text-align: center;
  padding: 6rem 0;
}
.cta__title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 991px) {
  .cta__title {
    font-size: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cta__title {
    font-size: 2rem;
  }
}
.cta__text {
  font-size: 1.125rem;
  color: #a0a0a0;
  margin-bottom: 3rem;
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
  align-items: start;
}
@media (max-width: 991px) {
  .about-intro__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.about-intro__image {
  position: relative;
}
.about-intro__image-wrap {
  overflow: hidden;
  position: relative;
}
.about-intro__image-wrap img {
  width: 100%;
  filter: grayscale(100%);
  transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-intro__image-wrap img:hover {
  filter: grayscale(0%);
}
.about-intro__exp {
  position: absolute;
  bottom: 2rem;
  right: -2rem;
  background-color: #0a0a0a;
  color: #ffffff;
  padding: 2rem;
  text-align: center;
}
@media (max-width: 991px) {
  .about-intro__exp {
    right: 2rem;
  }
}
.about-intro__exp-number {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #c8a97e;
  line-height: 1;
}
.about-intro__exp-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a0a0a0;
}
.about-intro__content .section__title {
  margin-bottom: 3rem;
}
.about-intro__text p {
  font-size: 1rem;
  color: #505050;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-intro__text p:last-child {
  margin-bottom: 3rem;
}
.about-intro__signature {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  color: #0a0a0a;
  padding-top: 1.5rem;
  border-top: 1px solid #e8e8e8;
}

.expertise__grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.expertise__item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.expertise__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.expertise__name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #ffffff;
}
.expertise__percent {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  color: #c8a97e;
  font-weight: 600;
}
.expertise__bar {
  width: 100%;
  height: 3px;
  background-color: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.expertise__bar-fill {
  height: 100%;
  background-color: #c8a97e;
  width: 0;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.expertise__bar-fill.animated {
  width: var(--width);
}

.timeline__track {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 4rem;
}
.timeline__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #e8e8e8;
}
.timeline__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #0a0a0a;
  transition: height 2s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline__line.animated::after {
  height: 100%;
}
.timeline__item {
  position: relative;
  padding-bottom: 4rem;
  padding-left: 3rem;
}
.timeline__item:last-child {
  padding-bottom: 0;
}
.timeline__dot {
  position: absolute;
  top: 4px;
  left: -4rem;
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border: 2px solid #0a0a0a;
  border-radius: 50%;
  transform: translateX(-50%);
}
.timeline__dot::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #0a0a0a;
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline__item:hover .timeline__dot::after {
  transform: scale(1);
}
.timeline__year {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c8a97e;
  margin-bottom: 0.5rem;
}
.timeline__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.timeline__text {
  font-size: 0.875rem;
  color: #707070;
  line-height: 1.8;
}

.awards__list {
  max-width: 800px;
  margin: 0 auto;
}
.awards__item {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: padding-left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.awards__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.awards__item:hover {
  padding-left: 1.5rem;
}
.awards__item:hover .awards__year {
  color: #c8a97e;
}
@media (max-width: 767px) {
  .awards__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.awards__year {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #707070;
  letter-spacing: 0.1em;
  min-width: 60px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.awards__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  flex: 1;
}
.awards__category {
  font-size: 0.875rem;
  color: #707070;
  text-align: right;
  min-width: 200px;
}
@media (max-width: 767px) {
  .awards__category {
    text-align: left;
  }
}

.blog__categories {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 6rem;
}
.blog__cat-btn {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a0a0a0;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog__cat-btn:hover {
  color: #0a0a0a;
}
.blog__cat-btn.active {
  color: #0a0a0a;
  border-color: #0a0a0a;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 991px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 991px) {
  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.newsletter__text {
  font-size: 1rem;
  color: #a0a0a0;
  line-height: 1.8;
  margin-top: 1.5rem;
}
.newsletter__field {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.newsletter__field:focus-within {
  border-color: #c8a97e;
}
.newsletter__input {
  flex: 1;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  color: #ffffff;
  background: transparent;
}
.newsletter__input::placeholder {
  color: #505050;
}
.newsletter__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  color: #0a0a0a;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.newsletter__btn:hover {
  background-color: #c8a97e;
  color: #ffffff;
}
@media (max-width: 767px) {
  .newsletter__btn span {
    display: none;
  }
  .newsletter__btn {
    padding: 1.5rem;
  }
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 8rem;
}
@media (max-width: 991px) {
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}
.contact__desc {
  font-size: 1rem;
  color: #707070;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.contact__details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}
.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.contact__detail-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
  font-size: 1.25rem;
  color: #0a0a0a;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__detail:hover .contact__detail-icon {
  background-color: #0a0a0a;
  color: #ffffff;
  border-color: #0a0a0a;
}
.contact__detail-label {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a0a0a0;
  margin-bottom: 2px;
}
.contact__detail-content a, .contact__detail-content span {
  font-size: 1rem;
  color: #0a0a0a;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__detail-content a:hover {
  color: #c8a97e;
}
.contact__social {
  padding-top: 2rem;
  border-top: 1px solid #e8e8e8;
}
.contact__social-label {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #a0a0a0;
  margin-bottom: 1rem;
}
.contact__social-links {
  display: flex;
  gap: 1.5rem;
}
.contact__social-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact__social-link:hover {
  color: #c8a97e;
}

.form__group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 767px) {
  .form__group {
    grid-template-columns: 1fr;
  }
}
.form__field {
  position: relative;
  margin-bottom: 2rem;
}
.form__input {
  width: 100%;
  padding: 1.5rem 0 0.5rem;
  font-size: 1rem;
  color: #0a0a0a;
  border-bottom: 1px solid #e8e8e8;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form__input:focus {
  border-color: #0a0a0a;
}
.form__input:focus ~ .form__label {
  transform: translateY(-100%) scale(0.8);
  color: #c8a97e;
}
.form__input:focus ~ .form__border {
  transform: scaleX(1);
}
.form__input:not(:placeholder-shown) ~ .form__label {
  transform: translateY(-100%) scale(0.8);
  color: #707070;
}
.form__label {
  position: absolute;
  top: 1.5rem;
  left: 0;
  font-size: 1rem;
  color: #a0a0a0;
  pointer-events: none;
  transform-origin: left;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.form__label--select {
  transform: translateY(-100%) scale(0.8);
  color: #707070;
}
.form__border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0a0a0a;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.form__select {
  appearance: none;
  cursor: pointer;
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
}
.form__textarea {
  resize: vertical;
  min-height: 120px;
}
.form__status {
  margin-top: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  text-align: center;
  min-height: 24px;
}
.form__status.success {
  color: #27ae60;
}
.form__status.error {
  color: #e74c3c;
}

.map {
  position: relative;
  height: 400px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .map {
    height: 250px;
  }
}
.map__placeholder {
  position: relative;
  height: 100%;
}
.map__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.map__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.map__info {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #ffffff;
  padding: 1.5rem 2rem;
  color: #0a0a0a;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
}
.map__info i {
  color: #c8a97e;
  font-size: 1.25rem;
}

.project-hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .project-hero {
    height: 60vh;
    min-height: 400px;
  }
}
.project-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.project-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.7) 100%);
}
.project-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 0 2rem;
}
.project-hero__category {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c8a97e;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1.5rem;
  border: 1px solid rgba(200, 169, 126, 0.3);
}
.project-hero__title {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
@media (max-width: 991px) {
  .project-hero__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .project-hero__title {
    font-size: 2.5rem;
  }
}
.project-hero__meta {
  display: flex;
  justify-content: center;
  gap: 3rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  color: #a0a0a0;
}
.project-hero__meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.project-hero__meta i {
  color: #c8a97e;
}
.project-hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.project-hero__scroll span:first-child {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #707070;
}
@media (max-width: 767px) {
  .project-hero__scroll {
    display: none;
  }
}
.project-hero__scroll-line {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.project-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: scrollLine 2s ease-in-out infinite;
}

.project-detail__inner {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 8rem;
}
@media (max-width: 991px) {
  .project-detail__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.project-detail__sidebar {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 991px) {
  .project-detail__sidebar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 767px) {
  .project-detail__sidebar {
    grid-template-columns: repeat(2, 1fr);
  }
}
.project-detail__info-block h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a0a0a0;
  margin-bottom: 0.5rem;
}
.project-detail__info-block p {
  font-size: 1rem;
  color: #0a0a0a;
  font-weight: 500;
}
.project-detail__title {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.project-detail__text {
  font-size: 1.125rem;
  color: #505050;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.project-detail__text:last-child {
  margin-bottom: 0;
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 767px) {
  .project-gallery__grid {
    grid-template-columns: 1fr;
  }
}
.project-gallery__item {
  overflow: hidden;
}
.project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
  transition: filter 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-gallery__item img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.project-gallery__item--wide {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .project-gallery__item--wide {
    grid-column: span 1;
  }
}
.project-gallery__item--tall {
  grid-row: span 2;
}
@media (max-width: 767px) {
  .project-gallery__item--tall {
    grid-row: span 1;
  }
}

.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .project-nav {
    grid-template-columns: 1fr;
  }
}
.project-nav__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 4rem;
  overflow: hidden;
  min-height: 200px;
}
.project-nav__link:hover .project-nav__bg {
  transform: scale(1.05);
  opacity: 0.3;
}
.project-nav__link:hover .project-nav__title {
  transform: translateX(0);
  opacity: 1;
}
.project-nav__link--prev {
  align-items: flex-start;
}
.project-nav__link--next {
  align-items: flex-end;
  text-align: right;
}
.project-nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  opacity: 0.15;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.project-nav__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #707070;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.project-nav__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0a0a0a;
  position: relative;
  z-index: 1;
  transform: translateX(-10px);
  opacity: 0.7;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.project-nav__link--next .project-nav__title {
  transform: translateX(10px);
}
@media (max-width: 767px) {
  .project-nav__title {
    font-size: 1.5rem;
  }
}

.article-hero {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) {
  .article-hero {
    height: 65vh;
    min-height: 450px;
  }
}
.article-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.article-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.75) 100%);
}
.article-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  padding: 0 2rem;
  max-width: 900px;
}
.article-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  color: #d1d1d1;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.article-hero__category {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c8a97e;
}
.article-hero__separator {
  color: #707070;
}
.article-hero__title {
  font-size: 4.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 3rem;
}
@media (max-width: 991px) {
  .article-hero__title {
    font-size: 3.5rem;
  }
}
@media (max-width: 767px) {
  .article-hero__title {
    font-size: 2.5rem;
  }
}
.article-hero__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.article-hero__author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.article-hero__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-hero__author-info {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.article-hero__author-name {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}
.article-hero__author-role {
  font-size: 0.75rem;
  color: #a0a0a0;
}
.article-hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
.article-hero__scroll span:first-child {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #707070;
}
@media (max-width: 767px) {
  .article-hero__scroll {
    display: none;
  }
}
.article-hero__scroll-line {
  width: 1px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.article-hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  animation: scrollLine 2s ease-in-out infinite;
}

.article__wrapper {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 6rem;
}
@media (max-width: 991px) {
  .article__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.article__sidebar {
  position: relative;
}
@media (max-width: 991px) {
  .article__sidebar {
    order: 2;
  }
}
.article__sidebar-inner {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (max-width: 991px) {
  .article__sidebar-inner {
    position: static;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
  }
}
.article__share {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 991px) {
  .article__share {
    flex-direction: row;
    align-items: center;
  }
}
.article__share-label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a0a0a0;
}
.article__share-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .article__share-links {
    flex-direction: row;
  }
}
.article__share-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  color: #707070;
  font-size: 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.article__share-link:hover {
  border-color: #0a0a0a;
  color: #0a0a0a;
  transform: translateY(-2px);
}
.article__tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (max-width: 991px) {
  .article__tags {
    flex-direction: row;
  }
}
.article__tag {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #a0a0a0;
  padding: 4px 12px;
  border: 1px solid #e8e8e8;
  white-space: nowrap;
}
.article__content {
  max-width: 760px;
}
@media (max-width: 991px) {
  .article__content {
    order: 1;
    max-width: 100%;
  }
}
.article__content h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-top: 6rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.article__content h2:first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .article__content h2 {
    font-size: 1.5rem;
  }
}
.article__content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #0a0a0a;
  margin-top: 3rem;
  margin-bottom: 1rem;
}
.article__content p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #505050;
  margin-bottom: 1.5rem;
}
.article__content p:last-child {
  margin-bottom: 0;
}
.article__content ul, .article__content ol {
  margin-bottom: 2rem;
  padding-left: 1.5rem;
}
.article__content ul li, .article__content ol li {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #505050;
  margin-bottom: 0.5rem;
}
.article__content ul li strong, .article__content ol li strong {
  color: #0a0a0a;
  font-weight: 600;
}
.article__content ul li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}
.article__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 1px;
  background-color: #c8a97e;
}
.article__content blockquote {
  margin: 6rem 0;
  padding: 3rem 3rem 3rem 4rem;
  border-left: 3px solid #c8a97e;
  background-color: #f5f5f5;
  position: relative;
}
.article__content blockquote::before {
  content: "“";
  position: absolute;
  top: -10px;
  left: 1.5rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 4rem;
  color: #c8a97e;
  line-height: 1;
  opacity: 0.3;
}
.article__content blockquote p {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-style: italic;
  color: #0a0a0a;
  line-height: 1.3;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .article__content blockquote p {
    font-size: 1.25rem;
  }
}
.article__content blockquote cite {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  color: #707070;
  letter-spacing: 0.05em;
}
.article__lead {
  font-size: 1.25rem !important;
  color: #333333 !important;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 3rem !important;
  padding-bottom: 3rem;
  border-bottom: 1px solid #e8e8e8;
}
@media (max-width: 767px) {
  .article__lead {
    font-size: 1.125rem !important;
  }
}
.article__figure {
  margin: 4rem 0;
  overflow: hidden;
}
.article__figure img {
  width: 100%;
  height: auto;
  filter: grayscale(80%);
  transition: filter 0.6s ease;
}
.article__figure img:hover {
  filter: grayscale(0%);
}
.article__figure figcaption {
  margin-top: 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.875rem;
  color: #a0a0a0;
  text-align: center;
  font-style: italic;
}
.article__figure--wide {
  margin-left: -6rem;
  margin-right: -6rem;
}
@media (max-width: 991px) {
  .article__figure--wide {
    margin-left: 0;
    margin-right: 0;
  }
}

.article-author {
  padding-top: 0;
}
.article-author__box {
  display: flex;
  gap: 3rem;
  padding: 4rem;
  border: 1px solid #e8e8e8;
  align-items: center;
}
@media (max-width: 767px) {
  .article-author__box {
    flex-direction: column;
    text-align: center;
    padding: 3rem;
  }
}
.article-author__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.article-author__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.4s ease;
}
.article-author__avatar:hover img {
  filter: grayscale(0%);
}
.article-author__label {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a0a0a0;
  display: block;
  margin-bottom: 0.5rem;
}
.article-author__name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0a0a0a;
}
.article-author__bio {
  font-size: 0.875rem;
  color: #707070;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.article-author__socials {
  display: flex;
  gap: 1rem;
}
@media (max-width: 767px) {
  .article-author__socials {
    justify-content: center;
  }
}
.article-author__social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a0a0a0;
  font-size: 1.25rem;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.article-author__social:hover {
  color: #0a0a0a;
}

.article-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .article-related__grid {
    grid-template-columns: 1fr;
  }
}

.article-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .article-nav {
    grid-template-columns: 1fr;
  }
}
.article-nav__link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 250px;
  overflow: hidden;
  text-decoration: none;
}
@media (max-width: 767px) {
  .article-nav__link {
    min-height: 180px;
  }
}
.article-nav__link:hover .article-nav__bg {
  transform: scale(1.05);
}
.article-nav__link:hover .article-nav__title {
  color: #c8a97e;
}
.article-nav__link--prev .article-nav__inner {
  text-align: left;
  padding-left: 6rem;
}
@media (max-width: 767px) {
  .article-nav__link--prev .article-nav__inner {
    padding-left: 3rem;
  }
}
.article-nav__link--next .article-nav__inner {
  text-align: right;
  padding-right: 6rem;
  margin-left: auto;
}
@media (max-width: 767px) {
  .article-nav__link--next .article-nav__inner {
    padding-right: 3rem;
  }
}
.article-nav__link--next .article-nav__label {
  justify-content: flex-end;
}
.article-nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.article-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.7);
}
.article-nav__inner {
  position: relative;
  z-index: 1;
  padding: 3rem;
}
.article-nav__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #a0a0a0;
  margin-bottom: 1rem;
}
.article-nav__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  color: #ffffff;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1.3;
}
@media (max-width: 767px) {
  .article-nav__title {
    font-size: 1.25rem;
  }
}

.theme-dark {
  background-color: #111111;
  color: #d1d1d1;
}
.theme-dark .cursor {
  border-color: #ffffff;
}
.theme-dark .cursor__inner {
  background-color: #ffffff;
}
.theme-dark .cursor.hover {
  border-color: #c8a97e;
  background-color: rgba(200, 169, 126, 0.1);
}
.theme-dark ::selection {
  background-color: #ffffff;
  color: #0a0a0a;
}
.theme-dark .header.scrolled {
  background-color: rgba(17, 17, 17, 0.95);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05);
}
.theme-dark .header.scrolled .header__logo-text {
  color: #ffffff;
}
.theme-dark .header.scrolled .header__nav-link {
  color: #a0a0a0;
}
.theme-dark .header.scrolled .header__nav-link:hover, .theme-dark .header.scrolled .header__nav-link.active {
  color: #ffffff;
}
.theme-dark .header.scrolled .header__burger-line {
  background-color: #ffffff;
}
.theme-dark .header.scrolled .header__theme-toggle {
  color: #ffffff;
}
.theme-dark .section:not(.section--dark) {
  background-color: #111111;
  color: #d1d1d1;
}
.theme-dark .section:not(.section--dark) .section__label {
  color: #c8a97e;
}
.theme-dark .section:not(.section--dark) .section__label::before {
  background-color: #c8a97e;
}
.theme-dark .section:not(.section--dark) .section__title {
  color: #ffffff;
}
.theme-dark .section--dark {
  background-color: #0a0a0a;
}
.theme-dark .intro__text {
  color: #a0a0a0;
}
.theme-dark .intro__stats {
  border-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .intro__stat-number {
  color: #ffffff;
}
.theme-dark .intro__stat-label {
  color: #707070;
}
.theme-dark .services__item {
  border-color: rgba(255, 255, 255, 0.1);
  background-color: transparent;
}
.theme-dark .services__item:hover {
  border-color: #c8a97e;
}
.theme-dark .services__icon {
  color: #ffffff;
}
.theme-dark .services__title {
  color: #ffffff;
}
.theme-dark .services__text {
  color: #707070;
}
.theme-dark .services__number {
  color: rgba(255, 255, 255, 0.03);
}
.theme-dark .marquee {
  border-color: rgba(255, 255, 255, 0.08);
}
.theme-dark .marquee__item {
  color: #333333;
}
.theme-dark .link-arrow {
  color: #ffffff;
}
.theme-dark .link-arrow:hover {
  color: #c8a97e;
}
.theme-dark .blog-card__link {
  background: #1a1a1a;
}
.theme-dark .blog-card__link:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.theme-dark .blog-card__title {
  color: #ffffff;
}
.theme-dark .blog-card__excerpt {
  color: #707070;
}
.theme-dark .blog-card__read-more {
  color: #ffffff;
}
.theme-dark .pagination__btn {
  color: #a0a0a0;
}
.theme-dark .pagination__btn:hover:not(:disabled) {
  color: #ffffff;
}
.theme-dark .pagination__number {
  color: #a0a0a0;
}
.theme-dark .pagination__number.active, .theme-dark .pagination__number:hover {
  background-color: #ffffff;
  color: #0a0a0a;
}
.theme-dark .portfolio__filter {
  color: #707070;
}
.theme-dark .portfolio__filter:hover {
  color: #ffffff;
}
.theme-dark .portfolio__filter.active {
  color: #ffffff;
  border-color: #ffffff;
}
.theme-dark .portfolio__image {
  filter: grayscale(100%) brightness(0.9);
}
.theme-dark .blog__cat-btn {
  color: #707070;
}
.theme-dark .blog__cat-btn:hover {
  color: #ffffff;
}
.theme-dark .blog__cat-btn.active {
  color: #ffffff;
  border-color: #ffffff;
}
.theme-dark .about-intro__text p {
  color: #a0a0a0;
}
.theme-dark .about-intro__signature {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .about-intro__exp {
  background-color: #1a1a1a;
}
.theme-dark .timeline__line {
  background-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .timeline__line::after {
  background-color: #c8a97e;
}
.theme-dark .timeline__dot {
  background-color: #111111;
  border-color: #c8a97e;
}
.theme-dark .timeline__dot::after {
  background-color: #c8a97e;
}
.theme-dark .timeline__title {
  color: #ffffff;
}
.theme-dark .timeline__text {
  color: #707070;
}
.theme-dark .contact__desc {
  color: #a0a0a0;
}
.theme-dark .contact__detail-icon {
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.contact__detail:hover .theme-dark .contact__detail-icon {
  background-color: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}
.theme-dark .contact__detail-label {
  color: #707070;
}
.theme-dark .contact__detail-content a,
.theme-dark .contact__detail-content span {
  color: #d1d1d1;
}
.theme-dark .contact__social {
  border-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .contact__social-link {
  color: #d1d1d1;
}
.theme-dark .contact__social-link:hover {
  color: #c8a97e;
}
.theme-dark .form__input {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.15);
}
.theme-dark .form__input:focus {
  border-bottom-color: #c8a97e;
}
.theme-dark .form__label {
  color: #707070;
}
.theme-dark .form__border {
  background-color: #c8a97e;
}
.theme-dark .form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%23999'/%3E%3C/svg%3E");
}
.theme-dark .btn--primary {
  background-color: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
}
.theme-dark .btn--primary::before {
  background-color: #c8a97e;
}
.theme-dark .btn--primary:hover {
  border-color: #c8a97e;
  color: #ffffff;
}
.theme-dark .btn--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.theme-dark .btn--outline::before {
  background-color: #ffffff;
}
.theme-dark .btn--outline:hover {
  color: #0a0a0a;
}
.theme-dark .cta__title {
  color: #ffffff;
}
.theme-dark .project-detail__info-block p {
  color: #d1d1d1;
}
.theme-dark .project-detail__title {
  color: #ffffff;
}
.theme-dark .project-detail__text {
  color: #a0a0a0;
}
.theme-dark .project-nav__link {
  background-color: #111111;
}
.theme-dark .project-nav__title {
  color: #ffffff;
}
.theme-dark .newsletter .section__title {
  color: #ffffff;
}
.theme-dark .map__info {
  background-color: #1a1a1a;
  color: #ffffff;
}
.theme-dark .footer {
  background-color: #0a0a0a;
}
.theme-dark .article__content h2, .theme-dark .article__content h3 {
  color: #ffffff;
}
.theme-dark .article__content p {
  color: #d1d1d1;
}
.theme-dark .article__content ul li, .theme-dark .article__content ol li {
  color: #d1d1d1;
}
.theme-dark .article__content ul li strong, .theme-dark .article__content ol li strong {
  color: #ffffff;
}
.theme-dark .article__content blockquote {
  background-color: rgba(255, 255, 255, 0.03);
  border-left-color: #c8a97e;
}
.theme-dark .article__content blockquote p {
  color: #ffffff;
}
.theme-dark .article__content blockquote cite {
  color: #a0a0a0;
}
.theme-dark .article__lead {
  color: #e8e8e8 !important;
  border-bottom-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .article__figure figcaption {
  color: #707070;
}
.theme-dark .article__share-link {
  border-color: rgba(255, 255, 255, 0.15);
  color: #a0a0a0;
}
.theme-dark .article__share-link:hover {
  border-color: #ffffff;
  color: #ffffff;
}
.theme-dark .article__share-label {
  color: #707070;
}
.theme-dark .article__tag {
  color: #a0a0a0;
  border-color: rgba(255, 255, 255, 0.15);
}
.theme-dark .article-author__box {
  border-color: rgba(255, 255, 255, 0.1);
}
.theme-dark .article-author__name {
  color: #ffffff;
}
.theme-dark .article-author__bio {
  color: #a0a0a0;
}
.theme-dark .article-author__social {
  color: #707070;
}
.theme-dark .article-author__social:hover {
  color: #ffffff;
}
.theme-dark .section--gray {
  background-color: rgba(255, 255, 255, 0.03);
}

/*# sourceMappingURL=main.css.map */
