@charset "UTF-8";

:root {
  --default-font: "Montserrat", "Segoe UI", sans-serif;
  --heading-font: "DM Serif Display", Georgia, serif;
  --nav-font: "Montserrat", "Segoe UI", sans-serif;
  --background-color: #f6f0e6;
  --default-color: #4d4135;
  --heading-color: #241b14;
  --accent-color: #ad8a4b;
  --accent-strong: #d7bd8a;
  --accent-soft: rgba(173, 138, 75, 0.16);
  --surface-color: #fff9f1;
  --surface-alt: #ede1cf;
  --contrast-color: #fffdf9;
  --dark-panel: #17120f;
  --dark-panel-soft: #261d18;
  --nav-color: rgba(250, 244, 235, 0.88);
  --nav-hover-color: #ffffff;
  --nav-mobile-background-color: #1e1713;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #4d4135;
  --nav-dropdown-hover-color: #ad8a4b;
  --shadow-soft: 0 20px 60px rgba(36, 27, 20, 0.10);
  --shadow-strong: 0 24px 80px rgba(23, 18, 15, 0.18);
  scroll-behavior: smooth;
}

.light-background {
  --background-color: #fbf5ec;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #17120f;
  --default-color: #f3ede5;
  --heading-color: #ffffff;
  --surface-color: #261d18;
  --contrast-color: #ffffff;
}

body {
  color: var(--default-color);
  background: var(--background-color);
  font-family: var(--default-font);
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea,
.btn {
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), white 8%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.08;
  text-wrap: balance;
}

.luxury-page {
  position: relative;
}

.luxury-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(173, 138, 75, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 138, 75, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
  z-index: 0;
}

.main,
.header,
.footer {
  position: relative;
  z-index: 1;
}

.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.brand-mark-label {
  color: rgba(242, 229, 210, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.brand-mark-title {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header {
  --background-color: rgba(247, 240, 231, 0.72);
  --heading-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  color: var(--default-color);
  transition: all 0.4s ease;
  z-index: 10040;
  background-color: var(--background-color);
  backdrop-filter: blur(18px);
}

.header .topbar {
  min-height: 46px;
  padding: 6px 0;
  font-size: 14px;
  transition: all 0.4s ease;
}

.topbar .language-switcher {
  margin-left: auto;
  gap: 10px;
}

.topbar .language-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar .language-link img {
  width: 18px;
  height: 18px;
  border-radius: 0;
  object-fit: cover;
  flex-shrink: 0;
}

.header .branding {
  min-height: 82px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(215, 189, 138, 0.14);
}

.scrolled .header {
  box-shadow: 0 12px 40px rgba(23, 18, 15, 0.18);
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 10px 14px;
    font-size: 0.8rem;
    font-family: var(--nav-font);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-radius: 0;
    transition: 0.3s ease;
  }

  .navmenu .navmenu-dropdown > ul {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    padding: 8px 0;
    display: none;
    background: #ffffff;
    border: 1px solid rgba(36, 27, 20, 0.12);
    z-index: 1000;
  }

  .navmenu .navmenu-dropdown:hover > ul {
    display: block;
  }

  .navmenu .navmenu-dropdown > ul li {
    width: 100%;
  }

  .navmenu .navmenu-dropdown > ul a,
  .navmenu .navmenu-dropdown > ul a:focus {
    padding: 10px 14px;
    color: #241b14;
    justify-content: flex-start;
    gap: 10px;
    background: transparent;
  }

  .navmenu .navmenu-dropdown > ul a:hover,
  .navmenu .navmenu-dropdown > ul .is-active {
    background: #f4ede3;
    color: #241b14;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 30px;
    line-height: 0;
    margin-right: 6px;
    cursor: pointer;
    position: relative;
    z-index: 10000;
  }

  .navmenu {
    position: static;
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(86vw, 380px);
    padding: 92px 0 28px;
    margin: 0;
    border-radius: 0;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9998;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(215, 189, 138, 0.18);
    border-top: 0;
    border-right: 0;
    height: 100dvh;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 14px 22px;
    font-family: var(--nav-font);
    font-size: 0.96rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
  }

  .navmenu .navmenu-dropdown > ul {
    display: none;
    position: static;
    width: 100%;
    padding: 0 0 10px;
    background: transparent;
    border: 0;
    height: auto;
    transform: none;
    box-shadow: none;
  }

  .navmenu .navmenu-dropdown > ul.dropdown-active {
    display: block;
  }

  .navmenu .navmenu-dropdown > ul a,
  .navmenu .navmenu-dropdown > ul a:focus {
    padding: 12px 34px;
    font-size: 0.84rem;
    gap: 10px;
    color: rgba(238, 243, 246, 0.88);
  }

  .mobile-nav-active {
    overflow: hidden;
    inset: 0;
  }

  .mobile-nav-active #header {
    inset: 0;
    bottom: 0;
    height: 100dvh;
    background: transparent;
    backdrop-filter: none;
  }

  .mobile-nav-active #header .topbar,
  .mobile-nav-active #header .branding {
    background: transparent;
    border-bottom-color: transparent;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: fixed;
    font-size: 32px;
    top: 24px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(15, 11, 9, 0.58);
    transition: 0.3s;
    overscroll-behavior: contain;
    z-index: 9996;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
    transform: translateX(0);
  }
}

.navmenu .toggle-dropdown {
  margin-left: 8px;
  font-size: 0.78rem;
}

.navmenu .language-link img {
  width: 18px;
  height: 18px;
  object-fit: cover;
  flex-shrink: 0;
}

.footer {
  color: var(--default-color);
  font-size: 14px;
  padding: 96px 0 0;
  position: relative;
  border-top: 1px solid rgba(215, 189, 138, 0.16);
}

.footer::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  width: min(320px, 70vw);
  height: 1px;
  transform: translateX(-50%);
}

.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 0.98rem;
  line-height: 1.8;
  max-width: 32ch;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 26px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 42px;
  height: 1px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  display: flex;
  align-items: center;
  font-size: 0.92rem;
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  border: 1px solid rgba(215, 189, 138, 0.18);
}

.footer .footer-contact .contact-item .contact-icon i {
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p,
.footer .footer-contact .contact-item .contact-info a {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  border-top: 1px solid rgba(215, 189, 138, 0.1);
}

.footer .footer-bottom .copyright p,
.footer .footer-bottom .credits {
  margin: 0;
  font-size: 0.84rem;
}

.footer .footer-bottom .credits {
  text-align: right;
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p,
  .footer .footer-bottom .credits {
    text-align: center;
  }

  .footer .footer-bottom .copyright p {
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 72px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-content p {
    max-width: none;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}

#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  transition: all 0.6s ease-out;
}

#preloader::before {
  content: "";
  position: fixed;
  top: calc(50% - 34px);
  left: calc(50% - 34px);
  border: 6px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--accent-color);
  border-right-color: var(--accent-strong);
  border-radius: 50%;
  width: 68px;
  height: 68px;
  animation: animate-preloader 1.2s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 18px;
  bottom: -15px;
  z-index: 99999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  transform: translateY(-3px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 18px;
}

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

section,
.section {
  color: var(--default-color);
  background-color: transparent;
  padding: 84px 0;
  scroll-margin-top: 96px;
  overflow: clip;
  position: relative;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 72px;
  }
}

.section-title {
  text-align: center;
  padding: 18px 0 10px;
  margin-bottom: 46px;
  position: relative;
}

.section-title h2 {
  margin-bottom: 14px;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 2;
}

.section-title p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #8f7350;
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 148px;
  padding-bottom: 72px;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 1720px);
  padding-left: clamp(22px, 4vw, 64px);
  padding-right: clamp(22px, 4vw, 64px);
  margin: 0 auto;
}

.hero-layout {
  min-height: calc(100vh - 180px);
}

.hero .hero-text {
  max-width: 540px;
  margin: 0;
}

.hero .hero-text .hero-title {
  margin-bottom: 18px;
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hero .hero-text .hero-description {
  max-width: 56ch;
  margin-bottom: 24px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.hero .hero-text .hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.hero .hero-text .hero-actions .btn {
  min-width: 200px;
  padding: 13px 22px;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-showcase {
  margin-top: 0;
}

.hero-showcase-stage {
  position: relative;
  padding: 16px;
  overflow: hidden;
}

.hero-veil,
.hero-orb {
  pointer-events: none;
}

.about {
  padding-top: 110px;
}

.luxury-panel {
  padding: 38px;
  border-radius: 0;
  border: 1px solid rgba(173, 138, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 992px) {
  .hero {
    padding-top: 140px;
    min-height: auto;
  }

  .hero-layout {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .main {
    padding-top: 118px;
  }

  .brand-mark-title {
    font-size: 1.55rem;
  }

  .brand-mark-label {
    letter-spacing: 0.2em;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 72px;
  }

  .hero .hero-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero .hero-text .hero-description {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero .hero-text .hero-actions {
    flex-direction: column;
  }

  .hero .hero-text .hero-actions .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 576px) {
  section,
  .section {
    padding: 74px 0;
  }

  .hero .hero-text .hero-title {
    font-size: 1.8rem;
  }

  .luxury-panel {
    padding: 24px 20px;
  }
}
