@import url(https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap);

:root {
  --gold: #c5a26f;
  --gold-light: #d4b896;
  --gold-dark: #a8844f;
  --cream: #f5efe6;
  --deep-black: #0a0a0a;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--deep-black);
  color: var(--cream);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}
.gold-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: all 0.4s;
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(197, 162, 111, 0.2);
}
.nav-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.7);
  transition: color 0.3s;
  position: relative;
  text-decoration: none;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-link:hover {
  color: var(--gold);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link.active {
  color: var(--gold);
}
.eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.heading-display {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.1;
}
.heading-section {
  font-family: "Cormorant Garamond", serif;
  font-weight: 400;
}
.body-refined {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(245, 239, 230, 0.72);
  font-size: 0.9rem;
}
.btn-gold {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
  background: none;
}
.btn-gold::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
  z-index: -1;
}
.btn-gold:hover {
  color: var(--deep-black) !important;
}
.btn-gold:hover::before {
  transform: scaleX(1);
}
.btn-gold-solid {
  display: inline-block;
  padding: 14px 40px;
  background: var(--gold);
  color: var(--deep-black) !important;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.btn-gold-solid:hover {
  background: var(--gold-dark);
}
.card-luxury {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(197, 162, 111, 0.15);
  transition: all 0.4s;
}
.card-luxury:hover {
  border-color: rgba(197, 162, 111, 0.4);
  background: rgba(197, 162, 111, 0.04);
  transform: translateY(-4px);
}
.section-pad {
  padding: 120px 0;
}
.accent-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  margin: 0 auto;
}
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
}
.blockquote-luxury {
  border-left: 2px solid var(--gold);
  padding-left: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 300;
  color: rgba(245, 239, 230, 0.85);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-up {
  animation: fadeUp 1s ease forwards;
}
.fade-up-d1 {
  animation: fadeUp 1s ease 0.2s forwards;
  opacity: 0;
}
.fade-up-d2 {
  animation: fadeUp 1s ease 0.4s forwards;
  opacity: 0;
}
.fade-up-d3 {
  animation: fadeUp 1s ease 0.6s forwards;
  opacity: 0;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: sp 2s ease infinite;
}
@keyframes sp {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}
footer {
  background: #080808;
  border-top: 1px solid rgba(197, 162, 111, 0.15);
}
.footer-link {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(245, 239, 230, 0.4);
  text-decoration: none;
  transition: color 0.3s;
  text-transform: uppercase;
  cursor: pointer;
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
}
.footer-link:hover {
  color: var(--gold);
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-nav-link {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-nav-link:hover {
  color: var(--gold);
}
.stage-num-bg {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(197, 162, 111, 0.12);
  line-height: 1;
}
.timeline-chip {
  display: inline-block;
  padding: 4px 14px;
  border: 1px solid rgba(197, 162, 111, 0.3);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.criteria-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 5, 0.96);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  padding: 60px 20px;
}
.modal-overlay.open {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.modal-box {
  background: #0d0c0a;
  border: 1px solid rgba(197, 162, 111, 0.25);
  max-width: 740px;
  width: 100%;
  animation: mIn 0.4s ease;
}
@keyframes mIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-header {
  padding: 3rem 3rem 2rem;
  border-bottom: 1px solid rgba(197, 162, 111, 0.12);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.modal-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(197, 162, 111, 0.3);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}
.modal-close:hover {
  border-color: var(--gold);
}
.modal-body {
  padding: 2.5rem 3rem 3rem;
}
.modal-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--cream);
  margin: 1.8rem 0 0.6rem;
}
.modal-body h3:first-child {
  margin-top: 0;
}
.modal-body p {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.84rem;
  line-height: 1.9;
  color: rgba(245, 239, 230, 0.65);
  margin-bottom: 0.8rem;
}
.modal-body ul {
  list-style: none;
  margin: 0 0 1rem;
}
.modal-body ul li {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 0.84rem;
  line-height: 1.9;
  color: rgba(245, 239, 230, 0.65);
  padding-left: 1.2rem;
  position: relative;
}
.modal-body ul li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.modal-footer-bar {
  padding: 1.5rem 3rem;
  border-top: 1px solid rgba(197, 162, 111, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .modal-header,
  .modal-body,
  .modal-footer-bar {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.form-modal {
  position: relative;
}

.form-modal .modal-close {
  position: absolute;
  top: 0;
  right: 0;
}

#menuClose {
  cursor: pointer;
  z-index: 1001;
}