/* ═══════════════════════════════════════════════════
   GIY Architecture Inc. — Service Sub-Page Template
   Shared by all 6 service sub-pages
   ═══════════════════════════════════════════════════ */

/* ─── SERVICE HERO ─── */
.service-hero {
  padding: 160px var(--px) 0;
}

.service-hero-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.service-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  line-height: 1.1;
}

.service-hero-blurb {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 460px;
  padding-top: 12px;
}

/* Image strip (4 photos in a row) */
.service-image-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.service-image-strip img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
  border-radius: 2px;
}

/* Single large hero image variant */
.service-image-single {
  margin-top: 0;
}

.service-image-single img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
  border-radius: 2px;
}

/* CCA badge (Project Management page only) */
.service-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  margin-bottom: 16px;
}

.service-hero-badge .badge-abbr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--accent);
}

.service-hero-badge .badge-name {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  line-height: 1.3;
}

/* ─── INTRO PARAGRAPH ─── */
.service-intro {
  padding: 80px var(--px);
}

.service-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 900px;
}

/* ─── WHAT WE OFFER (numbered list) ─── */
.service-offer {
  padding: 80px var(--px) 120px;
  background: var(--bg-alt);
}

.service-offer .section-label {
  margin-bottom: 8px;
}

.service-offer .section-heading {
  margin-bottom: 40px;
}

.offer-list {
  display: flex;
  flex-direction: column;
}

.offer-item {
  display: flex;
  gap: 40px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.offer-item:first-child {
  border-top: 1px solid var(--border);
}

.offer-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--accent);
  min-width: 80px;
  flex-shrink: 0;
}

.offer-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
}

.offer-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 600px;
}

/* ─── WHY CHOOSE GIY (2×2 grid) ─── */
.service-why {
  padding: 120px var(--px);
}

.service-why .section-heading {
  margin-bottom: 16px;
}

.service-why-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 700px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 60px;
}

.why-card {
  padding: 32px;
  background: var(--card-bg);
  border-radius: 2px;
}

.why-card-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--accent);
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
}
