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

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

body {
  background: radial-gradient(circle at top, #111 0%, #000 80%);
  color: #E5E5E5;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

header {
  text-align: center;
  padding: 10vh 0 4vh 0;
  letter-spacing: 6px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  background: linear-gradient(135deg, #DADADA, #7A7A7A, #E8E8E8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 14px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hero {
  position: relative;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.08), transparent 70%);
  pointer-events: none;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #FFFFFF, #AFAFAF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  color: #aaa;
  max-width: 600px;
  line-height: 1.8;
}

.btn-container {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 12px 32px;
  border: 1px solid #555;
  text-transform: uppercase;
  color: #ddd;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  background: transparent;
}

.btn:hover {
  background: linear-gradient(135deg, #C0C0C0, #6E6E6E);
  color: #000;
  border-color: #C0C0C0;
}

.section {
  padding: 10vh 10%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #E5E5E5, #AFAFAF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section p {
  font-size: 1rem;
  color: #aaa;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
}

footer {
  text-align: center;
  padding: 6vh 0;
  font-size: 13px;
  color: #666;
  border-top: 1px solid rgba(255,255,255,0.05);
}