@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --navy-darkest: #030814;
  --navy-deep: #081226;
  --navy-light: #112040;
  --gold-primary: #D4AF37;
  --gold-light: #F3E5AB;
  --gold-dark: #997A15;
  --text-primary: #F8F9FA;
  --text-secondary: #A0A5B5;
  --glass-bg: rgba(8, 18, 38, 0.6);
  --glass-border: rgba(212, 175, 55, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: var(--navy-darkest);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(212, 175, 55, 0.03), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(17, 32, 64, 0.5), transparent 25%);
  background-attachment: fixed;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold-light);
}

h1 {
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: 1.1;
  background: linear-gradient(to right, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 1px;
  background-color: var(--gold-primary);
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--gold-primary);
}

p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-weight: 300;
  max-width: 650px;
}

/* Layout */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
}

.section {
  padding: 10rem 0;
}

.text-center {
  text-align: center;
}

.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* Glass & Luxury Cards */
.luxury-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0.5;
}

.luxury-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.05);
}

/* Buttons */
.btn-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  padding: 1.2rem 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--gold-primary);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.btn-gold:hover {
  color: var(--navy-darkest);
}

.btn-gold:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 6rem;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
  width: 100%;
}

.hero-content {
  flex: 1.2;
}

.hero-subtitle {
  font-family: 'Cinzel', serif;
  color: var(--gold-primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  display: block;
}

.hero-image-container {
  flex: 0.8;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  padding: 1rem;
  border: 1px solid var(--glass-border);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  top: -10px; right: -10px; bottom: 10px; left: 10px;
  border: 1px solid var(--gold-primary);
  z-index: -1;
  opacity: 0.3;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%) contrast(1.1);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 6rem;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  font-weight: 300;
}

/* Waiting List */
#waiting-list {
  background: linear-gradient(to bottom, var(--navy-darkest), var(--navy-deep));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.opt-in-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--glass-border);
  color: var(--text-primary);
  padding: 1rem 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--gold-primary);
}

.form-input::placeholder {
  color: var(--text-secondary);
  font-weight: 300;
}

/* Footer */
footer {
  padding: 6rem 0 3rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 4rem;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  transition: color 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.social-link:hover {
  color: var(--gold-primary);
}

.social-link svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.copyright {
  text-align: center;
  margin-top: 5rem;
  font-size: 0.8rem;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-subtitle {
    margin-top: 2rem;
  }
  
  h1 { margin-left: auto; margin-right: auto; }
  .hero-content p { margin: 0 auto 3rem; }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .section { padding: 6rem 0; }
}
