:root {
  --bg: #0b0c10;
  --card: #14161c;
  --text: #e9e9ee;
  --muted: #a8a8b3;
  --gold: #d6b36a;
  --accent: #2dd4bf;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #1b1f2a, #0b0c10);
  color: var(--text);
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.brand {
  animation: fadeUp 0.9s ease-out;
}

.logo {
  width: 120px;
  margin-bottom: 20px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
  animation: float 5s ease-in-out infinite;
}

.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 5vw, 56px);
  color: var(--gold);
  letter-spacing: 0.5px;
}

.tagline {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.3px;
}

.actions {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  width: 100%;
  max-width: 640px;
  animation: fadeUp 1.2s ease-out;
}

.btn {
  padding: 14px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  backdrop-filter: blur(6px);
}

.btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.primary {
  background: linear-gradient(135deg, #f0d28a, #c79b3b);
  color: #1a1406;
}

.accent {
  background: linear-gradient(135deg, #2dd4bf, #0ea5a5);
  color: #062a27;
}

.outline {
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.map iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
