/* =============================================
   OUR WORK PAGE — works.css
   ============================================= */

/* ---------- HERO ---------- */
.ow-hero {
  background: #f6f8f5;
  padding: 80px 0 60px;
}

.ow-hero-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.ow-hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 28px;
  letter-spacing: 1px;
}

.ow-hero-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ---------- BANNER IMAGE ---------- */
.ow-banner-img {
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.ow-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* ---------- AREA OF WORK ---------- */
.area-of-work {
  background: #f6f8f5;
  padding: 100px 0;
}

.aow-title {
  font-size: 36px;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 60px;
  text-align: center;
}

.aow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.aow-card {
  padding: 40px 60px 40px 0;
  border-bottom: 1px solid #ddd;
}

.aow-card:nth-child(even) {
  padding: 40px 0 40px 60px;
  border-left: 1px solid #ddd;
}

.aow-card:nth-child(3),
.aow-card:nth-child(4) {
  border-bottom: none;
  padding-top: 60px;
}

.aow-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 14px;
  line-height: 1.35;
}

.aow-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
}

/* ---------- PHILOSOPHY ---------- */
.ow-philosophy {
  background: #f6f8f5;
  padding: 0 0 100px;
}

.ow-philosophy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.ow-philosophy-content h2 {
  font-size: 26px;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 28px;
  line-height: 1.25;
}

.ow-philosophy-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ow-philosophy-content ul li {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.ow-philosophy-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

/* ---------- CTA BANNER ---------- */
.ow-cta-banner {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.ow-cta-overlay {
  position: relative;
  height: 100%;
}

.ow-cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.5);
}

.ow-cta-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 100px;
}

.ow-cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 28px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 991px) {
  .aow-grid {
    grid-template-columns: 1fr;
  }

  .aow-card,
  .aow-card:nth-child(even) {
    padding: 36px 0;
    border-left: none;
    border-bottom: 1px solid #ddd;
  }

  .aow-card:nth-child(3),
  .aow-card:nth-child(4) {
    border-bottom: 1px solid #ddd;
    padding-top: 36px;
  }

  .aow-card:last-child {
    border-bottom: none;
  }

  .ow-philosophy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ow-cta-content {
    padding: 0 60px;
  }
  .ow-cta-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .ow-hero-content h1 {
    font-size: 32px;
  }
  .ow-banner-img {
    height: 240px;
  }
  .aow-title {
    font-size: 26px;
    text-align: left;
  }
  .ow-cta-content {
    padding: 0 24px;
  }
  .ow-cta-content h2 {
    font-size: 22px;
  }
  .ow-cta-banner {
    height: 300px;
  }
}
