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

html {
  scroll-behavior: smooth;
}

body {
  background: #050607;
  color: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.38) 45%, rgba(0,0,0,.12) 100%),
    url('splash.png') center center / cover no-repeat;
  position: relative;
  padding: 0 56px 30px;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  min-height: 86px;
  padding: 18px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(95, 95, 95, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.logo {
  width: 120px;
  height: auto;
}

.menu a {
  color: #fff;
  text-decoration: none;
  margin-left: 24px;
  font-size: 13px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.85);
}

.nav-button {
  background: #d7aa55;
  color: #111;
  border-radius: 4px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-panel {
  max-width: 720px;
  padding-top: 190px;
}

.hero-panel h1 {
  font-size: clamp(48px, 7vw, 92px);
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-panel h2 {
  color: #d7aa55;
  font-size: clamp(26px, 4vw, 50px);
  text-transform: uppercase;
  margin: 18px 0 22px;
}

.hero-panel p {
  max-width: 650px;
  color: #e8e8e8;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 34px;
}

.button,
button {
  display: inline-block;
  background: #d7aa55;
  color: #111;
  border: 0;
  border-radius: 4px;
  padding: 17px 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
}

.section {
  padding: 90px 7%;
}

.intro,
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid rgba(215,170,85,.25);
}

.tech-section {
  background: radial-gradient(circle at left, rgba(215,170,85,.08), transparent 36%), #070809;
}

.eyebrow {
  color: #d7aa55;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 16px;
  display: block;
}

.center {
  text-align: center;
}

.section h2,
.cta h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.section p {
  color: #cfcfcf;
  font-size: 19px;
  line-height: 1.7;
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 34px;
}

.service-card,
.project-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(215,170,85,.28);
  padding: 28px;
  min-height: 220px;
}

.service-card h3,
.project-card h3 {
  color: #d7aa55;
  font-size: 24px;
  margin-bottom: 14px;
}

.service-card p,
.project-card p {
  font-size: 16px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.projects-section {
  background: #08090a;
}

.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-image {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid rgba(215,170,85,.35);
  display: block;
  margin-bottom: 24px;
  background: #111;
}

.cta {
  margin: 40px 7%;
  padding: 60px;
  border: 1px solid rgba(215,170,85,.45);
  background: linear-gradient(90deg, rgba(215,170,85,.10), rgba(255,255,255,.02));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta p {
  color: #d0d0d0;
  margin-top: 12px;
  font-size: 18px;
}

.contact-section {
  background: #090909;
}

.contact-form {
  max-width: 900px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  background: #111;
  color: #fff;
  border: 1px solid rgba(215,170,85,.35);
  padding: 18px;
  margin-bottom: 18px;
  font-size: 16px;
}

textarea {
  resize: vertical;
}

footer {
  padding: 36px 7%;
  border-top: 1px solid rgba(215,170,85,.25);
  display: flex;
  align-items: center;
  gap: 24px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

footer img {
  width: 95px;
}

@media (max-width: 980px) {
  .menu {
    display: none;
  }

  .hero {
    padding: 0 24px 24px;
  }

  .navbar {
    padding: 16px 24px;
  }

  .hero-panel {
    padding-top: 150px;
  }

  .intro,
  .split {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .project-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .cta {
    margin: 20px;
    padding: 34px;
    display: block;
  }

  .cta .button {
    margin-top: 24px;
  }
}
