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

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

body {
  font-family: 'Inter', sans-serif;
  background-color: #121212;
  color: #F5F5F0;
  line-height: 1.6;
}

a {
  color: inherit;
}

/* Header */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(245, 245, 240, 0.1);
}

.back-link {
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: #888;
  transition: color 0.2s ease;
}

.back-link:hover {
  color: #F5F5F0;
}

.main-nav a {
  text-decoration: none;
  margin-left: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: #F5F5F0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #E8FF3C;
  transition: width 0.2s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  padding: 8rem 2rem 6rem;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  border: 1px solid #E8FF3C;
  color: #E8FF3C;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  padding: 0.4rem 1rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.hero-title {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 1.5rem;
}

.hero-accent {
  color: #E8FF3C;
}

.hero-sub {
  font-size: 1.15rem;
  color: #B8B8B0;
  max-width: 480px;
}

/* Sections */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-label {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #E8FF3C;
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-header h2 {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.section-text {
  font-size: 1.05rem;
  color: #B8B8B0;
  max-width: 640px;
}

/* Work section / gallery */
.gallery-placeholder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  aspect-ratio: 4 / 3;
  background-color: #1E1E1E;
  border: 1px solid rgba(245, 245, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

/* About section */
.about-section {
  border-top: 1px solid rgba(245, 245, 240, 0.1);
  border-bottom: 1px solid rgba(245, 245, 240, 0.1);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.about-item h3 {
  font-family: 'Archivo Expanded', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: #E8FF3C;
}

.about-item p {
  color: #B8B8B0;
  font-size: 0.95rem;
}

/* Contact */
.contact-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  border: 1px solid #E8FF3C;
  color: #E8FF3C;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: all 0.2s ease;
}

.contact-button:hover {
  background-color: #E8FF3C;
  color: #121212;
}

/* Footer */
.site-footer {
  padding: 2rem;
  border-top: 1px solid rgba(245, 245, 240, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

.site-footer a {
  text-decoration: none;
  color: #888;
}

.site-footer a:hover {
  color: #E8FF3C;
}

/* Mobile */
@media (max-width: 768px) {
  .main-nav a {
    margin-left: 1rem;
    font-size: 0.75rem;
  }

  .hero {
    padding: 5rem 1.5rem 4rem;
  }

  .section {
    padding: 3.5rem 1.5rem;
  }

  .gallery-placeholder {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Focus states */
a:focus-visible {
  outline: 2px solid #E8FF3C;
  outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
