@charset "UTF-8";
/*--------------------------------------------------------------
# Font & Color Variables — Luxury Coffee & Apartments
--------------------------------------------------------------*/
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --heading-font: "Poppins", system-ui, sans-serif;
  --nav-font: "Poppins", system-ui, sans-serif;
}

:root {
  --background-color: #0c0a09;
  --default-color: #e7e5e4;
  --heading-color: #fafaf9;
  --accent-color: #d4af37;
  --accent-glow: rgba(212, 175, 55, 0.55);
  --surface-color: rgba(28, 25, 23, 0.72);
  --contrast-color: #0c0a09;
  --beige-warm: #d6c4a8;
  --beige-muted: #a8a29e;
  --glass-border: rgba(255, 255, 255, 0.12);
  --neon-subtle: 0 0 24px rgba(212, 175, 55, 0.25), 0 0 48px rgba(212, 175, 55, 0.08);
}

:root {
  --nav-color: rgba(250, 250, 249, 0.85);
  --nav-hover-color: #f5e6b8;
  --nav-mobile-background-color: #1c1917;
  --nav-dropdown-background-color: #1c1917;
  --nav-dropdown-color: #e7e5e4;
  --nav-dropdown-hover-color: #d4af37;
}

.light-background {
  --background-color: #f5f0e8;
  --default-color: #292524;
  --heading-color: #0c0a09;
  --surface-color: rgba(255, 255, 255, 0.85);
  --nav-color: #44403c;
  --nav-hover-color: #b45309;
  --nav-mobile-background-color: #fafaf9;
  --nav-dropdown-background-color: #fafaf9;
  --nav-dropdown-color: #292524;
  --nav-dropdown-hover-color: #b45309;
}

.dark-background {
  --background-color: #0c0a09;
  --default-color: #e7e5e4;
  --heading-color: #fafaf9;
  --surface-color: rgba(28, 25, 23, 0.85);
  --contrast-color: #0c0a09;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: 400;
  letter-spacing: 0.01em;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: transparent;
  padding: 20px 0;
  transition: background 0.5s ease, padding 0.4s ease;
  z-index: 997;
}
.header .header-container {
  background: rgba(28, 25, 23, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 8px 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), var(--neon-subtle);
  transition: all 0.45s ease;
}
.header .logo {
  line-height: 1;
}
.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}
.header .logo h1,
.header .logo .sitename {
  font-size: clamp(0.72rem, 1.1vw + 0.55rem, 0.95rem);
  margin: 0;
  padding-left: 5px;
  font-weight: 600;
  color: var(--heading-color);
  font-family: var(--heading-font);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 220px;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .header .logo h1,
  .header .logo .sitename {
    max-width: none;
  }
}
.header .header-social-links {
  padding-right: 15px;
}
.header .header-social-links a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  padding-left: 10px;
  display: inline-block;
  transition: 0.35s ease;
  font-size: 17px;
}
.header .header-social-links a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 18px var(--accent-glow);
  transform: translateY(-2px);
}
.header .header-social-links a i {
  line-height: 0px;
}
@media (max-width: 1199px) {
  .header {
    z-index: 10050;
    padding: 10px 0 12px;
    isolation: isolate;
  }
  .header .header-container {
    margin-left: 12px;
    margin-right: 12px;
    padding: 12px 14px 12px 16px;
    min-height: 56px;
    align-items: center;
    border-radius: 20px;
    background: rgba(12, 10, 9, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 175, 55, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }
  .header .logo {
    order: 1;
    flex: 1;
    min-width: 0;
    margin-right: 10px;
  }
  .header .logo .sitename {
    color: #fafaf9;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
    max-width: 100%;
    font-size: clamp(0.58rem, 2.8vw, 0.72rem);
    letter-spacing: 0.05em;
    line-height: 1.25;
    display: block;
  }
  .header .header-social-links {
    order: 2;
  }
  .header .navmenu {
    order: 3;
    flex-shrink: 0;
  }
}

body.scrolled .header {
  padding: 12px 0;
}
body.scrolled .header .header-container {
  background: rgba(12, 10, 9, 0.82);
  border-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.12);
}

/* backdrop-filter on the bar creates a containing block: fixed menu was trapped inside the pill */
@media (max-width: 1199px) {
  body.mobile-nav-active .header {
    z-index: 10060;
    isolation: auto;
    overflow: visible !important;
    transform: none !important;
    filter: none !important;
  }
  body.mobile-nav-active .header .header-container {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    overflow: visible !important;
    transform: none !important;
    filter: none !important;
  }
  body.mobile-nav-active .header .logo .sitename {
    color: #fafaf9 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9), 0 0 20px rgba(0, 0, 0, 0.5);
  }
}
/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }
  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  .navmenu li {
    position: relative;
  }
  .navmenu > ul > li {
    white-space: nowrap;
    padding: 0;
    margin: 0 4px;
  }
  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 12px 20px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    border-radius: 0;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 10px;
    line-height: 0;
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  .navmenu > ul > li > a::before, .navmenu > ul > li > a::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    transition: all 0.3s ease;
    opacity: 0;
  }
  .navmenu > ul > li > a::before {
    top: 0;
    left: 0;
    border-top: 2px solid var(--accent-color);
    border-left: 2px solid var(--accent-color);
  }
  .navmenu > ul > li > a::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
  }
  .navmenu > ul > li > a:hover,
  .navmenu > ul > li > .active,
  .navmenu > ul > li > .active:focus {
    color: var(--nav-hover-color);
  }
  .navmenu > ul > li > a:hover::before, .navmenu > ul > li > a:hover::after,
  .navmenu > ul > li > .active::before,
  .navmenu > ul > li > .active::after,
  .navmenu > ul > li > .active:focus::before,
  .navmenu > ul > li > .active:focus::after {
    opacity: 1;
  }
  .navmenu > ul > li:hover > a i {
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    margin: 0;
    padding: 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 0;
    top: calc(100% + 10px);
    opacity: 0;
    transform: perspective(600px) rotateX(-10deg);
    transform-origin: top center;
    transition: all 0.35s ease;
    border-radius: 0;
    z-index: 99;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--accent-color);
    min-width: 230px;
    overflow: visible;
  }
  .navmenu .dropdown ul li {
    min-width: 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
  }
  .navmenu .dropdown ul li:last-child {
    border-bottom: none;
  }
  .navmenu .dropdown ul a {
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 400;
    color: var(--nav-dropdown-color);
    border-radius: 0;
    position: relative;
    overflow: hidden;
  }
  .navmenu .dropdown ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  .navmenu .dropdown ul a i {
    font-size: 10px;
  }
  .navmenu .dropdown ul a:hover {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding-left: 30px;
  }
  .navmenu .dropdown ul a:hover::before {
    transform: translateX(0);
  }
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding-left: 30px;
  }
  .navmenu .dropdown ul .active::before,
  .navmenu .dropdown ul .active:hover::before,
  .navmenu .dropdown ul li:hover > a::before {
    transform: translateX(0);
  }
  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    transform: perspective(600px) rotateX(0deg);
    visibility: visible;
  }
  .navmenu .dropdown .dropdown ul {
    top: -3px;
    left: auto;
    right: 100%;
    visibility: hidden;
    transform: perspective(600px) rotateY(-10deg);
    transform-origin: right center;
    border-top: none;
    border-left: none;
    border-right: 3px solid var(--accent-color);
  }
  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: -3px;
    left: auto;
    right: 100%;
    transform: perspective(600px) rotateY(0deg);
    visibility: visible;
  }
}
/* Mobile Navigation — glass bar, high contrast, full-screen sheet */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    appearance: none;
    -webkit-appearance: none;
    color: var(--accent-color);
    font-size: 1.35rem;
    line-height: 0;
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 35%);
    background: linear-gradient(145deg, rgba(212, 175, 55, 0.22), rgba(212, 175, 55, 0.06));
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.18);
    touch-action: manipulation;
  }
  .mobile-nav-toggle i {
    pointer-events: none;
  }
  .mobile-nav-toggle:hover {
    color: #fff;
    border-color: var(--accent-color);
    background: rgba(212, 175, 55, 0.35);
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.35);
  }
  .navmenu {
    padding: 0;
    z-index: 10055;
    position: relative;
  }
  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    padding: 12px 0;
    margin: 0;
    border-radius: 20px;
    background: rgba(18, 16, 14, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    overflow-y: auto;
    max-height: min(72vh, 520px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 10056;
  }
  .navmenu a,
  .navmenu a:focus {
    color: #f5f5f4;
    padding: 16px 22px;
    font-family: var(--nav-font);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    position: relative;
  }
  .navmenu a::before,
  .navmenu a:focus::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
  }
  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    transition: all 0.3s ease;
  }
  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
  }
  .navmenu a:hover {
    color: var(--nav-dropdown-hover-color);
    padding-left: 32px;
  }
  .navmenu a:hover::before {
    transform: scaleY(1);
  }
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
    padding-left: 32px;
  }
  .navmenu .active::before,
  .navmenu .active:focus::before {
    transform: scaleY(1);
  }
  .navmenu .active i,
  .navmenu .active:focus i {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }
  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 0;
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 30%);
    border-top: none;
    box-shadow: inset 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease-in-out;
    inset: unset;
  }
  .navmenu .dropdown ul a {
    padding: 16px 24px 16px 40px;
    font-size: 15px;
    border-bottom-color: color-mix(in srgb, var(--default-color), transparent 94%);
  }
  .navmenu .dropdown ul a::before {
    left: 24px;
    width: 3px;
  }
  .navmenu .dropdown ul a:hover {
    padding-left: 48px;
  }
  .navmenu .dropdown ul .active,
  .navmenu .dropdown ul .active:focus {
    padding-left: 48px;
  }
  .navmenu .dropdown ul ul {
    background-color: color-mix(in srgb, var(--nav-dropdown-background-color), transparent 50%);
  }
  .navmenu .dropdown ul ul a {
    padding-left: 56px;
  }
  .navmenu .dropdown ul ul a::before {
    left: 40px;
  }
  .navmenu .dropdown ul ul a:hover {
    padding-left: 64px;
  }
  .navmenu .dropdown ul ul .active,
  .navmenu .dropdown ul ul .active:focus {
    padding-left: 64px;
  }
  .navmenu .dropdown > .dropdown-active {
    display: block;
  }
  .mobile-nav-active {
    overflow: hidden;
  }
  .mobile-nav-active .mobile-nav-toggle {
    color: #0c0a09;
    border-color: var(--accent-color);
    background: linear-gradient(145deg, #e8d48a, #d4af37);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.45);
    position: fixed;
    font-size: 1.35rem;
    top: max(16px, env(safe-area-inset-top, 0px));
    right: max(16px, env(safe-area-inset-right, 0px));
    margin-right: 0;
    z-index: 10080;
  }
  .mobile-nav-active .mobile-nav-toggle:hover {
    color: #0c0a09;
    filter: brightness(1.05);
  }
  .mobile-nav-active .navmenu {
    position: fixed;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: max(88px, calc(env(safe-area-inset-top, 0px) + 72px));
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
    padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
    background: rgba(8, 7, 6, 0.97);
    transition: background 0.35s ease;
    z-index: 10070;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    pointer-events: auto;
  }
  .mobile-nav-active .navmenu > ul {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    inset: auto;
    top: auto;
    left: auto;
    right: auto;
    max-height: none;
    flex: 0 0 auto;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 12px 0;
    border-radius: 24px;
    background: rgba(22, 20, 18, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
    list-style: none;
    z-index: 1;
    pointer-events: auto;
  }
  .mobile-nav-active .navmenu > ul li {
    display: list-item !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .mobile-nav-active .navmenu > ul a {
    color: #fafaf9 !important;
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.25);
  }
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}
.footer .copyright p {
  margin-bottom: 0;
}
.footer .social-links {
  margin-top: 20px;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin: 0 5px;
  transition: 0.3s;
}
.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}
.footer .credits {
  margin-top: 10px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}
#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 18px;
  bottom: 18px;
  z-index: 99999;
  background: linear-gradient(145deg, #e8d48a, #d4af37);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
  transition: all 0.4s ease;
}
.scroll-top i {
  font-size: 26px;
  color: var(--contrast-color);
  line-height: 0;
}
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.45), 0 0 24px rgba(212, 175, 55, 0.2);
  color: var(--contrast-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Cookie consent banner (GDPR-style)
--------------------------------------------------------------*/
.cookie-consent {
  --cookie-bg: rgba(12, 10, 9, 0.97);
  --cookie-border: rgba(212, 175, 55, 0.28);
  position: fixed;
  z-index: 110000;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px max(16px, env(safe-area-inset-right, 0px)) calc(18px + env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.cookie-consent.cookie-consent--visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.cookie-consent.cookie-consent--preferences.cookie-consent--visible .cookie-consent__bar {
  display: none;
}
.cookie-consent__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  pointer-events: auto;
  z-index: 0;
}
.cookie-consent__bar-inner, .cookie-consent__panel-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  background: var(--cookie-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--cookie-border);
  border-radius: 20px;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.06) inset, var(--neon-subtle);
}
.cookie-consent__text {
  color: rgba(250, 250, 249, 0.88);
  font-size: clamp(0.85rem, 2.4vw, 0.93rem);
  line-height: 1.55;
  margin-bottom: 0;
}
.cookie-consent__text strong {
  color: var(--heading-color);
  font-weight: 600;
}
.cookie-consent__text a {
  color: var(--accent-color);
  text-underline-offset: 3px;
}
.cookie-consent__text a:hover {
  color: color-mix(in srgb, var(--accent-color), #fff 15%);
}
.cookie-consent__actions {
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-consent__actions button {
  font-family: inherit;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  touch-action: manipulation;
}
.cookie-consent__actions button:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
.cookie-consent__actions .cookie-consent__btn-outline {
  background: transparent;
  color: rgba(250, 250, 249, 0.9);
}
.cookie-consent__actions .cookie-consent__btn-outline:hover {
  border-color: var(--accent-color);
  background: rgba(212, 175, 55, 0.08);
}
.cookie-consent__actions .cookie-consent__btn-accent {
  background: linear-gradient(145deg, #e8d48a, #d4af37);
  border-color: var(--accent-color);
  color: #0c0a09;
}
.cookie-consent__actions .cookie-consent__btn-accent:hover {
  filter: brightness(1.06);
}
.cookie-consent.cookie-consent--preferences.cookie-consent--visible {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding-top: max(24px, env(safe-area-inset-top, 0px));
  padding-bottom: max(24px, env(safe-area-inset-bottom, 0px));
}
.cookie-consent__panel {
  display: none;
  max-height: min(76vh, 640px);
  overflow-y: auto;
  overflow-x: hidden;
  pointer-events: auto;
  padding-left: max(16px, env(safe-area-inset-left, 0px));
  padding-right: max(16px, env(safe-area-inset-right, 0px));
}
.cookie-consent.cookie-consent--preferences .cookie-consent__panel {
  display: block;
  max-height: none;
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  overflow-y: auto;
  padding-bottom: 8px;
}
.cookie-consent__panel-heading {
  color: var(--heading-color);
  font-size: clamp(1.05rem, 2.8vw, 1.2rem);
  font-weight: 600;
  font-family: var(--heading-font), system-ui, sans-serif;
  margin-bottom: 8px;
}
.cookie-consent__category {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  margin-top: 16px;
}
.cookie-consent__category:first-of-type {
  border-top: none;
  padding-top: 8px;
  margin-top: 0;
}
.cookie-consent__category-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.cookie-consent__category-head strong {
  color: rgba(252, 250, 248, 0.95);
  font-size: 0.9375rem;
  display: block;
  margin-bottom: 6px;
}
.cookie-consent__category-head span {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-color);
}
.cookie-consent__category-note {
  color: rgba(231, 229, 228, 0.72);
  font-size: 0.813rem;
  line-height: 1.5;
  margin: 10px 0 0;
}
.cookie-consent__category-note.small {
  font-size: 0.76rem;
  opacity: 0.95;
  margin-top: 6px;
}
.cookie-consent {
  /* Toggle */
}
.cookie-consent__switch {
  position: relative;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}
.cookie-consent__switch input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  z-index: 1;
}
.cookie-consent__switch input:disabled {
  cursor: not-allowed;
}
.cookie-consent__switch input:disabled + span {
  opacity: 0.65;
}
.cookie-consent__switch input:focus-visible + span {
  outline: 2px solid var(--accent-color);
  outline-offset: 4px;
  border-radius: 999px;
}
.cookie-consent__switch input:checked + span {
  background: linear-gradient(145deg, #d4af37, #b8922d);
}
.cookie-consent__switch input:checked + span::after {
  transform: translateX(20px);
}
.cookie-consent__switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.22s ease;
  pointer-events: none;
}
.cookie-consent__switch span::after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: #fafaf9;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.22s ease;
}
.cookie-consent__panel-actions {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 10px;
}
.cookie-consent__legal-hint {
  font-size: 0.73rem;
  color: rgba(231, 229, 228, 0.55);
  line-height: 1.45;
  margin-top: 14px;
}

body.cookie-consent-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent .cookie-consent__actions button,
  .cookie-consent span::after {
    transition: none;
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}
.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}
.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 20px 0;
}
.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}
.page-title nav ol li + li {
  padding-left: 10px;
}
.page-title nav ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 72px;
  }
}
/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Luxury one-page — Coffee Bar & Apartments
--------------------------------------------------------------*/
/* —— Hero —— */
.hero-lux {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 100px;
  overflow: hidden;
  /* Fullscreen hero carousel (background layer) */
}
.hero-lux .hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100vh;
}
.hero-lux .hero-carousel .carousel-inner {
  height: 100%;
  min-height: 100vh;
}
.hero-lux .hero-carousel .carousel-item {
  min-height: 100vh;
  height: 100%;
  position: relative;
}
.hero-lux .hero-carousel .hero-slide-bg {
  position: absolute;
  inset: 0;
  background-color: #0c0a09;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero-lux .hero-carousel .hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12, 10, 9, 0.88) 0%, rgba(12, 10, 9, 0.45) 42%, rgba(12, 10, 9, 0.9) 100%);
}
.hero-lux .hero-carousel .hero-carousel-indicators {
  margin-bottom: 0;
  bottom: 5.5rem;
  z-index: 3;
  gap: 6px;
}
.hero-lux .hero-carousel .hero-carousel-indicators [type=button] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.35);
  opacity: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}
.hero-lux .hero-carousel .hero-carousel-indicators [type=button].active {
  background-color: var(--accent-color);
  transform: scale(1.25);
  box-shadow: 0 0 16px var(--accent-glow);
}
.hero-lux .hero-carousel .hero-carousel-control {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  background: rgba(12, 10, 9, 0.45);
  border: 1px solid var(--glass-border);
  opacity: 1;
  z-index: 3;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hero-lux .hero-carousel .hero-carousel-control:hover {
  background: rgba(212, 175, 55, 0.2);
  box-shadow: var(--neon-subtle);
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}
.hero-lux .hero-carousel .hero-carousel-control .carousel-control-prev-icon,
.hero-lux .hero-carousel .hero-carousel-control .carousel-control-next-icon {
  width: 1.25rem;
  height: 1.25rem;
  filter: invert(1);
}
.hero-lux .hero-carousel .carousel-control-prev.hero-carousel-control {
  left: 1rem;
}
.hero-lux .hero-carousel .carousel-control-next.hero-carousel-control {
  right: 1rem;
}
.hero-lux .hero-glow-orb {
  position: absolute;
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.22) 0%, transparent 70%);
  top: 15%;
  right: 5%;
  pointer-events: none;
  z-index: 2;
  filter: blur(4px);
}
.hero-lux .hero-inner {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 920px;
}
.hero-lux .hero-eyebrow {
  font-family: var(--heading-font);
  font-size: 0.8rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--beige-warm);
  margin-bottom: 1.25rem;
  opacity: 0.95;
}
.hero-lux .hero-title {
  font-size: clamp(2.25rem, 6vw, 4.25rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fafaf9 0%, var(--beige-warm) 50%, #d4af37 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.15));
}
.hero-lux .hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-weight: 400;
}
.hero-lux .scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--beige-muted);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: hero-bounce 2.2s ease-in-out infinite;
}
.hero-lux .scroll-hint i {
  font-size: 1.25rem;
  color: var(--accent-color);
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

@keyframes hero-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.85;
  }
  50% {
    transform: translateX(-50%) translateY(8px);
    opacity: 1;
  }
}
/* —— Buttons —— */
.btn-lux-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 32px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--contrast-color);
  background: linear-gradient(135deg, #e8d48a 0%, #d4af37 45%, #b8860b 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35), 0 0 32px rgba(212, 175, 55, 0.2);
  transition: transform 0.35s ease, box-shadow 0.35s ease, filter 0.35s ease;
}
.btn-lux-primary:hover {
  color: var(--contrast-color);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(212, 175, 55, 0.5), 0 0 48px rgba(212, 175, 55, 0.28);
  filter: brightness(1.08);
}

.btn-lux-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading-color);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}
.btn-lux-outline:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: var(--neon-subtle);
  background: rgba(212, 175, 55, 0.08);
}

/* —— Section titles —— */
.section-title-lux {
  text-align: center;
  padding-bottom: 48px;
  max-width: 640px;
  margin: 0 auto;
}
.section-title-lux .eyebrow {
  font-family: var(--heading-font);
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
  text-shadow: 0 0 20px var(--accent-glow);
}
.section-title-lux h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}
.section-title-lux p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.65;
}

.light-background .section-title-lux .eyebrow {
  text-shadow: none;
}

/* —— About split —— */
.about-split {
  align-items: center;
}
.about-split .about-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px var(--glass-border);
}
.about-split .about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-split .about-visual:hover img {
  transform: scale(1.05);
}
.about-split .about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}
.about-split .about-glass {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .about-split .about-glass {
    padding: 2rem 2rem 2rem 3rem;
  }
}
.about-split .lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 8%);
}

.glass-panel {
  background: var(--surface-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2), var(--neon-subtle);
}

.light-background .glass-panel {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.dark-background .glass-panel {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), var(--neon-subtle);
}

/* —— Coffee cards (photo background, no icons) —— */
.coffee-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.75rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  background-color: #1c1917;
}
.coffee-card .coffee-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1c1917;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.coffee-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(185deg, rgba(12, 10, 9, 0.15) 0%, rgba(12, 10, 9, 0.55) 40%, rgba(12, 10, 9, 0.92) 100%);
}
.coffee-card h3 {
  position: relative;
  z-index: 2;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: #fafaf9;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.65);
}
.coffee-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(250, 250, 249, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}
.coffee-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--accent-color), transparent 55%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(212, 175, 55, 0.12);
}

.light-background .coffee-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 40px rgba(180, 83, 9, 0.08);
}

/* —— Apartments carousel wrap —— */
.apartment-showcase .carousel-item img {
  border-radius: 20px;
  max-height: 480px;
  object-fit: cover;
  width: 100%;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}
.apartment-showcase .carousel-control-prev,
.apartment-showcase .carousel-control-next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(12, 10, 9, 0.65);
  border: 1px solid var(--glass-border);
  opacity: 1;
  transition: all 0.3s ease;
}
.apartment-showcase .carousel-control-prev:hover,
.apartment-showcase .carousel-control-next:hover {
  background: rgba(212, 175, 55, 0.25);
  box-shadow: var(--neon-subtle);
}
.apartment-showcase .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent-color);
  opacity: 0.35;
  border: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.apartment-showcase .carousel-indicators [data-bs-target].active {
  opacity: 1;
  transform: scale(1.2);
  box-shadow: 0 0 12px var(--accent-glow);
}
.apartment-showcase .feature-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--glass-border);
  font-size: 0.875rem;
  margin: 6px 6px 6px 0;
  transition: all 0.3s ease;
}
.apartment-showcase .feature-pill i {
  color: var(--accent-color);
  filter: drop-shadow(0 0 6px var(--accent-glow));
}
.apartment-showcase .feature-pill:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
}
.apartment-showcase .apartment-reservation-mail {
  color: var(--accent-color);
}
.apartment-showcase .apartment-reservation-mail:hover {
  color: color-mix(in srgb, var(--accent-color), var(--heading-color) 15%);
}

.light-background .apartment-showcase .feature-pill {
  background: rgba(12, 10, 9, 0.04);
}

/* —— Gallery —— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.gallery-grid .gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  border: 1px solid var(--glass-border);
}
.gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid .gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.85), transparent 55%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  transition: opacity 0.4s ease;
}
.gallery-grid .gallery-item .gallery-overlay i {
  font-size: 1.5rem;
  color: var(--accent-color);
  filter: drop-shadow(0 0 12px var(--accent-glow));
}
.gallery-grid .gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-grid .gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-grid .gallery-item:hover {
  box-shadow: 0 0 32px rgba(212, 175, 55, 0.2);
}

/* —— Location —— */
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), var(--neon-subtle);
  min-height: 380px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(0.35) contrast(1.05);
  transition: filter 0.5s ease;
}
.map-wrap:hover iframe {
  filter: grayscale(0) contrast(1);
}

.contact-card-lux {
  background: var(--surface-color);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  height: 100%;
  transition: box-shadow 0.4s ease;
}
.contact-card-lux:hover {
  box-shadow: var(--neon-subtle);
}
.contact-card-lux a {
  color: var(--default-color);
}
.contact-card-lux a:hover {
  color: var(--accent-color);
}
.contact-card-lux i {
  color: var(--accent-color);
  margin-right: 10px;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

/* —— Contact form —— */
.form-lux .form-control,
.form-lux .form-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--heading-color);
  padding: 14px 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-lux .form-control:focus,
.form-lux .form-select:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: color-mix(in srgb, var(--accent-color), transparent 40%);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  color: var(--heading-color);
}
.form-lux .form-control::placeholder,
.form-lux .form-select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 45%);
}
.form-lux textarea.form-control {
  min-height: 140px;
}

.light-background .form-lux .form-control {
  background: #fff;
  color: #292524;
}
.light-background .form-lux .form-control:focus {
  color: #292524;
}

/* —— Footer extended —— */
.footer-lux {
  padding: 56px 0 32px;
  border-top: 1px solid var(--glass-border);
}
.footer-lux .footer-brand {
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: clamp(0.8rem, 2vw, 0.95rem);
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.35;
}
.footer-lux .hours-block {
  font-size: 0.9rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}
.footer-lux .social-links a {
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}
.footer-lux .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
}

/* —— Nav polish (luxury) —— */
@media (min-width: 1200px) {
  .navmenu > ul > li > a {
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
  }
}
/* —— Section spacing —— */
section.section-lux {
  padding: 88px 0;
  scroll-margin-top: 100px;
}

@media (max-width: 1199px) {
  section.section-lux {
    scroll-margin-top: 72px;
  }
}
/* —— Privacy policy page —— */
.privacy-page .privacy-document {
  max-width: 52rem;
}
.privacy-page .privacy-document .lead {
  color: rgba(231, 229, 228, 0.85);
}
.privacy-page .privacy-document section {
  margin-top: 2.5rem;
}
.privacy-page .privacy-document h2 {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.85rem;
}
.privacy-page .privacy-document p,
.privacy-page .privacy-document li {
  font-size: 0.93rem;
  line-height: 1.68;
  color: rgba(231, 229, 228, 0.82);
}
.privacy-page .privacy-document ul {
  padding-left: 1.2rem;
}
.privacy-page .privacy-document ul li + li {
  margin-top: 0.35rem;
}
.privacy-page .privacy-document .cookie-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(22, 20, 18, 0.6);
}
.privacy-page .privacy-document .cookie-table-wrapper table {
  width: 100%;
  margin: 0;
  font-size: 0.8rem;
}
.privacy-page .privacy-document .cookie-table-wrapper table th,
.privacy-page .privacy-document .cookie-table-wrapper table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}
.privacy-page .privacy-document .cookie-table-wrapper table th:first-child,
.privacy-page .privacy-document .cookie-table-wrapper table td:first-child {
  font-weight: 600;
  color: var(--accent-color);
  white-space: nowrap;
}
.privacy-page .privacy-document .cookie-table-wrapper table th {
  text-align: left;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(250, 250, 249, 0.6);
}
.privacy-page .privacy-document code {
  font-size: 0.85em;
  color: rgba(212, 175, 55, 0.95);
}
.privacy-page .privacy-document strong {
  color: rgba(252, 250, 248, 0.95);
}
.privacy-page .privacy-document aside.notice-role {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(231, 229, 228, 0.65);
  border-left: 3px solid var(--accent-color);
  padding: 12px 0 12px 16px;
  margin-top: 2rem;
}
.privacy-page .privacy-document aside.notice-role p:last-child {
  margin-bottom: 0;
}

.footer-lux .footer-legal a {
  color: rgba(250, 250, 249, 0.6);
  text-decoration: none;
}
.footer-lux .footer-legal a:hover {
  color: var(--accent-color);
  text-underline-offset: 3px;
  text-decoration: underline;
}
