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

body {
  font-family: 'Raleway', sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(140, 90, 50, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 75% 15%, rgba(180, 100, 60, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 25% 85%, rgba(100, 60, 40, 0.15) 0%, transparent 45%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(60, 30, 15, 0.3) 0%, transparent 70%);
  color: #ffffff;
  text-align: center;
  padding: 2rem;
}

.container {
  max-width: 600px;
}

/* Logo - Copper/Bronze square with Fe cutout */
.logo-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.logo {
  width: 180px;
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  filter: drop-shadow(0 0 15px rgba(160, 100, 50, 0.15));
}

.logo img {
  width: 100%;
  height: 100%;
}

.tagline {
  font-family: 'Raleway', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c9956c 0%, #8b5a2b 50%, #a67c52 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
}

.coming-soon {
  font-family: 'Raleway', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #c9956c 0%, #8b5a2b 50%, #a67c52 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.message {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #c9a67c;
  margin-bottom: 3rem;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(160, 100, 50, 0.4);
  border-radius: 50px;
  color: #c9956c;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}

.contact:hover {
  background: rgba(160, 100, 50, 0.1);
  border-color: rgba(180, 120, 60, 0.6);
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #b87333, transparent);
  margin: 2rem auto;
}

footer {
  position: absolute;
  bottom: 2rem;
  font-size: 0.8rem;
  color: #7a4e2a;
}