/* ===== SERVICES PAGE ===== */
/* design15 (Work Sans) ベース — services.html 専用スタイル */

/* Current nav link */
nav a.nav-current { color: var(--blue); }

/* ----------------------------------------
   Page Hero
---------------------------------------- */
.page-hero {
  background: var(--charcoal);
  padding: 64px 0 56px;
  border-bottom: 3px solid var(--blue);
}
.page-hero-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.25em;
  color: var(--blue); margin-bottom: 12px;
}
.page-hero-title {
  font-size: 2.4rem; font-weight: 300; color: #ffffff;
  margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.3;
}
.page-hero-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.55); letter-spacing: 0.06em;
}

/* ----------------------------------------
   Service Sections
---------------------------------------- */
.service-section { padding: 88px 0; background: var(--bg); }
.service-section.alt { background: var(--bg2); }

.service-section-meta {
  display: flex; align-items: flex-start; gap: 24px;
  margin-bottom: 48px; padding-bottom: 24px; border-bottom: 1px solid var(--border);
}
.service-section-num {
  font-size: 4rem; font-weight: 200; color: var(--blue);
  opacity: 0.18; line-height: 1; letter-spacing: -0.04em; flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.service-section-title {
  font-size: 1.5rem; font-weight: 500; color: var(--charcoal);
  margin-bottom: 10px; line-height: 1.4;
}
.service-section-lead {
  font-size: 0.9rem; color: var(--text-muted); font-weight: 300; line-height: 1.75;
}

/* ----------------------------------------
   Service Item Cards
---------------------------------------- */
.service-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-items.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-item {
  padding: 28px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
}
.service-section.alt .service-item { background: var(--bg); }

.service-item h3 {
  font-size: 0.9rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 10px; line-height: 1.5;
}
.service-item p {
  font-size: 0.85rem; color: var(--text-muted); font-weight: 300; line-height: 1.8;
}

/* ----------------------------------------
   CTA
---------------------------------------- */
.services-cta {
  padding: 80px 0; background: var(--bg2);
  text-align: center; border-top: 1px solid var(--border);
}
.cta-text {
  font-size: 1rem; color: var(--text-muted); font-weight: 300; margin-bottom: 28px;
}
.btn-cta {
  display: inline-block; padding: 14px 48px;
  background: var(--charcoal); color: #fff; text-decoration: none;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--blue); }

/* ----------------------------------------
   Responsive
---------------------------------------- */
@media (max-width: 768px) {
  .page-hero { padding: 48px 0 40px; }
  .page-hero-title { font-size: 1.8rem; }
  .service-section { padding: 60px 0; }
  .service-items,
  .service-items.cols-2 { grid-template-columns: 1fr; }
  .service-section-meta { gap: 16px; }
  .service-section-num { font-size: 3rem; }
  .service-section-title { font-size: 1.25rem; }
}
@media (max-width: 480px) {
  .page-hero-title { font-size: 1.5rem; }
  .service-section { padding: 48px 0; }
  .service-item { padding: 20px 18px; }
  .btn-cta { display: block; text-align: center; }
}
