/* ===========================
   SERVICE PAGE
=========================== */

/* ページヒーロー */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(160deg, #0f0f0f 0%, #1a1a1a 60%, #0a0a0a 100%);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero__label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.page-hero__title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 24px;
}

.page-hero__desc {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* ナビ: 現在ページのハイライト */
.header__nav-list a.is-current {
  color: var(--color-primary);
}

/* ===========================
   SERVICE SECTIONS
=========================== */
.service-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--color-border);
}

.service-section:nth-child(odd) {
  background-color: var(--color-bg);
}

.service-section:nth-child(even) {
  background-color: var(--color-bg-2);
}

.service-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* 偶数セクションは画像を左に */
.service-section--reverse .service-section__inner {
  direction: rtl;
}
.service-section--reverse .service-section__inner > * {
  direction: ltr;
}

/* コンテンツ */
.service-section__num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.service-section__title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.service-section__text {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
}

.service-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}

/* 画像 */
.service-section__image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background-color: var(--color-bg-3);
  border: 1px solid var(--color-border);
  position: relative;
}

.service-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-section:hover .service-section__image img {
  transform: scale(1.03);
}

/* 画像なしフォールバック */
.service-section__image.no-image::after {
  content: 'PHOTO';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .page-hero {
    padding: 120px 0 60px;
  }

  .service-section {
    padding: 72px 0;
  }

  .service-section__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* SP では逆順レイアウトを解除し、画像を常にテキストの後に */
  .service-section--reverse .service-section__inner {
    direction: ltr;
  }

  .service-section__image {
    aspect-ratio: 16/9;
    order: 1;
  }

  .service-section__content {
    order: 0;
  }
}
