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

html {
  scroll-behavior: smooth;
}

body {
  background: #050608;
  color: #f2f2f2;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: 0.045;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.16) 0 1px, transparent 1px);
  background-size: 80px 80px, 120px 120px;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url("assets/images/Hero.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.92) 0%, rgba(5, 6, 8, 0.64) 34%, rgba(5, 6, 8, 0.1) 68%, rgba(5, 6, 8, 0.35) 100%),
    linear-gradient(180deg, rgba(5, 6, 8, 0.05) 0%, rgba(5, 6, 8, 0.35) 62%, #050608 100%);
}

.navbar {
  position: relative;
  z-index: 2;
  height: 90px;
  padding: 0 7vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 7px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 34px;
}

.nav-links a {
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #d58b3e;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-left: 7vw;
  padding-top: 17vh;
}

.eyebrow {
  color: #d58b3e;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero h1,
.section h2,
.contact h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(56px, 6.6vw, 108px);
  line-height: 0.92;
  letter-spacing: -2px;
  margin-bottom: 34px;
}

.description {
  max-width: 560px;
  color: rgba(255,255,255,0.72);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 44px;
}

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

.button {
  display: inline-block;
  padding: 17px 28px;
  border: 1px solid rgba(213, 139, 62, 0.75);
  color: white;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2.6px;
  transition: 0.25s ease;
}

.button.primary {
  background: rgba(213, 139, 62, 0.16);
}

.button.secondary {
  border-color: rgba(255,255,255,0.24);
}

.button:hover {
  background: #d58b3e;
  color: #050608;
}

.section {
  padding: 120px 7vw;
}

.intro {
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 46px;
  align-items: center;
}

.intro-line {
  width: 100%;
  height: 1px;
  background: #d58b3e;
}

.intro p {
  max-width: 980px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 64px);
  line-height: 1.08;
  color: rgba(255,255,255,0.9);
}

.section-heading {
  margin-bottom: 48px;
}

.section h2 {
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.project-card {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #0b0d10;
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  display: block;
  cursor: pointer;
}

.project-card.large {
  grid-column: span 2;
  min-height: 620px;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.82);
  transition: 0.7s ease;
}

.project-card:hover img {
  transform: scale(1.055);
  filter: contrast(1.08) brightness(0.95);
}

.project-card:hover {
  border-color: rgba(213, 139, 62, 0.42);
}

.project-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.82) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.65), transparent 65%);
}

.project-info {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 620px;
}

.project-info span {
  display: block;
  color: #d58b3e;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.project-info h3 {
  font-size: clamp(28px, 3vw, 48px);
  margin-bottom: 14px;
}

.project-info p {
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 560px;
}

.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(213, 139, 62, 0.08), transparent 32%),
    #070809;
}

.about-image {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 620px;
}

.about-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  filter: contrast(1.04) brightness(0.88);
}

.about-content h2 {
  font-size: clamp(38px, 4.8vw, 76px);
  line-height: 1.02;
  margin-bottom: 34px;
}

.about-content p {
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
  font-size: 17px;
  margin-bottom: 24px;
  max-width: 780px;
}

.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.skills span {
  border: 1px solid rgba(213, 139, 62, 0.36);
  color: rgba(255,255,255,0.78);
  padding: 10px 14px;
  font-size: 11px;
  letter-spacing: 1.7px;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.credential-card {
  min-height: 300px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  padding: 44px;
}

.credential-card h3 {
  font-size: 32px;
  margin-bottom: 22px;
}

.credential-card p {
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
}

.clients {
  padding-top: 40px;
  padding-bottom: 90px;
  background: #050608;
}

.clients .eyebrow {
  margin-bottom: 26px;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1120px;
}

.clients-grid img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  background: #0b0d10;
  border: 1px solid rgba(255,255,255,0.05);
  opacity: 0.78;
  filter: brightness(0.72) contrast(1.02);
  transition: 0.25s ease;
}

.clients-grid img:hover {
  opacity: 1;
  filter: brightness(1) contrast(1.08);
  border-color: rgba(213, 139, 62, 0.38);
  transform: translateY(-4px);
}

.contact {
  text-align: center;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at center, rgba(213, 139, 62, 0.06), transparent 32%),
    #050608;
}

.contact h2 {
  font-size: clamp(44px, 5vw, 86px);
  margin-bottom: 28px;
}

.contact-text {
  max-width: 700px;
  margin: 0 auto 42px;
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  line-height: 1.8;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 38px;
  flex-wrap: wrap;
}

.contact-links a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-bottom: 1px solid #d58b3e;
  padding-bottom: 8px;
  transition: 0.25s ease;
}

.contact-links a:hover {
  color: #d58b3e;
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 28px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    background-position: 62% center;
  }

  .hero-content {
    padding: 18vh 28px 0;
  }

  .section {
    padding: 86px 28px;
  }

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

  .projects-grid,
  .about,
  .credentials {
    grid-template-columns: 1fr;
  }

  .project-card.large {
    grid-column: span 1;
  }

  .project-card,
  .project-card.large {
    min-height: 460px;
  }

  .about-image,
  .about-image img {
    min-height: 420px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .clients-grid img {
    height: 76px;
  }

  .hero h1 {
    font-size: 56px;
  }
}
