.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 0 60px 0 64px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.grid-container::before {
  content: '';
  position: absolute;
  top: 30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(250, 100, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.left-side-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 100px;
  animation: fadeUp 0.8s ease both;
}

.left-side-text h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.1;
  color: #fff;
  border-right: 3px solid rgb(250, 100, 0);
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 2s steps(20) 0.5s forwards,
             blink 0.75s step-end infinite;
}

.left-side-text h1 span {
  color: rgb(250, 100, 0);
  text-shadow: 0 0 30px rgba(250, 100, 0, 0.35);
}

.left-side-text p {
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  padding-left: 40px;
  animation: fadeUp 0.6s ease 2.3s both;
}

.left-side-text p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: rgb(250, 100, 0);
  box-shadow: 0 0 8px rgba(250, 100, 0, 0.6);
}

.cta-group {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.6s ease 2.5s both;
}

.view-project {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: #0f0f0f;
  background: rgb(250, 100, 0);
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.view-project:hover {
  background: #ff3c00;
  box-shadow: 0 0 24px rgba(250, 100, 0, 0.45);
  transform: translateY(-2px);
}

.contact {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.contact:hover {
  border-color: rgb(250, 100, 0);
  color: #fff;
  transform: translateY(-2px);
}

.right-side-pic {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 0.8s 0.2s ease both;
  position: relative;
}

.right-side-pic::before {
  content: '';
  position: absolute;
  width: 470px;
  height: 550px;
  border: 2px solid rgba(250, 100, 0, 0.3);
  top: 20px;
  left: 50%;
  transform: translateX(-35%);
  z-index: 0;
}

.right-side-pic img {
  width: 450px;
  height: 530px;
  object-fit: cover;
  object-position: top;
  display: block;
  position: relative;
  z-index: 1;
  filter: grayscale(20%) contrast(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.05);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.right-side-pic img:hover {
  filter: grayscale(0%) contrast(1.1);
  transform: translateY(-6px);
}


/* === Responsive === */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr;
    padding: 60px 30px;
    text-align: center;
    gap: 48px;
  }

  .left-side-text {
    margin-left: 0;
    align-items: center;
  }

  /* disable typing animation on mobile — just fade in */
  .left-side-text h1 {
    white-space: normal;
    width: 100%;
    border-right: none;
    overflow: visible;
    animation: fadeUp 0.8s ease 0.3s both;
  }

  .left-side-text p {
    padding-left: 0;
    animation: fadeUp 0.6s ease 0.6s both;
  }

  .left-side-text p::before {
    display: none;
  }

  .cta-group {
    justify-content: center;
    animation: fadeUp 0.6s ease 0.9s both;
  }

  .right-side-pic::before {
    display: none;
  }

  .right-side-pic img {
    width: 220px;
    height: 260px;
  }
}


@keyframes typing {
  to { width: 100%; }
}

@keyframes blink {
  0%, 100% { border-color: rgb(250, 100, 0); }
  50%       { border-color: transparent; }
}

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