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

/* ================= BASE ================= */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #0c0c0c;
  color: #f0f0f0;
}

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

/* ================= ANNOUNCEMENT BAR ================= */
.announcement-bar {
  width: calc(100% - 48px);
  margin: 10px auto 0;
  background-color: #1a1a1a;
  color: #888888;
  text-align: center;
  padding: 13px 20px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  border: 1px solid #2a2a2a;
}

/* ================= HEADER ================= */
.site-header {
  width: calc(100% - 48px);
  margin: 20px auto 18px;
  background-color: #111111;
  border-radius: 6px;
  border: 1px solid #222222;
  min-height: 80px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.logo {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -2px;
  color: #ffffff;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
  transition: color 0.15s ease;
}

.desktop-nav a:hover {
  color: #ffffff;
}

.right-nav {
  justify-content: flex-end;
}

.nav-whatsapp {
  background-color: #25D366 !important;
  color: #ffffff !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 12px !important;
  letter-spacing: 1px;
  transition: opacity 0.15s ease !important;
}

.nav-whatsapp:hover {
  opacity: 0.85;
  color: #ffffff !important;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: #f0f0f0;
  font-size: 28px;
  cursor: pointer;
}

/* ================= MOBILE NAV ================= */
.mobile-nav {
  display: none;
  width: calc(100% - 48px);
  margin: -8px auto 18px;
  background-color: #111111;
  border-radius: 6px;
  border: 1px solid #222222;
  padding: 18px;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
  border-bottom: 1px solid #222222;
}

.mobile-nav a:last-child {
  border-bottom: none;
}

.mobile-nav.active {
  display: block;
}

/* ================= SHARED UTILITIES ================= */
.section-kicker {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555555;
  margin-bottom: 16px;
}

.section-button {
  display: inline-block;
  width: fit-content;
  border: 1px solid #333333;
  border-radius: 4px;
  padding: 13px 26px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888888;
  transition: 0.15s ease;
}

.section-button:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.whatsapp-button {
  display: inline-block;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 4px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 900;
  margin-top: 28px;
  transition: opacity 0.15s ease;
  letter-spacing: 0.3px;
}

.whatsapp-button:hover {
  opacity: 0.85;
  color: #ffffff;
}

/* ================= HERO ================= */
.hero-section {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
  border: 1px solid #222222;
  border-radius: 6px;
  overflow: hidden;
  min-height: 620px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #0c0c0c 38%, rgba(12,12,12,0.85) 55%, rgba(12,12,12,0.1) 100%);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 68px;
  line-height: 0.95;
  letter-spacing: -4px;
  color: #ffffff;
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.55;
  color: #aaaaaa;
  max-width: 440px;
}


/* ================= PORTFOLIO / WORK SECTION ================= */
.work-section {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
}

.work-header {
  margin-bottom: 18px;
}

.work-header h2 {
  font-size: 48px;
  letter-spacing: -3px;
  line-height: 0.95;
  color: #ffffff;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.work-card {
  display: block;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.15s ease;
}

.work-card:hover {
  border-color: #444444;
}

.work-card-image {
  height: 260px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}

.work-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.work-tag {
  background-color: rgba(0, 0, 0, 0.7);
  color: #888888;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 10px;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  border: 1px solid #333333;
}

.work-card-info {
  padding: 20px;
  border-top: 1px solid #1e1e1e;
}

.work-card-info h3 {
  font-size: 18px;
  letter-spacing: -0.3px;
  margin-bottom: 5px;
  color: #f0f0f0;
}

.work-card-info p {
  font-size: 14px;
  line-height: 1.45;
  color: #666666;
}

/* ================= SERVICES SECTION ================= */
.services-section {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  padding: 50px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}

.services-text h2 {
  font-size: 46px;
  letter-spacing: -3px;
  line-height: 0.95;
  margin-bottom: 16px;
  color: #ffffff;
}

.services-text p {
  font-size: 17px;
  line-height: 1.55;
  color: #777777;
}

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

.service-card {
  background-color: #161616;
  border: 1px solid #222222;
  border-radius: 6px;
  padding: 24px;
}

.service-card span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #444444;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #f0f0f0;
}

.service-card p {
  font-size: 13px;
  line-height: 1.5;
  color: #666666;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  min-height: 460px;
}

.about-image {
  background-color: #1a1a1a;
  border-right: 1px solid #222222;
  min-height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 500px;
}

.about-placeholder {
  width: 100%;
  height: 100%;
  min-height: 460px;
  background-color: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-placeholder p {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #333333;
}

.about-text {
  padding: 55px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #777777;
}

/* ================= PROCESS SECTION ================= */
.process-section {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  padding: 50px;
}

.process-header {
  max-width: 600px;
  margin-bottom: 32px;
}

.process-header h2 {
  font-size: 50px;
  line-height: 0.95;
  letter-spacing: -3px;
  color: #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.process-step {
  background-color: #161616;
  border: 1px solid #222222;
  border-radius: 6px;
  padding: 28px;
}

.process-step span {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #444444;
  margin-bottom: 16px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  color: #f0f0f0;
}

.process-step p {
  font-size: 15px;
  line-height: 1.55;
  color: #666666;
}

/* ================= FINAL CTA ================= */
.final-cta-section {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
  background-color: #ffffff;
  border-radius: 6px;
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  padding: 60px 55px;
  gap: 50px;
  align-items: center;
}

.final-cta-text .section-kicker {
  color: #999999;
}

.final-cta-text h2 {
  font-size: 58px;
  line-height: 0.93;
  letter-spacing: -3px;
  margin-bottom: 18px;
  color: #0c0c0c;
}

.final-cta-text p {
  font-size: 18px;
  line-height: 1.5;
  color: #777777;
}

.cta-stat-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-stat {
  background-color: #f5f5f5;
  border-radius: 6px;
  padding: 20px 24px;
  border: 1px solid #ebebeb;
}

.cta-stat strong {
  display: block;
  font-size: 36px;
  letter-spacing: -2px;
  color: #0c0c0c;
  margin-bottom: 3px;
}

.cta-stat p {
  font-size: 12px;
  color: #999999 !important;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ================= FOOTER ================= */
.site-footer {
  width: calc(100% - 48px);
  margin: 0 auto 10px;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  overflow: hidden;
}

.footer-links {
  padding: 40px 38px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-column h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 900;
  color: #444444;
}

.footer-column a,
.footer-column p {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 14px;
  color: #666666;
  transition: color 0.15s ease;
}

.footer-column a:hover {
  color: #ffffff;
}

/* ================= WORK PAGE ================= */
.work-page-hero {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  padding: 60px 55px;
}

.work-page-hero h1 {
  font-size: 68px;
  line-height: 0.93;
  letter-spacing: -4px;
  margin-bottom: 18px;
  color: #ffffff;
}

.work-page-hero p {
  font-size: 18px;
  line-height: 1.5;
  color: #777777;
  max-width: 560px;
}

.work-full-grid {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.work-full-card {
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  overflow: hidden;
}

.work-full-image {
  height: 340px;
  position: relative;
  overflow: hidden;
}

.work-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-full-info {
  padding: 28px;
  border-top: 1px solid #1e1e1e;
}

.work-full-info h2 {
  font-size: 24px;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  color: #f0f0f0;
}

.work-full-info p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #666666;
}

.work-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.work-tag-pill {
  background-color: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555555;
}

.work-cta-strip {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  padding: 44px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.work-cta-strip h2 {
  font-size: 42px;
  letter-spacing: -2px;
  line-height: 0.95;
  color: #ffffff;
}

/* ================= TABLET ================= */
@media (max-width: 900px) {
  .services-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-section {
    grid-template-columns: 1fr;
  }

  .about-placeholder {
    min-height: 280px;
    height: 280px;
  }

  .final-cta-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-stat-cards {
    flex-direction: row;
  }

  .cta-stat {
    flex: 1;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .work-cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 700px) {
  .announcement-bar,
  .site-header,
  .mobile-nav,
  .hero-section,
  .work-section,
  .services-section,
  .about-section,
  .process-section,
  .final-cta-section,
  .site-footer,
  .work-page-hero,
  .work-full-grid,
  .work-cta-strip {
    width: calc(100% - 20px);
  }

  .announcement-bar {
    margin-top: 8px;
    font-size: 10px;
    padding: 10px 12px;
  }

  .site-header {
    margin: 10px auto 8px;
    min-height: 64px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
  }

  .logo {
    font-size: 28px;
    letter-spacing: -1.5px;
  }

  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-nav {
    margin: 0 auto 8px;
  }

  .hero-section {
    min-height: 520px;
  }

  .hero-bg {
    width: 100%;
    right: 0;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, rgba(12,12,12,0.7) 0%, rgba(12,12,12,0.95) 60%, #0c0c0c 100%);
  }

  .hero-text {
    padding: 40px 22px;
    max-width: 100%;
    align-self: flex-end;
  }

  .hero-text h1 {
    font-size: 44px;
    letter-spacing: -2.5px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .work-header h2 {
    font-size: 36px;
    letter-spacing: -2px;
  }

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

  .services-section {
    grid-template-columns: 1fr;
    padding: 28px 18px;
    gap: 22px;
  }

  .services-text h2 {
    font-size: 36px;
    letter-spacing: -2px;
  }

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

  .about-placeholder {
    min-height: 360px;
    height: 360px;
  }

  .about-image {
    min-height: 360px;
    border-right: none;
    border-bottom: 1px solid #222222;
  }

  .about-image img {
    min-height: 360px;
    height: 360px;
    object-position: center 20%;
  }

  .about-text {
    padding: 30px 20px;
  }

  .about-text h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .about-text p {
    font-size: 15px;
  }

  .process-section {
    padding: 28px 18px;
  }

  .process-header h2 {
    font-size: 36px;
    letter-spacing: -2px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .final-cta-section {
    padding: 38px 22px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-cta-text h2 {
    font-size: 40px;
    letter-spacing: -2px;
  }

  .cta-stat-cards {
    flex-direction: column;
    gap: 8px;
  }

  .cta-stat strong {
    font-size: 28px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    padding: 28px 18px;
  }

  .work-page-hero {
    padding: 34px 20px;
  }

  .work-page-hero h1 {
    font-size: 44px;
    letter-spacing: -3px;
  }

  .work-page-hero p {
    font-size: 16px;
  }

  .work-full-grid {
    grid-template-columns: 1fr;
  }

  .work-cta-strip {
    padding: 28px 20px;
  }

  .work-cta-strip h2 {
    font-size: 32px;
    letter-spacing: -1.5px;
  }

  .section-button,
  .whatsapp-button {
    width: 100%;
    text-align: center;
  }
}

/* ================= CONTACT PAGE ================= */
.contact-section {
  width: calc(100% - 48px);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  overflow: hidden;
  min-height: 600px;
}

.contact-info {
  padding: 60px 50px;
  border-right: 1px solid #222222;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info h1 {
  font-size: 48px;
  letter-spacing: -2.5px;
  line-height: 0.97;
  color: #ffffff;
  margin-bottom: 18px;
}

.contact-info > p {
  font-size: 16px;
  line-height: 1.65;
  color: #666666;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #1e1e1e;
}

.contact-detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #1e1e1e;
}

.contact-detail-label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #444444;
}

.contact-detail-value {
  font-size: 14px;
  font-weight: 900;
  color: #f0f0f0;
}

.contact-wa-link {
  color: #25D366;
  transition: opacity 0.15s ease;
}

.contact-wa-link:hover {
  opacity: 0.75;
}

.contact-form {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: #0e0e0e;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-row label {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #555555;
}

.form-row input,
.form-row select,
.form-row textarea {
  background-color: #161616;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 13px 16px;
  font-size: 14px;
  color: #f0f0f0;
  outline: none;
  transition: border-color 0.15s ease;
  font-family: Arial, Helvetica, sans-serif;
  width: 100%;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #444444;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #444444;
}

.form-row select {
  appearance: none;
  cursor: pointer;
  color: #f0f0f0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-row select option {
  background-color: #1a1a1a;
  color: #f0f0f0;
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.form-submit {
  background-color: #ffffff;
  color: #0c0c0c;
  border: none;
  border-radius: 4px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
  transition: opacity 0.15s ease;
  margin-top: 4px;
}

.form-submit:hover {
  opacity: 0.88;
}

.form-note {
  font-size: 12px;
  color: #444444;
  text-align: center;
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-info {
    padding: 32px 24px;
  }

  .contact-info h1 {
    font-size: 28px;
    letter-spacing: -1.5px;
  }

  .contact-info > p {
    font-size: 13px;
    margin-bottom: 24px;
  }

  .contact-form {
    padding: 32px 20px;
    gap: 10px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 10px 12px;
    font-size: 13px;
  }

  .form-row textarea {
    min-height: 70px;
  }

  .form-submit {
    padding: 13px;
    font-size: 13px;
  }
}

@media (max-width: 700px) {
  .contact-section {
    width: calc(100% - 20px);
  }

  .contact-info {
    padding: 24px 16px;
  }

  .contact-info h1 {
    font-size: 22px;
    letter-spacing: -1px;
    margin-bottom: 10px;
  }

  .contact-info > p {
    font-size: 12px;
    margin-bottom: 18px;
    display: none;
  }

  .contact-detail-item {
    padding: 11px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .contact-detail-value {
    font-size: 12px;
  }

  .contact-form {
    padding: 24px 14px;
    gap: 8px;
  }

  .form-row label {
    font-size: 10px;
  }

  .form-row input,
  .form-row select,
  .form-row textarea {
    padding: 9px 10px;
    font-size: 12px;
  }

  .form-row textarea {
    min-height: 60px;
  }

  .form-submit {
    padding: 12px;
    font-size: 13px;
  }

  .form-note {
    font-size: 10px;
  }
}

/* ================= PORTFOLIO CTA CARD ================= */
.work-card-image-cta {
  background-color: #161616;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-cta-plus {
  font-size: 64px;
  font-weight: 900;
  color: #2a2a2a;
  transition: color 0.15s ease;
  line-height: 1;
}

.work-card-cta:hover .work-cta-plus {
  color: #444444;
}

/* ================= PROJECT DETAIL CARDS (work.html) ================= */
.project-grid {
  width: calc(100% - 48px);
  margin: 0 auto 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.project-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #111111;
  border: 1px solid #222222;
  border-radius: 6px;
  overflow: hidden;
}

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

.project-images img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
  display: block;
  border-right: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.project-images img:nth-child(2),
.project-images img:nth-child(4) {
  border-right: none;
}

.project-images img:nth-child(3),
.project-images img:nth-child(4) {
  border-bottom: none;
}

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

.project-images-3 img {
  border-right: none;
  border-bottom: 1px solid #1a1a1a;
  aspect-ratio: unset;
  height: 33.333%;
}

.project-images-3 img:last-child {
  border-bottom: none;
}

.project-details {
  padding: 44px;
  border-left: 1px solid #222222;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-details h2 {
  font-size: 36px;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  color: #ffffff;
}

.project-details p {
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 22px;
}

@media (max-width: 900px) {
  .project-card {
    grid-template-columns: 1fr;
  }

  .project-details {
    border-left: none;
    border-top: 1px solid #222222;
  }

  .project-grid {
    width: calc(100% - 20px);
  }
}

@media (max-width: 700px) {
  .project-grid {
    width: calc(100% - 20px);
  }

  .project-details {
    padding: 26px 20px;
  }

  .project-details h2 {
    font-size: 28px;
  }
}
