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

:root {
  --bg: #050505;
  --panel: #111111;
  --panel-2: #181818;
  --gold: #f8b400;
  --orange: #ff5a00;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --border: rgba(248, 180, 0, 0.35);
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: rgba(0, 0, 0, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo span {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -2px;
  transform: skew(-8deg);
}

.logo small {
  display: block;
  color: var(--orange);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 34px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--gold);
}

.menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  font-size: 22px;
}

.hero {
  min-height: 82vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 6%;
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 90, 0, 0.32), transparent 35%),
    linear-gradient(90deg, rgba(0,0,0,1), rgba(0,0,0,0.82)),
    url("https://images.unsplash.com/photo-1533134486753-c833f0ed4866?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 98px);
  line-height: 0.92;
  text-transform: uppercase;
  max-width: 700px;
}

.hero h1 span {
  color: var(--gold);
  display: block;
}

.hero-text {
  max-width: 560px;
  margin: 24px 0;
  color: var(--text);
  font-size: 22px;
}

.hero-bullets {
  color: var(--muted);
  margin-bottom: 30px;
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 24px;
  text-transform: uppercase;
  font-weight: 900;
  border: 1px solid var(--gold);
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--gold);
  color: #111;
}

.btn.secondary {
  background: transparent;
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(248, 180, 0, 0.25);
}

.hero-art {
  display: flex;
  justify-content: center;
}

.art-card {
  width: min(430px, 100%);
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 2px solid var(--border);
  background:
    linear-gradient(rgba(0,0,0,0.15), rgba(0,0,0,0.9)),
    radial-gradient(circle at center, #383838, #080808);
  box-shadow: 0 0 80px rgba(255, 90, 0, 0.25);
}

.art-card h2 {
  font-size: 56px;
  line-height: 0.95;
  color: var(--gold);
  text-transform: uppercase;
}

.section {
  padding: 76px 6%;
}

.about,
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
  background: var(--panel);
}

.about-image {
  min-height: 330px;
  border: 2px solid var(--border);
  background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.8)),
    radial-gradient(circle, #3b3b3b, #111);
}

h2 {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.about p,
.contact p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 720px;
}

.center {
  text-align: center;
}

.portfolio-grid,
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.portfolio-card {
  background: var(--panel-2);
  border: 1px solid var(--border);
  overflow: hidden;
}

.card-art {
  min-height: 210px;
  background-size: cover;
  background-position: center;
}

.card-art.one { background: linear-gradient(135deg, #f8b400, #111); }
.card-art.two { background: linear-gradient(135deg, #0b7cff, #111); }
.card-art.three { background: linear-gradient(135deg, #ff00aa, #111); }
.card-art.four { background: linear-gradient(135deg, #ff5a00, #111); }
.card-art.five { background: linear-gradient(135deg, #777, #111); }
.card-art.six { background: linear-gradient(135deg, #00c878, #111); }

.portfolio-card h3 {
  padding: 16px 16px 0;
  font-size: 24px;
  text-transform: uppercase;
}

.portfolio-card a {
  display: block;
  padding: 0 16px 18px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.services {
  background: #090909;
}

.service {
  padding: 28px;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.service h3 {
  color: var(--gold);
  margin: 12px 0;
  text-transform: uppercase;
}

.service p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  background: #0b0b0b;
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text);
  font: inherit;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 6%;
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 850px) {
  .menu-btn {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 76px;
    right: 6%;
    left: 6%;
    flex-direction: column;
    background: #080808;
    padding: 24px;
    border: 1px solid var(--border);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .portfolio-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  footer {
    flex-direction: column;
  }
}
