@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:
    radial-gradient(circle at top left, rgba(215, 189, 138, 0.14), transparent 28%),
    radial-gradient(circle at bottom right, rgba(120, 77, 36, 0.08), transparent 24%),
    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;
}

.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: #8f7350;
}

.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(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;
  opacity: 1;
  transform: none;
  background-color: var(--background-color);
  backdrop-filter: blur(18px);
}

.header .topbar {
  background: linear-gradient(90deg, rgba(23, 18, 15, 0.96), rgba(47, 33, 24, 0.88));
  min-height: 46px;
  padding: 6px 0;
  font-size: 14px;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(215, 189, 138, 0.18);
}

.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;
  color: rgba(245, 248, 250, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar .language-link img {
  width: 18px;
  height: 18px;
  border-radius: 0;
  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: #ffffff;
  background: rgba(173, 138, 75, 0.24);
  border-color: rgba(255, 255, 255, 0.28);
}

.header .branding {
  min-height: 82px;
  padding: 14px 0;
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.96), rgba(49, 36, 27, 0.92) 52%, rgba(23, 18, 15, 0.96)),
    rgba(23, 18, 15, 0.94);
  border-bottom: 1px solid rgba(215, 189, 138, 0.14);
}

.scrolled .header {
  box-shadow: 0 12px 40px rgba(23, 18, 15, 0.18);
  --background-color: rgba(246, 240, 230, 0.92);
  opacity: 1;
  transform: none;
}

.scrolled .header .branding {
  background:
    linear-gradient(90deg, rgba(23, 18, 15, 0.98), rgba(56, 41, 31, 0.96) 52%, rgba(23, 18, 15, 0.98)),
    rgba(23, 18, 15, 0.96);
}

@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 li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(173, 138, 75, 0.18);
  }

  .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;
    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(23, 18, 15, 0.98), rgba(49, 36, 27, 0.98));
    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 {
    color: #eef3f6;
    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 a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .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);
  background:
    radial-gradient(circle at top center, rgba(215, 189, 138, 0.16), transparent 26%),
    linear-gradient(180deg, #1e1713 0%, #120e0b 100%);
  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%);
  background: linear-gradient(90deg, transparent, rgba(215, 189, 138, 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(235, 242, 246, 0.78);
  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(235, 242, 246, 0.76);
  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(173, 138, 75, 0.14);
  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 {
  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(235, 242, 246, 0.82);
  font-size: 0.92rem;
  line-height: 1.7;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: rgba(255, 255, 255, 0.04);
  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;
  color: rgba(235, 242, 246, 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: #17120f;
  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(36, 27, 20, 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(36, 27, 20, 0.08);
}

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

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  color: #8f7350;
  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 {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 148px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at 20% 20%, rgba(215, 189, 138, 0.18), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(122, 86, 49, 0.14), transparent 22%),
    linear-gradient(140deg, #fbf5ec 0%, #f2e7d7 45%, #e6d4bc 100%);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-background-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 245, 236, 0.86) 0%, rgba(251, 245, 236, 0.58) 48%, rgba(251, 245, 236, 0.24) 100%),
    radial-gradient(circle at center, transparent, rgba(23, 18, 15, 0.08));
  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(215, 189, 138, 0.24);
}

.hero-orb-right {
  right: -60px;
  bottom: 18%;
  width: 220px;
  height: 220px;
  background: rgba(122, 86, 49, 0.18);
}

.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 .tagline {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent-strong);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero .hero-text .hero-title {
  margin-bottom: 18px;
  color: #241b14;
  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;
  color: rgba(77, 65, 53, 0.86);
  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 .hero-text .hero-actions .btn.btn-primary {
  background: transparent;
  border: 1px solid rgba(173, 138, 75, 0.38);
  color: #241b14;
  box-shadow: none;
}

.hero .hero-text .hero-actions .btn.btn-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(173, 138, 75, 0.7);
  background: rgba(255, 249, 241, 0.76);
}

.hero .hero-text .hero-actions .btn.btn-ghost {
  color: #241b14;
  border: 1px solid rgba(173, 138, 75, 0.16);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
}

.hero .hero-text .hero-actions .btn.btn-ghost:hover {
  color: #241b14;
  border-color: rgba(173, 138, 75, 0.34);
  background: rgba(255, 249, 241, 0.74);
}

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

.hero .hero-text .hero-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
  padding: 13px 15px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.78), rgba(255, 246, 235, 0.62));
  border: 1px solid rgba(173, 138, 75, 0.1);
  backdrop-filter: blur(14px);
}

.hero .hero-text .hero-features .feature-item i {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  color: #8f6b2f;
  font-size: 1rem;
  background: transparent;
  box-shadow: none;
}

.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(77, 65, 53, 0.5);
  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: #241b14;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.45;
}

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

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

.hero-stat-card {
  min-width: 170px;
  padding: 13px 15px;
  border-radius: 0;
  background: rgba(255, 250, 243, 0.58);
  border: 1px solid rgba(173, 138, 75, 0.1);
}

.hero-stat-value {
  display: block;
  margin-bottom: 4px;
  color: #241b14;
  font-family: var(--heading-font);
  font-size: 1.65rem;
  line-height: 1;
}

.hero-stat-label {
  color: rgba(77, 65, 53, 0.64);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.hero-showcase-stage {
  position: relative;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.64), rgba(241, 227, 206, 0.44)),
    rgba(255, 248, 239, 0.4);
  border: 1px solid rgba(173, 138, 75, 0.16);
  box-shadow: 0 26px 70px rgba(36, 27, 20, 0.12);
  overflow: hidden;
}

.hero-showcase-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.28), transparent 32%),
    radial-gradient(circle at top right, rgba(215, 189, 138, 0.18), transparent 28%);
}

.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(77, 65, 53, 0.52);
  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;
  background:
    radial-gradient(circle at 12% 18%, rgba(215, 189, 138, 0.12), transparent 24%),
    linear-gradient(180deg, #faf4ea 0%, #efe1cf 100%);
}

.luxury-panel {
  padding: 38px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 252, 246, 0.96), rgba(245, 235, 220, 0.92));
  border: 1px solid rgba(173, 138, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

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

.about .about-content p {
  color: rgba(77, 65, 53, 0.82);
  font-size: 1rem;
  line-height: 1.9;
}

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

.about-signature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 10px;
  color: #8f7350;
  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, #8f7350, transparent);
}

.about-gallery-shell {
  position: relative;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 24px;
  border-radius: 0;
  background: linear-gradient(145deg, rgba(255, 252, 246, 0.96), rgba(240, 228, 210, 0.86));
  border: 1px solid rgba(173, 138, 75, 0.08);
  box-shadow: var(--shadow-soft);
}

.about-gallery-accent {
  position: absolute;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(173, 138, 75, 0.28);
  border-radius: 0;
}

.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: 0;
  box-shadow: 0 16px 38px rgba(36, 27, 20, 0.14);
}

.about-story-badge {
  position: absolute;
  right: -18px;
  bottom: 38px;
  padding: 16px 18px;
  border-radius: 0;
  background: linear-gradient(135deg, #241b14, #8f6b2f);
  color: #ffffff;
  box-shadow: 0 18px 30px rgba(36, 27, 20, 0.18);
}

.about-story-badge span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 244, 225, 0.78);
  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(173, 138, 75, 0.1), transparent 22%),
    linear-gradient(180deg, #f7efe4 0%, #eadbc8 100%);
}

.establishments .section-title h2 {
  color: #241b14;
}

.establishments .section-title span {
  color: rgba(36, 27, 20, 0.08);
}

.establishments .section-title p {
  color: #8f7350;
}

.establishments .establishments-card {
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  min-height: 100%;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(243, 232, 217, 0.94));
  border: 1px solid rgba(173, 138, 75, 0.08);
  box-shadow: 0 22px 60px rgba(36, 27, 20, 0.14);
}

.establishments-carousel {
  padding-bottom: 84px;
}

.establishments-carousel .carousel-inner {
  overflow: hidden;
}

.establishments-carousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

.establishments .establishments-card .establishments-card-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
}

.establishments .establishments-card .establishments-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36, 27, 20, 0.02) 0%, rgba(36, 27, 20, 0.34) 100%);
}

.establishments .establishments-card .establishments-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.establishments-index {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-width: 54px;
  padding: 10px 12px;
  border-radius: 0;
  background: rgba(36, 27, 20, 0.78);
  color: #ffffff;
  border: 1px solid rgba(215, 189, 138, 0.22);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.establishments .establishments-card .establishments-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 38px 34px;
}

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

.establishments .establishments-card .establishments-card-content h4 {
  margin-bottom: 18px;
  color: #241b14;
  font-size: clamp(1.75rem, 2.4vw, 2.45rem);
  font-weight: 700;
  line-height: 1.05;
}

.establishments .establishments-card .establishments-card-content p {
  max-width: 30ch;
  margin-bottom: 24px;
  color: rgba(77, 65, 53, 0.82);
  font-size: 0.95rem;
  line-height: 1.75;
}

.establishments-indicators {
  position: absolute;
  right: auto;
  bottom: 26px;
  left: 48px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin: 0;
}

.establishments-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  margin: 0;
  background-color: rgba(36, 27, 20, 0.22);
  border: 0;
  opacity: 1;
}

.establishments-indicators .active {
  background-color: #241b14;
}

.establishments-carousel-controls {
  position: absolute;
  inset: 50% 0 auto 0;
  transform: translateY(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.establishments-carousel .carousel-control-prev,
.establishments-carousel .carousel-control-next {
  position: static;
  width: 58px;
  height: 58px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(173, 138, 75, 0.18);
  opacity: 1;
  pointer-events: auto;
}

.establishments-carousel .carousel-control-prev:hover,
.establishments-carousel .carousel-control-next:hover {
  background: #241b14;
}

.establishments-carousel .carousel-control-prev-icon,
.establishments-carousel .carousel-control-next-icon {
  width: 1.1rem;
  height: 1.1rem;
  filter: invert(25%) sepia(17%) saturate(964%) hue-rotate(166deg) brightness(92%) contrast(88%);
}

.establishments-carousel .carousel-control-prev:hover .carousel-control-prev-icon,
.establishments-carousel .carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

.establishments-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 0;
  background: transparent;
  border: 1px solid rgba(143, 107, 47, 0.58);
  color: #241b14;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.establishments-card-link:hover,
.establishments-card-link:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(36, 27, 20, 0.08);
  background-color: rgba(215, 189, 138, 0.12);
  border-color: #8f6b2f;
  color: #241b14;
}

@media (max-width: 1200px) {
  .establishments .establishments-card .establishments-card-content h4 {
    font-size: 1.65rem;
  }
}

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

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

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

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

  .establishments .establishments-card .establishments-card-image {
    min-height: 320px;
  }

  .establishments .establishments-card .establishments-card-content {
    padding: 28px 26px 108px;
  }
}

@media (max-width: 768px) {
  .header,
  .landing-page .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none !important;
    transition: none;
    z-index: 10040;
  }

  .header .branding,
  .landing-page .header .branding {
    min-height: 78px;
  }

  .mobile-nav-toggle {
    position: relative;
    z-index: 10041;
  }

  .main {
    padding-top: 118px;
  }

  .landing-page .main {
    padding-top: 0;
  }

  .header .topbar {
    min-height: 40px;
    padding: 4px 0;
  }

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

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

  .topbar .language-switcher {
    gap: 4px;
    flex-wrap: nowrap !important;
  }

  .topbar .language-link {
    gap: 5px;
    padding: 5px 7px;
    font-size: 0.7rem;
    line-height: 1;
  }

  .topbar .language-link img {
    width: 14px;
    height: 14px;
  }

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

  .landing-page .hero {
    min-height: 100svh;
    padding-top: 0;
  }

  .landing-page .hero-veil {
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.58) 0%, rgba(17, 17, 17, 0.68) 100%),
      linear-gradient(90deg, rgba(17, 17, 17, 0.6) 0%, rgba(17, 17, 17, 0.36) 100%);
  }

  .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-showcase-stage {
    padding: 14px;
  }

  .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;
  }

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

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

  .establishments-carousel {
    padding-bottom: 78px;
  }

  .establishments .establishments-card .establishments-card-image {
    min-height: 250px;
  }

  .establishments .establishments-card .establishments-card-content {
    min-height: 250px;
    padding: 24px 22px 96px;
  }

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

  .establishments .establishments-card .establishments-card-content p {
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .establishments-indicators {
    left: 24px;
    bottom: 20px;
  }

  .establishments-carousel-controls {
    inset: auto 0 14px 0;
    transform: none;
    justify-content: center;
    gap: 12px;
    pointer-events: auto;
  }

  .establishments-carousel .carousel-control-prev,
  .establishments-carousel .carousel-control-next {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 576px) {
  .topbar .language-switcher {
    gap: 3px;
  }

  .topbar .language-link {
    gap: 4px;
    padding: 4px 6px;
    font-size: 0.64rem;
  }

  .topbar .language-link img {
    width: 12px;
    height: 12px;
  }

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

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

  .about-gallery-image {
    border-radius: 0;
  }

  .about-gallery-accent {
    width: 72px;
    height: 72px;
    border-radius: 0;
  }

  .establishments .establishments-card .establishments-card-content {
    min-height: 230px;
    padding: 22px 18px 94px;
  }

  .establishments .establishments-card .establishments-card-image {
    min-height: 210px;
  }

  .establishments .establishments-card {
    max-width: 100%;
  }

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

.landing-page {
  background:
    linear-gradient(180deg, #f4efe7 0%, #efe8dd 100%);
}

.landing-page.luxury-page::before {
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(173, 138, 75, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(173, 138, 75, 0.03) 1px, transparent 1px);
}

.landing-page .header {
  --background-color: #f3ede4;
  backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(36, 27, 20, 0.08);
}

.landing-page .header .topbar {
  background: #1c1713;
  border-bottom: 1px solid #2f261f;
}

.landing-page .topbar .language-link {
  color: #f4ede4;
  background: #312720;
  border-color: #3a2f27;
}

.landing-page .topbar .language-link:hover,
.landing-page .topbar .language-link.is-active {
  color: #ffffff;
  background: #8f7350;
  border-color: #8f7350;
}

.landing-page .header .branding {
  background: #17120f;
  border-bottom: 1px solid #2b221c;
}

.landing-page .header .header-shell {
  max-width: 100%;
  width: 100%;
  padding-left: clamp(20px, 4vw, 56px);
  padding-right: clamp(20px, 4vw, 56px);
}

.landing-page .brand-mark {
  flex-shrink: 0;
  margin-right: 24px;
}

.landing-page .navmenu {
  margin-left: auto;
}

.landing-page .navmenu ul {
  justify-content: flex-end;
  gap: 6px;
}

.landing-page.scrolled .header {
  --background-color: #efe7db;
}

.landing-page.scrolled .header .branding {
  background: #17120f;
}

.landing-page .navmenu li:hover > a,
.landing-page .navmenu .active,
.landing-page .navmenu .active:focus {
  background: #2c221c;
}

.landing-page .hero {
  background: #17120f;
}

.landing-page .hero-orb {
  display: none;
}

.landing-page .hero-veil {
  display: block;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.72) 0%, rgba(17, 17, 17, 0.52) 42%, rgba(17, 17, 17, 0.7) 100%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.2) 0%, rgba(17, 17, 17, 0.46) 100%);
}

.landing-page .hero .hero-content {
  z-index: 2;
}

.landing-page .hero .hero-title {
  color: #ffffff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
}

.landing-page .establishments .establishments-card {
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(8px);
}

.landing-page .hero-orb {
  display: none;
}

.landing-page .hero .hero-text .hero-actions .btn.btn-primary,
.landing-page .hero .hero-text .hero-actions .btn.btn-ghost {
  background: #fbf7f1;
  border-color: #d4c4ac;
}

.landing-page .hero .hero-text .hero-actions .btn.btn-primary:hover,
.landing-page .hero .hero-text .hero-actions .btn.btn-ghost:hover {
  background: #f2eadf;
  border-color: #b89a6a;
}

.landing-page .hero .hero-text .hero-features .feature-item,
.landing-page .hero-stat-card,
.landing-page .luxury-panel,
.landing-page .about-gallery-shell,
.landing-page .establishments .establishments-card {
  background: #fbf8f3;
  border-color: #e2d6c4;
  box-shadow: 0 10px 30px rgba(36, 27, 20, 0.06);
}

.landing-page .hero .hero-text .hero-features .feature-item {
  backdrop-filter: none;
}

.landing-page .hero .hero-text .hero-features .feature-item .feature-text .label,
.landing-page .hero-stat-label,
.landing-page .hero .scroll-indicator .scroll-text,
.landing-page .about .about-content p,
.landing-page .establishments .establishments-card .establishments-card-content p {
  color: #6c5d4f;
}

.landing-page .about {
  background: #f6f1e8;
}

.landing-page .about-gallery-accent {
  border-color: #cfb894;
}

.landing-page .about-story-badge {
  background: #241b14;
  box-shadow: 0 12px 24px rgba(36, 27, 20, 0.12);
}

.landing-page .establishments {
  background: #efe7db;
}

.landing-page .establishments .establishments-card .establishments-card-image::after {
  background: linear-gradient(180deg, rgba(36, 27, 20, 0.02) 0%, rgba(36, 27, 20, 0.18) 100%);
}

.landing-page .establishments-index {
  background: #241b14;
  border-color: #8f7350;
}

.landing-page .establishments-indicators [data-bs-target] {
  background-color: #ccbba2;
}

.landing-page .establishments-card-link {
  background: #fbf7f1;
  border-color: #c5ab80;
}

.landing-page .establishments-card-link:hover,
.landing-page .establishments-card-link:focus {
  background-color: #f2eadf;
  box-shadow: 0 10px 20px rgba(36, 27, 20, 0.06);
}

.landing-page .food-mood {
  padding: 0;
  background:
    linear-gradient(rgba(27, 20, 16, 0.78), rgba(27, 20, 16, 0.78)),
    radial-gradient(circle at top left, rgba(191, 157, 102, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(191, 157, 102, 0.12), transparent 24%),
    linear-gradient(135deg, #1b1410 0%, #241b14 100%);
}

.landing-page .food-mood .container {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.landing-page .food-mood-shell {
  position: relative;
  width: 100%;
  min-height: 58vh;
  padding: 88px clamp(16px, 2vw, 28px);
  border: 0;
  box-shadow: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.landing-page .food-mood-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.08) 0, transparent 18%),
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.06) 0, transparent 16%),
    linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
}

.landing-page .food-mood-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 42px;
  text-align: center;
}

.landing-page .food-mood-intro h2 {
  margin: 0;
  color: #fff8ef;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1;
}

.landing-page .food-mood-intro p {
  margin: 14px 0 0;
  color: rgba(244, 233, 218, 0.82);
  font-size: 1rem;
}

.landing-page .food-mood-links {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1680px);
  margin: 0 auto;
}

.landing-page .food-mood-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
  min-height: 82px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(243, 230, 213, 0.88);
  color: #fff8ef;
  box-shadow: none;
  text-align: center;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.landing-page .food-mood-link:hover,
.landing-page .food-mood-link:focus {
  transform: translateY(-2px);
  background: rgba(207, 184, 148, 0.12);
  border-color: #cfb894;
  color: #fff8ef;
}

.landing-page .food-mood-link-title {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.landing-page .food-mood-link-meta {
  color: rgba(243, 230, 213, 0.72);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 991px) {
  .landing-page .food-mood-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 760px);
  }
}

@media (max-width: 576px) {
  .landing-page .food-mood-shell {
    min-height: 0;
    padding: 64px 20px;
  }

  .landing-page .food-mood-links {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .landing-page .food-mood-link {
    width: 100%;
    min-width: 0;
    min-height: 76px;
    padding: 16px 14px;
  }
}

.landing-page {
  --landing-dark: #1f1712;
  --landing-light: #f4ede3;
  --landing-accent: #b9925b;
  background: var(--landing-light);
  color: #111111;
}

.landing-page.luxury-page::before,
.landing-page .hero-veil,
.landing-page .hero-orb,
.landing-page .food-mood-shell::before,
.landing-page .establishments .establishments-card .establishments-card-image::after,
.landing-page .footer::before {
  display: none;
}

.landing-page .header,
.landing-page .header .topbar,
.landing-page .header .branding,
.landing-page .food-mood,
.landing-page .food-mood-shell,
.landing-page .footer,
.landing-page .footer .footer-bottom {
  background: var(--landing-dark);
  color: #ffffff;
  box-shadow: none;
  border-color: var(--landing-accent);
  backdrop-filter: none;
}

.landing-page .hero,
.landing-page .establishments {
  background: var(--landing-light);
  color: #111111;
}

.landing-page .hero .hero-title,
.landing-page .hero-stat-value,
.landing-page .establishments .section-title h2,
.landing-page .establishments .establishments-card .establishments-card-content h4 {
  color: #111111;
}

.landing-page .hero .hero-text .hero-title {
  color: #111111;
}

.landing-page .food-mood-intro h2,
.landing-page .food-mood-intro p,
.landing-page .brand-mark-title,
.landing-page .brand-mark-label,
.landing-page .navmenu a,
.landing-page .navmenu a:focus,
.landing-page .footer,
.landing-page .footer .footer-content p,
.landing-page .footer .footer-links ul a,
.landing-page .footer .footer-contact .contact-item .contact-info p,
.landing-page .footer .footer-contact .contact-item .contact-info a,
.landing-page .footer .footer-bottom .copyright p,
.landing-page .footer .footer-bottom .credits,
.landing-page .footer .footer-bottom .credits a,
.landing-page .food-mood-link,
.landing-page .food-mood-link-meta {
  color: #ffffff;
}

.landing-page .topbar .language-link,
.landing-page .navmenu li:hover > a,
.landing-page .navmenu .active,
.landing-page .navmenu .active:focus,
.landing-page .food-mood-link:hover,
.landing-page .food-mood-link:focus {
  background: var(--landing-accent);
  color: #ffffff;
  border-color: var(--landing-accent);
}

.landing-page .navmenu .navmenu-dropdown > ul {
  background: var(--landing-dark);
  border: 1px solid var(--landing-accent);
}

.landing-page .navmenu .navmenu-dropdown > ul a,
.landing-page .navmenu .navmenu-dropdown > ul a:focus {
  color: #ffffff;
}

.landing-page .navmenu .navmenu-dropdown > ul a:hover,
.landing-page .navmenu .navmenu-dropdown > ul .is-active {
  background: var(--landing-accent);
  color: #ffffff;
}

.landing-page .hero .hero-text .hero-features .feature-item,
.landing-page .hero-stat-card,
.landing-page .establishments .establishments-card,
.landing-page .establishments-carousel .carousel-control-prev,
.landing-page .establishments-carousel .carousel-control-next,
.landing-page .establishments-card-link {
  background: #ffffff;
  color: #111111;
  border: 1px solid var(--landing-accent);
  box-shadow: none;
}

.landing-page .hero .hero-text .hero-features .feature-item .feature-text .label,
.landing-page .hero-stat-label,
.landing-page .hero .hero-text .hero-description,
.landing-page .establishments .establishments-card .establishments-card-content p,
.landing-page .food-mood-link-meta {
  color: #111111;
}

.landing-page .hero .hero-text .hero-features .feature-item .feature-text .value,
.landing-page .hero .hero-text .hero-features .feature-item .feature-text a,
.landing-page .establishments-card-link,
.landing-page .establishments-card-link:hover,
.landing-page .establishments-card-link:focus {
  color: #111111;
}

.landing-page .hero .hero-text .hero-actions .btn.btn-primary,
.landing-page .hero .hero-text .hero-actions .btn.btn-ghost,
.landing-page .establishments-card-link,
.landing-page .food-mood-link {
  background: #ffffff;
  border: 1px solid var(--landing-accent);
  box-shadow: none;
}

.landing-page .hero .hero-text .hero-actions .btn.btn-primary:hover,
.landing-page .hero .hero-text .hero-actions .btn.btn-ghost:hover,
.landing-page .establishments-card-link:hover,
.landing-page .establishments-card-link:focus {
  background: var(--landing-accent);
  color: #ffffff;
  border-color: var(--landing-accent);
}

.landing-page .food-mood-link {
  position: relative;
  background: #ffffff;
  color: #111111;
  border: 1px solid var(--landing-accent);
  min-height: 80px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.landing-page .food-mood-link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--landing-accent);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.landing-page .food-mood-link > * {
  position: relative;
  z-index: 1;
}

.landing-page .food-mood-link-meta,
.landing-page .food-mood-intro p {
  color: #ffffff;
}

.landing-page .food-mood-link-title {
  color: #111111;
}

.landing-page .food-mood-link-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}

.landing-page .food-mood-link-logo img {
  display: block;
  width: auto;
  height: 52px;
  max-width: 148px;
  object-fit: contain;
  filter: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.landing-page .food-mood-link:hover,
.landing-page .food-mood-link:focus {
  color: #ffffff;
  border-color: var(--landing-accent);
  transform: translateY(-2px);
}

.landing-page .food-mood-link:hover::before,
.landing-page .food-mood-link:focus::before {
  transform: scaleY(1);
}

.landing-page .food-mood-link:hover .food-mood-link-title,
.landing-page .food-mood-link:focus .food-mood-link-title,
.landing-page .food-mood-link:hover .food-mood-link-meta,
.landing-page .food-mood-link:focus .food-mood-link-meta {
  color: #ffffff;
}

.landing-page .food-mood-link:hover .food-mood-link-logo img,
.landing-page .food-mood-link:focus .food-mood-link-logo img {
  transform: translateY(-1px) scale(1.02);
}

.landing-page .food-mood-link-meta {
  color: #111111;
}

.landing-page .footer h4,
.landing-page .footer .footer-content .logo span {
  color: #ffffff;
}

.landing-page .footer h4::after {
  display: none;
}

.landing-page .footer .footer-contact .contact-item .contact-icon {
  background: var(--landing-accent);
  border-color: var(--landing-accent);
}

.landing-page .footer .footer-contact .contact-item .contact-icon i {
  color: #ffffff;
}

.landing-page .footer .footer-bottom {
  border-top: 0;
}

.landing-page .spaces-showcase {
  padding-top: 48px;
  background: #ffffff;
}

.landing-page .spaces-showcase-intro {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.landing-page .spaces-showcase-intro h2 {
  margin-bottom: 16px;
  color: #111111;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

.landing-page .spaces-showcase-intro p {
  margin: 0;
  color: #111111;
  font-size: 1rem;
  line-height: 1.8;
}

.landing-page .spaces-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 72px;
  gap: 28px;
}

.landing-page .spaces-card {
  display: flex;
  flex-direction: column;
  grid-column: span 6;
  grid-row: span 4;
  min-height: 0;
  color: #111111;
  text-decoration: none;
}

.landing-page .spaces-card-media {
  position: relative;
  flex: 1;
  overflow: hidden;
  min-height: 0;
  background: #111111;
}

.landing-page .spaces-card:nth-child(1) {
  grid-column: 1 / span 5;
  grid-row: span 7;
}

.landing-page .spaces-card:nth-child(2) {
  grid-column: 6 / span 7;
  grid-row: span 7;
}

.landing-page .spaces-card:nth-child(3) {
  grid-column: 1 / span 7;
  grid-row: span 4;
}

.landing-page .spaces-card:nth-child(4) {
  grid-column: 8 / span 5;
  grid-row: span 4;
}

.landing-page .spaces-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.landing-page .spaces-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.16) 0%, rgba(17, 17, 17, 0.34) 100%);
  pointer-events: none;
}

.landing-page .spaces-card-title {
  display: block;
  padding: 14px 12px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .landing-feature-links {
  padding: 54px 0 42px;
  background: #ffffff;
}

.landing-page .landing-feature-links-intro {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.landing-page .landing-feature-links-intro h2 {
  margin: 0 0 16px;
  color: #111111;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

.landing-page .landing-feature-links-intro p {
  margin: 0;
  color: rgba(17, 17, 17, 0.78);
  font-size: 1rem;
  line-height: 1.8;
}

.landing-page .landing-feature-link-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  background: #111111;
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.1);
  transition: box-shadow 0.25s ease;
}

.landing-page .landing-feature-link-card:hover,
.landing-page .landing-feature-link-card:focus-visible {
  box-shadow: 0 22px 42px rgba(17, 17, 17, 0.14);
}

.landing-page .landing-feature-link-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.landing-page .landing-feature-link-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-page .landing-feature-link-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 14px;
  padding: clamp(22px, 2.8vw, 32px);
}

.landing-page .landing-feature-link-kicker {
  color: #cf8f4a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.landing-page .landing-feature-link-title {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.98;
}

.landing-page .landing-feature-link-copy {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.landing-page .landing-feature-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  gap: 10px;
  margin-top: auto;
  min-width: 164px;
  min-height: 56px;
  padding: 15px 26px;
  border: 2px solid #cf8f4a;
  border-radius: 0;
  background-color: transparent;
  background-image: linear-gradient(to bottom, #cf8f4a 0%, #cf8f4a 100%);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100% 0;
  color: #cf8f4a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 0.25s ease, background-size 0.32s ease, color 0.25s ease, border-color 0.25s ease;
}

.landing-page .landing-feature-link-card:hover .landing-feature-link-cta,
.landing-page .landing-feature-link-card:focus-visible .landing-feature-link-cta {
  background-size: 100% 100%;
  border-color: #cf8f4a;
  color: #ffffff;
  transform: translateY(-1px);
}

.landing-page .location-section {
  padding: 0 0 96px;
  background: #ffffff;
}

.landing-page .location-section-title {
  width: min(100%, 1680px);
  margin: 0 auto;
  padding: 32px clamp(22px, 4vw, 56px) 28px;
  text-align: center;
}

.landing-page .location-section-title h2 {
  margin: 0 0 12px;
  color: #111111;
  font-size: clamp(2.3rem, 4vw, 3.4rem);
}

.landing-page .location-section-title p {
  margin: 0;
  color: #111111;
  font-size: 1rem;
  line-height: 1.8;
}

.landing-page .location-map-shell {
  width: 100%;
}

.landing-page .location-map-shell iframe {
  display: block;
  width: 100%;
  height: min(72vh, 680px);
  min-height: 420px;
}

@media (max-width: 991px) {
  .landing-page .spaces-showcase-grid {
    grid-auto-rows: auto;
    gap: 18px;
  }

  .landing-page .spaces-card,
  .landing-page .spaces-card:nth-child(1),
  .landing-page .spaces-card:nth-child(2),
  .landing-page .spaces-card:nth-child(3),
  .landing-page .spaces-card:nth-child(4) {
    grid-column: span 12;
    grid-row: span 1;
    min-height: auto;
  }

  .landing-page .spaces-card-media {
    min-height: 300px;
  }

  .landing-page .location-map-shell iframe {
    height: 54vh;
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .landing-page .spaces-showcase {
    padding-top: 28px;
  }

  .landing-page .spaces-showcase-intro {
    margin-bottom: 28px;
  }

  .landing-page .spaces-card,
  .landing-page .spaces-card:nth-child(1),
  .landing-page .spaces-card:nth-child(2),
  .landing-page .spaces-card:nth-child(3),
  .landing-page .spaces-card:nth-child(4) {
    min-height: auto;
  }

  .landing-page .spaces-card-media {
    min-height: 220px;
  }

  .landing-page .spaces-card-title {
    padding-top: 10px;
    font-size: 0.92rem;
  }

  .landing-page .landing-feature-links {
    padding: 36px 0 28px;
  }

  .landing-page .landing-feature-links-intro {
    margin-bottom: 28px;
  }

  .landing-page .location-section {
    padding-bottom: 72px;
  }

  .landing-page .location-section-title {
    padding: 24px 16px 22px;
  }

}
