:root {
  --bg-color: #f3e8e6;
  --text: #5d4b49;
  --text-soft: #776462; 
  --btn: #b89476;
  --btn-hover: #a98367; 
  --white: #ffffff; 
}

body { 
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg-color);
  color: var(--text);
  overflow-x: hidden;
}

.container {
  max-width: 1450px;
}

h1,
h2,  
h3,
h4,
.nav-link,
.tagline,
.bottom-cities {
  font-family: 'Cormorant Garamond', serif;
}

.background-layer {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: url('../img/background2.png') center center / cover no-repeat;
  filter: saturate(0.82) brightness(1.02);
}

.background-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 50% 18%, rgba(255,248,246,0.7) 0%, rgba(255,248,246,0) 70%);
}

.site-header {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 126px;
  padding-top: 24px;
}

.site-header-row {
  width: 100%;
  margin: 0;
}

.site-brand {
  display: inline-block;
}

.site-brand img {
  max-height: 112px;
}

.site-nav-col {
  padding-top: 12px;
}

.site-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav li,
.site-mobile-nav li {
  list-style: none;
}

.site-nav .nav-link {
  padding: 0 0 7px;
  color: var(--text) !important;
  font-size: 1.18rem;
  line-height: 1;
  border-bottom: 1px solid transparent;
}

.site-nav .nav-link.active {
  border-bottom-color: currentColor;
}

.site-mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0;
  padding: 10px 0 0;
}

.site-mobile-nav .nav-link {
  display: inline-block;
  padding: 0 0 8px;
  color: var(--text) !important;
  font-size: 2rem;
  line-height: 1.05;
  border-bottom: 1px solid transparent;
}

.site-mobile-nav .nav-link.active {
  border-bottom-color: currentColor;
}

.site-menu-toggle {
  display: inline-flex;
  width: 42px;
  height: 34px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0;
}

.site-menu-toggle span {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
}

.site-menu-toggle:focus-visible {
  outline: 1px solid currentColor;
  outline-offset: 5px;
}

.site-header-light .site-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  text-shadow: 0 1px 18px rgba(42,32,30,0.28);
}

.site-header-light .site-menu-toggle {
  color: rgba(255,255,255,0.9);
}

.site-header-light .site-brand img {
  filter: drop-shadow(0 10px 24px rgba(42,32,30,0.22));
}

.site-offcanvas {
  width: min(82vw, 340px) !important;
  background: rgba(248,242,240,0.96);
  color: var(--text);
}

.site-offcanvas .offcanvas-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 400;
}

.btn-lux {
  background: var(--btn);
  color: var(--white);
  padding: 14px 40px;
  border: none;
  border-radius: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-lux:hover {
  background: var(--btn-hover);
  color: var(--white);
}

.btn-lux-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.72);
  color: var(--white);
}

.btn-lux-outline:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.95);
  color: var(--white);
}

.bottom-cities {
  letter-spacing: 4px;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}

.tagline {
  font-style: italic;
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
}

.site-footer {
  padding: 28px 0;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.78;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
}

@media (max-width: 767px) {
  .site-header {
    min-height: 0;
    padding-top: 18px;
  }

  .site-brand {
    margin-bottom: 16px;
  }

  .site-brand img {
    max-height: 98px;
  }

  .site-nav-col {
    padding-top: 4px;
    text-align: right;
  }

  .bottom-cities {
    letter-spacing: 2px;
  }
}
