:root {
  --gold: #b08d57;
  --gold-light: #d4b483;
  --dark: #0d0d0d;
  --dark-2: #161616;
  --dark-3: #1e1e1e;
  --cream: #f8f6f2;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
}

::selection { background: var(--gold); color: #fff; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background-color: var(--cream);
  overflow-x: hidden;
}

a { text-decoration: none; }

.brand-text {
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: 1.1rem;
  color: var(--cream);
}
.brand-text strong { color: var(--gold-light); font-weight: 700; }

/* ---------- NAVBAR ---------- */
.navbar-custom {
  padding: 1rem 0;
  background: transparent;
  transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
}
.navbar-custom.scrolled {
  background-color: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 18px rgba(0,0,0,.35);
  padding: 0.55rem 0;
}
.brand-logo {
  height: 42px;
  width: 42px;
  object-fit: contain;
  border-radius: 4px;
  transition: height .35s ease;
}
.navbar-custom .nav-link {
  color: rgba(248,246,242,.85);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin: 0 .35rem;
  transition: color .25s ease;
}
.navbar-custom .nav-link:hover { color: var(--gold-light); }

.navbar-toggler {
  border-color: rgba(248,246,242,.4);
}
.navbar-toggler-icon {
  filter: invert(1);
}

/* ---------- BUTTONS ---------- */
.btn-gold {
  background-color: var(--gold);
  border: 1px solid var(--gold);
  color: #fff;
  font-weight: 600;
  letter-spacing: .5px;
  border-radius: 2px;
  transition: all .25s ease;
}
.btn-gold:hover {
  background-color: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-light {
  border-radius: 2px;
  letter-spacing: .5px;
  font-weight: 500;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top, rgba(176,141,87,.18), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0d0d0d 55%, #141414 100%);
  overflow: hidden;
  color: var(--cream);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .35;
  pointer-events: none;
}
.mountains {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.mountains svg { width: 100%; height: auto; display: block; }

.hero-content { position: relative; z-index: 2; padding-top: 4rem; }

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.5));
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: .75rem;
}
.eyebrow-dark { color: var(--gold); }

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  letter-spacing: 6px;
  margin-bottom: .5rem;
  color: var(--cream);
}
.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: rgba(248,246,242,.85);
}

.scroll-down {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold-light);
  font-size: 1.6rem;
  animation: bounce 2.2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); opacity: .6; }
  50% { transform: translate(-50%, 10px); opacity: 1; }
}

/* ---------- SNOW ---------- */
#snow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}
.snowflake {
  position: absolute;
  top: -10px;
  background: #fff;
  border-radius: 50%;
  opacity: .75;
  animation-name: fall;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes fall {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(105vh) translateX(20px); }
}

/* ---------- SECTIONS ---------- */
.section-py { padding: 6.5rem 0; }

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  margin-bottom: 1rem;
}
.section-lead {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.7;
}
.text-light-70 { color: rgba(248,246,242,.7) !important; }

.feature-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 6px;
  padding: 2.5rem 1.75rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,.08);
  border-color: var(--gold-light);
}
.feature-icon {
  width: 68px; height: 68px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #f3ece0, #fff);
  color: var(--gold);
  font-size: 1.7rem;
  border: 1px solid var(--gold-light);
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.feature-text { color: #666; font-size: .93rem; margin-bottom: 0; }

/* ---------- CONTACT ---------- */
.bg-dark-section {
  background: linear-gradient(180deg, #0d0d0d, #161616);
  color: var(--cream);
}
.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(176,141,87,.35);
  border-radius: 8px;
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-item i {
  font-size: 1.4rem;
  color: var(--gold);
  margin-top: .2rem;
}
.contact-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: .3rem;
  color: var(--gold-light);
}
.contact-item p {
  margin-bottom: 0;
  color: rgba(248,246,242,.85);
  line-height: 1.6;
  font-size: .95rem;
}
.contact-item a { color: rgba(248,246,242,.85); border-bottom: 1px solid var(--gold); }
.contact-item a:hover { color: var(--gold-light); }

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(176,141,87,.35);
  filter: grayscale(.25) contrast(1.05);
  min-height: 320px;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--dark);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(176,141,87,.25);
}
.footer-logo {
  height: 34px; width: 34px;
  object-fit: contain;
  border-radius: 4px;
}
.footer-divider {
  border-color: rgba(176,141,87,.25);
  margin: 1.75rem 0 1.25rem;
}
.social-link {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(176,141,87,.4);
  border-radius: 50%;
  color: var(--gold-light);
  transition: all .25s ease;
}
.social-link:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

@media (max-width: 991.98px) {
  .navbar-custom { background-color: rgba(13,13,13,.96); }
  .navbar-collapse { padding-top: 1rem; }
}
