/* ═══════════════════════════════════════════════════
   GIY Architecture Inc. — Services Overview Page
   ═══════════════════════════════════════════════════ */

/* ─── HERO (full-width background) ─── */
.services-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 160px var(--px) 80px;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.services-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.1);
}

.services-hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, var(--bg) 10%, transparent 60%);
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.services-hero h1 {
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 1px 1px #000000;
}

.services-hero-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 600px;
}

/* ─── SERVICES GRID ─── */
.services-grid-section {
  padding: 120px var(--px);
}

.services-grid-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 48px;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.services-cards-row2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-link-card {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  display: block;
  text-decoration: none;
}

.service-link-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.7);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s;
}

.service-link-card:hover img {
  transform: scale(1.04);
  filter: saturate(0.9) brightness(0.6);
}

.services-cards-row2 .service-link-card img {
  aspect-ratio: 3/4;
}

.service-link-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.service-link-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.service-link-card-content p {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* ─── TESTIMONIAL ─── */
.testimonial-section {
  padding: 120px var(--px);
  text-align: center;
  background: var(--bg-alt);
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto 24px;
  color: var(--text);
}

.testimonial-attr {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}
