/* ================================================================
   SECTIONS — About・Servicesセクションのスタイル
   ================================================================ */

/* ---- ABOUT ---- */
.about { background: var(--color-bg); 
width: 100%;}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}
.about-image { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}
.about-body p {
  color: var(--color-muted);
  font-size: clamp(15px, 1.3vw, 17px);
  margin-bottom: 20px;
  line-height: 1.9;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid var(--color-border);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-muted);
}

/* ---- SERVICES ---- */
.services { background: var(--color-surface); }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(48px, 7vw, 96px);
  flex-wrap: wrap;
  gap: 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.service-card {
  background: var(--color-surface);
  padding: clamp(32px, 4vw, 56px);
  transition: background 0.4s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width 0.4s;
}
.service-card:hover { background: rgba(200,169,110,0.05); }
.service-card:hover::after { width: 100%; }
.service-num {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.2vw, 1.3rem);
  letter-spacing: 0.2em;
  color: var(--color-accent);
  margin-bottom: 32px;
}
.service-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.2;
}
.service-desc { font-size: 14px; color: var(--color-muted); line-height: 1.8; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}
