@charset "UTF-8";

:root {
  --default-font: "Manrope", "Segoe UI", sans-serif;
  --heading-font: "Cormorant Garamond", Georgia, serif;
  --nav-font: "Manrope", "Segoe UI", sans-serif;
  --background-color: #f6eee6;
  --default-color: #2f231f;
  --heading-color: #8d6325;
  --accent-color: #c7963e;
  --accent-strong: #e0b85f;
  --accent-soft: rgba(199, 150, 62, 0.18);
  --surface-color: #fffaf5;
  --surface-alt: #f2e5d5;
  --contrast-color: #ffffff;
  --dark-panel: #120c0b;
  --dark-panel-soft: #201414;
  --nav-color: rgba(255, 245, 228, 0.78);
  --nav-hover-color: #f3ce7d;
  --nav-mobile-background-color: #1b1312;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2f231f;
  --nav-dropdown-hover-color: #b9852f;
  --shadow-soft: 0 20px 60px rgba(75, 43, 19, 0.12);
  --shadow-strong: 0 24px 80px rgba(21, 11, 8, 0.28);
  scroll-behavior: smooth;
}

.light-background {
  --background-color: #f3e8dc;
  --surface-color: #fffaf4;
}

.dark-background {
  --background-color: #120c0b;
  --default-color: #f9efdc;
  --heading-color: #f4d28a;
  --surface-color: #201414;
  --contrast-color: #ffffff;
}

body {
  color: var(--default-color);
  background:
    radial-gradient(circle at top left, rgba(192, 138, 43, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(109, 36, 25, 0.12), transparent 24%),
    var(--background-color);
  font-family: var(--default-font);
  text-rendering: optimizeLegibility;
}

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);
  letter-spacing: 0.02em;
}

.luxury-page {
  position: relative;
}

.luxury-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(199, 150, 62, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199, 150, 62, 0.03) 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;
}

.luxury-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.luxury-kicker-dark {
  color: #9d6d28;
}

.luxury-kicker-line {
  width: 46px;
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor);
}

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

.brand-mark-label {
  color: rgba(255, 231, 193, 0.68);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

.establishment-brand-mark {
  gap: 8px;
}

.establishment-brand-logo {
  display: block;
  width: auto;
  height: 85px;
  max-width: 85px;
  object-fit: contain;
  object-position: left center;
}

.establishment-brand-mark .brand-mark-label {
  padding-left: 4px;
}

.establishment-hero-mobile-spacing {
  margin-top: 5rem;
}

@media (min-width: 768px) {
  .establishment-hero-mobile-spacing {
    margin-top: 0;
  }
}

.header {
  --background-color: rgba(10, 6, 6, 0.18);
  --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;
  opacity: 1;
  transform: none;
  background-color: var(--background-color);
  backdrop-filter: blur(18px);
}

.header .topbar {
  background: linear-gradient(90deg, rgba(15, 9, 8, 0.92), rgba(52, 26, 20, 0.72));
  min-height: 46px;
  padding: 6px 0;
  font-size: 14px;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(224, 184, 95, 0.12);
}

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

.topbar .language-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 243, 220, 0.78);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(224, 184, 95, 0.1);
}

.topbar .language-link img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.topbar .language-link:hover,
.topbar .language-link.is-active {
  color: #fffaf0;
  background: rgba(199, 150, 62, 0.16);
  border-color: rgba(224, 184, 95, 0.28);
}

.header .branding {
  min-height: 82px;
  padding: 14px 0;
  background:
    linear-gradient(90deg, rgba(16, 10, 9, 0.94), rgba(37, 22, 18, 0.9) 52%, rgba(16, 10, 9, 0.94)),
    rgba(18, 12, 11, 0.92);
  border-bottom: 1px solid rgba(224, 184, 95, 0.08);
}

.scrolled .header {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
  --background-color: rgba(12, 7, 7, 0.84);
  opacity: 1;
  transform: none;
}

.scrolled .header .branding {
  background:
    linear-gradient(90deg, rgba(14, 8, 8, 0.98), rgba(34, 19, 16, 0.96) 52%, rgba(14, 8, 8, 0.98)),
    rgba(14, 8, 8, 0.96);
}

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: 6px;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 12px 18px;
    font-size: 0.9rem;
    font-family: var(--nav-font);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    border-radius: 999px;
    transition: 0.3s ease;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(199, 150, 62, 0.08);
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 30px;
    line-height: 0;
    margin-right: 6px;
    cursor: pointer;
    transition: color 0.3s;
    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;
    background: linear-gradient(180deg, rgba(27, 19, 18, 0.98), rgba(50, 29, 24, 0.98));
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9998;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(224, 184, 95, 0.15);
    border-top: 0;
    border-right: 0;
    height: 100dvh;
  }

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

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .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(16, 9, 8, 0.72);
    transition: 0.3s;
    overscroll-behavior: contain;
    z-index: 9996;
  }

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

.footer {
  color: var(--default-color);
  background:
    radial-gradient(circle at top center, rgba(199, 150, 62, 0.12), transparent 26%),
    linear-gradient(180deg, #160f0d 0%, #0e0908 100%);
  font-size: 14px;
  padding: 96px 0 0;
  position: relative;
  border-top: 1px solid rgba(224, 184, 95, 0.12);
}

.footer::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 50%;
  width: min(320px, 70vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(224, 184, 95, 0.68), transparent);
}

.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;
  color: rgba(249, 239, 220, 0.76);
  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;
  background: linear-gradient(90deg, var(--accent-strong), transparent);
}

.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 {
  color: rgba(249, 239, 220, 0.72);
  display: flex;
  align-items: center;
  font-size: 0.92rem;
}

.footer .footer-links ul a:hover {
  color: var(--accent-strong);
}

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.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;
  background: rgba(199, 150, 62, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  border: 1px solid rgba(224, 184, 95, 0.18);
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p,
.footer .footer-contact .contact-item .contact-info a {
  margin: 0;
  color: rgba(249, 239, 220, 0.78);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(224, 184, 95, 0.1);
}

.footer .footer-bottom .copyright p,
.footer .footer-bottom .credits {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(249, 239, 220, 0.62);
}

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

.footer .footer-bottom .credits a {
  color: var(--accent-color);
}

.footer .footer-bottom .credits a:hover {
  color: var(--accent-strong);
}

@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;
  background: #110b09;
  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;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-strong));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  transition: all 0.4s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

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

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

.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 {
  font-size: 3rem;
  font-weight: 700;
  text-transform: none;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 5rem);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.18em;
  color: rgba(157, 109, 40, 0.08);
}

.dark-background .section-title span {
  color: rgba(244, 210, 138, 0.08);
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  color: #9d6d28;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

.dark-background .section-title p {
  color: var(--accent-strong);
}

@media (max-width: 575px) {
  .section-title {
    margin-bottom: 36px;
  }

  .section-title h2 {
    font-size: 2.25rem;
  }

  .section-title span {
    font-size: 2.7rem;
  }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 170px;
  padding-bottom: 120px;
  background:
    radial-gradient(circle at 20% 20%, rgba(199, 150, 62, 0.18), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(130, 44, 27, 0.18), transparent 22%),
    linear-gradient(140deg, #120c0b 0%, #1a110f 35%, #261715 100%);
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 5, 4, 0.78) 0%, rgba(8, 5, 4, 0.28) 48%, rgba(8, 5, 4, 0.1) 100%),
    radial-gradient(circle at center, transparent, rgba(8, 5, 4, 0.34));
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
  opacity: 0.65;
}

.hero-orb-left {
  top: 18%;
  left: -100px;
  width: 260px;
  height: 260px;
  background: rgba(199, 150, 62, 0.18);
}

.hero-orb-right {
  right: -60px;
  bottom: 18%;
  width: 220px;
  height: 220px;
  background: rgba(120, 36, 28, 0.22);
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero .hero-text .tagline {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent-strong);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero .hero-text .hero-title {
  margin-bottom: 24px;
  color: #fff3df;
  font-size: clamp(2.6rem, 4.8vw, 4.3rem);
  line-height: 1.02;
  text-wrap: balance;
}

.hero .hero-text .hero-description {
  max-width: 56ch;
  margin-bottom: 36px;
  color: rgba(250, 239, 218, 0.8);
  font-size: 1.05rem;
  line-height: 1.85;
}

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

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

.hero .hero-text .hero-actions .btn.btn-primary {
  background: linear-gradient(135deg, #b9842d, #efc774);
  border: none;
  color: #1d130d;
  box-shadow: 0 16px 30px rgba(199, 150, 62, 0.24);
}

.hero .hero-text .hero-actions .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(199, 150, 62, 0.32);
}

.hero .hero-text .hero-actions .btn.btn-ghost {
  color: #f7ead0;
  border: 1px solid rgba(244, 210, 138, 0.32);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.hero .hero-text .hero-actions .btn.btn-ghost:hover {
  color: #fff4dc;
  border-color: rgba(244, 210, 138, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.hero .hero-text .hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero .hero-text .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  padding: 16px 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(244, 210, 138, 0.12);
  backdrop-filter: blur(14px);
}

.hero .hero-text .hero-features .feature-item i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #150d09;
  font-size: 1rem;
  background: linear-gradient(135deg, #d4a44d, #f2d48f);
  box-shadow: 0 8px 18px rgba(199, 150, 62, 0.28);
}

.hero .hero-text .hero-features .feature-item .feature-text {
  display: flex;
  flex-direction: column;
}

.hero .hero-text .hero-features .feature-item .feature-text .label {
  margin-bottom: 3px;
  color: rgba(249, 239, 220, 0.55);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .hero-text .hero-features .feature-item .feature-text .value,
.hero .hero-text .hero-features .feature-item .feature-text a {
  color: #fff6e5;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.6;
}

.feature-link,
.phone-link {
  color: inherit;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.hero-stat-card {
  min-width: 170px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 210, 138, 0.1);
}

.hero-stat-value {
  display: block;
  margin-bottom: 6px;
  color: #fff4dc;
  font-family: var(--heading-font);
  font-size: 2rem;
  line-height: 1;
}

.hero-stat-label {
  color: rgba(249, 239, 220, 0.65);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-media-shell {
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 22px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(244, 210, 138, 0.16);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}

.hero-video {
  display: block;
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-media-frame {
  position: absolute;
  width: 92px;
  height: 92px;
  border: 1px solid rgba(244, 210, 138, 0.4);
  border-radius: 24px;
}

.hero-media-frame-top {
  top: -14px;
  right: -14px;
  border-left: 0;
  border-bottom: 0;
}

.hero-media-frame-bottom {
  left: -14px;
  bottom: -14px;
  border-top: 0;
  border-right: 0;
}

.hero-media-badge {
  position: absolute;
  left: -26px;
  bottom: 38px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(18, 12, 11, 0.94), rgba(54, 31, 26, 0.94));
  border: 1px solid rgba(244, 210, 138, 0.18);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  text-align: left;
}

.hero-media-badge span {
  display: block;
  color: rgba(255, 240, 212, 0.62);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-media-badge strong {
  display: block;
  color: #fff2d5;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
}

.hero .scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  text-align: center;
  color: var(--contrast-color);
  z-index: 2;
}

.hero .scroll-indicator .scroll-text {
  margin-bottom: 8px;
  color: rgba(249, 239, 220, 0.5);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.hero .scroll-indicator .scroll-arrow {
  animation: bounce 2s infinite;
}

.hero .scroll-indicator .scroll-arrow i {
  color: var(--accent-strong);
  font-size: 20px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.about {
  padding-top: 110px;
}

.luxury-panel {
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.94), rgba(247, 237, 224, 0.9));
  border: 1px solid rgba(199, 150, 62, 0.16);
  box-shadow: var(--shadow-soft);
}

.about .about-content h2 {
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.98;
  color: #5c381d;
}

.about .about-content p {
  color: rgba(47, 35, 31, 0.8);
  font-size: 1rem;
  line-height: 1.9;
}

.about .about-content .fst-italic {
  margin-bottom: 18px;
  color: #714921;
  font-size: 1.1rem;
}

.about-signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: #8d6325;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-signature span:first-child {
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, #8d6325, transparent);
}

.about-gallery-shell {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 24px;
  border-radius: 32px;
  background: linear-gradient(145deg, rgba(255, 250, 245, 0.94), rgba(239, 224, 205, 0.8));
  border: 1px solid rgba(199, 150, 62, 0.16);
  box-shadow: var(--shadow-soft);
}

.about-gallery-accent {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(199, 150, 62, 0.28);
  border-radius: 28px;
}

.about-gallery-accent-top {
  top: -16px;
  left: -16px;
  border-right: 0;
  border-bottom: 0;
}

.about-gallery-accent-bottom {
  right: -16px;
  bottom: -16px;
  border-left: 0;
  border-top: 0;
}

.about-gallery-image {
  width: 100%;
  max-width: 460px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(48, 27, 15, 0.12);
}

.about-story-badge {
  position: absolute;
  right: -18px;
  bottom: 38px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, #5e331d, #9d6d28);
  color: #fff7e6;
  box-shadow: 0 18px 30px rgba(71, 36, 20, 0.18);
}

.about-story-badge span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 244, 223, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-story-badge strong {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.55rem;
  line-height: 1;
}

.establishments {
  background:
    radial-gradient(circle at 15% 15%, rgba(199, 150, 62, 0.1), transparent 22%),
    linear-gradient(180deg, #120c0b 0%, #1b1211 100%);
}

.establishments .establishments-grid .establishments-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.97), rgba(244, 230, 214, 0.95));
  border: 1px solid rgba(224, 184, 95, 0.18);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.26);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.establishments .establishments-grid .establishments-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.establishments .establishments-grid .establishments-card .establishments-card-image {
  position: relative;
  overflow: hidden;
  height: 390px;
}

.establishments .establishments-grid .establishments-card .establishments-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 7, 7, 0.04) 0%, rgba(12, 7, 7, 0.42) 100%);
}

.establishments .establishments-grid .establishments-card .establishments-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.establishments .establishments-grid .establishments-card:hover .establishments-card-image img {
  transform: scale(1.08);
}

.establishments-index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-width: 54px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(18, 12, 11, 0.72);
  color: #fff0cf;
  border: 1px solid rgba(244, 210, 138, 0.22);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.establishments .establishments-grid .establishments-card .establishments-card-content {
  padding: 28px 28px 30px;
}

.establishments-card-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: #8d6325;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.establishments .establishments-grid .establishments-card .establishments-card-content h4 {
  margin-bottom: 12px;
  color: #4f3019;
  font-size: 2.05rem;
  font-weight: 700;
  line-height: 1;
}

.establishments .establishments-grid .establishments-card .establishments-card-content p {
  margin-bottom: 22px;
  color: rgba(47, 35, 31, 0.8);
  font-size: 0.96rem;
  line-height: 1.85;
}

.establishments-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8d6325 0%, #c7963e 100%);
  color: #fffaf1;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(141, 99, 37, 0.24);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.establishments-card-link:hover,
.establishments-card-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(141, 99, 37, 0.3);
  background: linear-gradient(135deg, #9d6f2a 0%, #d4a347 100%);
  color: #fffaf1;
}

@media (max-width: 1200px) {
  .hero-video {
    height: 540px;
  }

  .establishments .establishments-grid .establishments-card .establishments-card-content h4 {
    font-size: 1.8rem;
  }
}

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

  .hero .hero-text .hero-title {
    max-width: 100%;
  }

  .hero-media-shell {
    margin-top: 10px;
  }

  .hero-media-badge {
    left: 16px;
    bottom: 16px;
  }

  .about-gallery-shell {
    margin-top: 14px;
  }
}

@media (max-width: 768px) {
  .brand-mark-title {
    font-size: 1.55rem;
  }

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

  .topbar .language-switcher {
    gap: 8px;
  }

  .topbar .language-link {
    padding: 7px 10px;
  }

  .hero {
    align-items: flex-start;
    padding-top: 220px;
    padding-bottom: 90px;
  }

  .hero .hero-text .hero-description {
    font-size: 0.98rem;
    line-height: 1.8;
  }

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

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

  .hero .hero-text .hero-features {
    gap: 14px;
  }

  .hero .hero-text .hero-features .feature-item {
    width: 100%;
    min-width: 0;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat-card {
    flex: 1 1 140px;
    min-width: 0;
  }

  .hero-video {
    height: 440px;
  }

  .luxury-panel {
    padding: 28px 22px;
  }

  .about-story-badge {
    right: 14px;
    bottom: 14px;
  }

  .establishments .establishments-grid .establishments-card .establishments-card-image {
    height: 280px;
  }
}

@media (max-width: 576px) {

  section,
  .section {
    padding: 74px 0;
  }

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

  .hero-video {
    height: 360px;
  }

  .hero-media-shell {
    padding: 16px;
    border-radius: 26px;
  }

  .hero-video,
  .about-gallery-image {
    border-radius: 20px;
  }

  .hero-media-frame,
  .about-gallery-accent {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .establishments .establishments-grid .establishments-card .establishments-card-image {
    height: 240px;
  }

  .establishments .establishments-grid .establishments-card .establishments-card-content {
    padding: 22px 20px 24px;
  }
}