/* ============================================
   Services index page (サービス一覧)
   ============================================ */

/* ===== Hero ===== */
.services-hero {
  position: relative;
  height: 460px;
  background: linear-gradient(135deg, #4a4943 0%, #2a2926 100%);
  overflow: hidden;
}
.services-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.5));
}
.services-hero__inner {
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 16px;
  text-align: center;
  color: #fff;
}
.services-hero__eyebrow {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.32em;
  opacity: 0.9;
}
.services-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 56px;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin: 0;
}
.services-hero__lead {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.85;
  margin: 0;
  opacity: 0.95;
}
@media (max-width: 1023px) {
  .services-hero { height: 280px; }
  .services-hero__title { font-size: 36px; }
}

/* ===== Service rows ===== */
.services-list {
  background: #fff;
}

.service-row {
  background: #fff;
  padding: 72px 0;
}
.service-row--alt {
  background: #f9f8f5;
}

.service-row__inner {
  display: grid;
  grid-template-columns: minmax(0, 540px) minmax(0, 560px);
  gap: 64px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1023px) {
  .service-row { padding: 48px 0; }
  .service-row__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.service-row__text {
  display: flex;
  flex-direction: column;
}

.service-row__eyebrow {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: #8f8d86;
}

.service-row__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.08em;
  line-height: 1.5;
  color: #434243;
  margin: 14px 0 0;
}
@media (max-width: 1023px) {
  .service-row__title { font-size: 22px; }
}

.service-row__divider {
  display: block;
  width: 40px;
  height: 1px;
  background: #434243;
  margin: 18px 0;
}

.service-row__desc {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.04em;
  line-height: 1.85;
  color: #434243;
  margin: 0;
}

.service-row__catch {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  line-height: 1.85;
  color: #434243;
  margin: 20px 0 0;
}

.service-row__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 220px;
  padding: 16px 28px;
  margin-top: 28px;
  background: #434243;
  color: #fff;
  border-radius: 999px;
  font-family: var(--font-zen);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.16em;
  transition: background var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.service-row__btn:hover {
  opacity: 1;
  background: #2c2b2c;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 66, 67, 0.2);
}

.service-row__image {
  width: 100%;
  aspect-ratio: 3 / 2;
  background-color: #d8d3c5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
}
@media (max-width: 1023px) {
  .service-row__image { aspect-ratio: 4 / 3; }
}
