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

:root {
  --bg: #0a0a0a;
  --text: #e8e8e8;
  --accent: #bfa86a;
  --muted: #666;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Courier New', monospace;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

main {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.brand-wrap h1 {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
}

.parallax-wrap {
  perspective: 800px;
}

.brand-art {
  width: 180px;
  max-width: 30vw;
  opacity: 0.9;
  filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.08));
  will-change: transform;
  transition: transform 0.15s ease-out;
}

.hero-line {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

h1 {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.06em;
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.cta {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  width: fit-content;
}

.cta:hover {
  background: var(--accent);
  color: var(--bg);
}

.section {
  margin-bottom: 5rem;
  padding: 2rem 0;
  border-top: 1px solid #222;
}

.section:first-of-type {
  border-top: none;
}

.section p {
  font-size: 1rem;
  color: #999;
}

.services {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.services span {
  padding: 0.5rem 1rem;
  border: 1px solid #333;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: border-color 0.3s ease;
}

.services span:hover {
  border-color: var(--accent);
}

.contact a {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
}

.contact a:hover {
  opacity: 0.7;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .brand-wrap {
    flex-direction: column;
    gap: 1.5rem;
  }

  .brand-art {
    width: 140px;
  }
}
