/* =============================================
   work-services-page.css — サービス固定ページ専用
============================================= */

/* --------------------------------------------------
   Services Intro
-------------------------------------------------- */
.work-services-intro {
  padding: 6rem 2rem;
  background: var(--work-white);
  border-bottom: 1px solid var(--work-border-gold);
}

.work-services-intro-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.work-services-intro-lead {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--work-font-serif);
  font-weight: 400;
  line-height: 1.5;
  color: var(--work-deep-navy);
}

.work-services-intro-lead em {
  font-style: italic;
  color: var(--work-muted-gold-text);
}

.work-services-intro-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--work-text-muted);
  line-height: 1.9;
}

/* --------------------------------------------------
   Service Detail Block
-------------------------------------------------- */
.work-service-detail {
  padding: 7rem 2rem;
  position: relative;
}

.work-service-detail-odd {
  background: var(--work-off-white);
}

.work-service-detail-even {
  background: var(--work-white);
}

.work-service-detail-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

.work-service-detail-image-wrap {
  position: relative;
}

.work-service-detail-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.work-service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.75) contrast(1.05) brightness(0.97);
  transition: filter 0.5s ease;
}

.work-service-detail-image:hover img {
  filter: sepia(0.35) contrast(1.05) brightness(0.97);
}

.work-service-detail-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  min-width: 5rem;
  height: 5rem;
  padding: 0 1.25rem;
  background: var(--work-deep-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}

.work-service-detail-badge-num {
  font-family: var(--work-font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--work-white);
  line-height: 1;
}

.work-service-detail-badge-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--work-muted-gold);
}

.work-service-detail-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.work-service-detail-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--work-muted-gold-text);
}

.work-service-detail-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--work-font-serif);
  font-weight: 400;
  line-height: 1.2;
}

.work-service-detail-heading em {
  font-style: italic;
  font-weight: 300;
}

.work-service-detail-desc {
  font-size: 1rem;
  font-weight: 300;
  color: var(--work-text-muted);
  line-height: 1.9;
}

.work-service-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--work-border-gold);
}

.work-service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 300;
  color: var(--work-text-muted);
  line-height: 1.7;
}

.work-service-detail-list li::before {
  content: '';
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--work-muted-gold);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* --------------------------------------------------
   Services CTA
-------------------------------------------------- */
.work-services-cta {
  padding: 7rem 2rem;
  background: var(--work-deep-navy);
  text-align: center;
}

.work-services-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.work-services-cta-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--work-muted-gold);
}

.work-services-cta-heading {
  font-family: var(--work-font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--work-white);
  line-height: 1.2;
}

.work-services-cta-heading em {
  font-style: italic;
  font-weight: 300;
}

.work-services-cta-desc {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.work-services-cta-btn a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 2.5rem;
  background: var(--work-muted-gold);
  color: var(--work-deep-navy);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.work-services-cta-btn a:hover {
  background: #9e8558;
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */
@media (min-width: 768px) {
  .work-services-intro-inner {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

@media (min-width: 1024px) {
  .work-services-intro {
    padding: 8rem 4rem;
  }

  .work-service-detail {
    padding: 9rem 4rem;
  }

  .work-service-detail-inner {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .work-service-detail-even .work-service-detail-image-wrap {
    order: 2;
  }

  .work-service-detail-even .work-service-detail-content {
    order: 1;
  }

  .work-services-cta {
    padding: 9rem 4rem;
  }
}
